  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
   
  }
  :root {
            --primary-color: #121a70;
            --secondary-color: #e9b432;
            --text-color: #1f2937;
            --blue-color: #007bff;
            --bg-color: #fcfcfc;
            --navbar-height: 80px;
            --font-size-h2: 36px;
            --font-size-p: 18px;
            --button-padding: 12px 24px;
            --icon-size: 24px;
            --dropdown-width: 200px;
            --service-box-size: 300px;
            --section-max-width: 1200px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            background-color: var(--bg-color);
            overflow-x: hidden;
            position: relative;
            margin: 0;
        }

        /* Animated Background */
        .background-shapes::before,
        .background-shapes::after,
        .background-shapes .shape-extra {
            content: '';
            position: absolute;
            border-radius: 50%;
            z-index: -1;
            animation: float 12s infinite ease-in-out;
        }

        .background-shapes::before {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
            background: linear-gradient(45deg, rgba(40, 58, 255, 0.4), rgba(233, 180, 50, 0.2));
        }

        .background-shapes::after {
            width: 400px;
            height: 400px;
            top: 60%;
            right: 10%;
            background: linear-gradient(45deg, rgba(255, 194, 39, 0.4), rgba(54, 59, 117, 0.3));
            animation-delay: -6s;
        }

        .background-shapes .shape-extra {
            width: 200px;
            height: 200px;
            top: 30%;
            left: 70%;
            background: linear-gradient(45deg, rgba(69, 117, 54, 0.2), rgba(233, 180, 50, 0.3));
            animation-delay: -3s;
        }

        @keyframes float {
            0% { transform: translate(0, 0); opacity: 0.3; }
            50% { transform: translate(60px, 60px); opacity: 0.5; }
            100% { transform: translate(0, 0); opacity: 0.3; }
        }

       
      /* Hero Section */
.hero-section {
    position: relative;
    padding: 15px;
    max-width: var(--section-max-width);
    margin: 0 auto;
    margin-top: 50px;
    overflow: hidden;
}

/* Animated Background Shapes */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.shape-circle {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    border-radius: 50%;
    top: 10%;
    left: 20%;
}

.shape-square {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--secondary-color), transparent);
    transform: rotate(45deg);
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 80px solid var(--accent-color);
    top: 70%;
    left: 60%;
    animation-delay: 4s;
}

.shape-small-triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--primary-color);
    top: 30%;
    left: 10%;
    animation-delay: 1s;
}

.shape-small-square {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), transparent);
    transform: rotate(30deg);
    top: 20%;
    right: 25%;
    animation-delay: 3s;
}

.shape-rectangle {
    width: 120px;
    height: 60px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    top: 60%;
    left: 30%;
    animation-delay: 5s;
}

.shape-shooting-star {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    box-shadow: 0 0 10px var(--accent-color);
    top: 15%;
    left: 70%;
    animation: shooting-star 3s infinite linear;
}

.shape-shooting-star.star-2 {
    top: 45%;
    left: 80%;
    animation-delay: 1.5s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

@keyframes shooting-star {
    0% { transform: translateX(0); opacity: 0.2; }
    50% { opacity: 0.4; }
    100% { transform: translateX(-200px); opacity: 0; }
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Hero Content */
.hero-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: var(--font-size-h2);
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    animation: fadeInUp 0.5s ease-out;
    letter-spacing: 2px;
}

.hero-content h2 span {
    color: var(--secondary-color);
}

.hero-content p {
    font-size: var(--font-size-p);
    margin: 1rem 0;
    color: #4b5563;
}

.hero-buttons .btn {
    padding: var(--button-padding);
    font-size: 1rem;
    border-radius: 8px;
    margin-right: 1rem;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
}

.hero-buttons .btn-secondary {
    background-color: var(--secondary-color);
}

.hero-buttons .btn-primary a,
.hero-buttons .btn-secondary a {
    color: white;
    text-decoration: none;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.6);
}

.hero-image {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Service Container */
.service-container {
    background: linear-gradient(145deg, #ffffff, #e5e7eb);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.7);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, var(--service-box-size));
    gap: 2rem;
}

.service-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), -5px -5px 15px rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-box p {
    font-size: 0.875rem;
    color: #6b7280;
}

.explore-more {
    text-align: center;
    margin-top: 2rem;
}

.explore-more a {
    font-size: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: var(--button-padding);
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.explore-more a:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content,
    .service-container {
        width: 100%;
    }

    .hero-buttons .btn {
        margin: 0.5rem 0;
        display: inline-block;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-width: 80%;
        margin: 1rem auto;
    }

    .shape-circle {
        width: 60px;
        height: 60px;
        top: 5%;
        left: 10%;
    }

    .shape-square {
        width: 50px;
        height: 50px;
        top: 60%;
        right: 10%;
    }

    .shape-triangle {
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 50px solid var(--accent-color);
        top: 80%;
        left: 50%;
    }

    .shape-small-triangle {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 30px solid var(--primary-color);
        top: 25%;
        left: 15%;
    }

    .shape-small-square {
        width: 30px;
        height: 30px;
        top: 15%;
        right: 20%;
    }

    .shape-rectangle {
        width: 80px;
        height: 40px;
        top: 55%;
        left: 25%;
    }

    .shape-shooting-star {
        width: 60px;
        height: 3px;
        top: 10%;
        left: 65%;
    }

    .shape-shooting-star.star-2 {
        top: 40%;
        left: 75%;
    }
}
        
     .brand-section {
        padding: 32px 16px;
        text-align: center;
        margin-top: 64px;
    }

    .brand-section .container {
        max-width: var(--brand-section-max-width);
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 32px;
    }

    .brand-section h3 {
        font-size: 24px;
        color: #48494d;
        padding-bottom: 6px;
        border-bottom: 1px solid var(--primary-color);
        width: fit-content;
        text-align: center;
        margin: 0px auto;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .brand-logo {
        max-width: 120px;
        height: auto;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
    }

    .brand-logo:hover {
        filter: grayscale(0%);
    }

    @media (max-width: 768px) {
        .brand-section .container {
            flex-direction: column;
            gap: 16px;
        }

        .brand-logo {
            max-width: 100px;
        }
    }





.zoho-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #5c51f0, #030e72);
  padding: 40px;
  color: #333;
  min-height: 300px;
  position: relative;
  max-width: 1200px;
  margin: 70px auto;
}

.zoho-section .content{
    width: 1200px;
    max-width: 98%;
    display: flex;
    flex-wrap: wrap;
    margin: 0px auto;
    align-items: center;
    justify-content: center;
}

.content-left, .content-right {
  flex: 0 0 500px;
  padding: 20px;
}

.logo-heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-zoho {
  width: 120px;
  margin-right: 15px;
}

.zoho-section .content .content-left h2 {
  font-size: 38px;
  font-weight: bold;
  margin: 0 0 5px;
  color: #fff;

}



.zoho-section p {
  font-size: 1.1em;
  line-height: 1.5;
  margin: 0 0 10px;
  color: #e2e2e2;
}

.try-button {
   padding: var(--button-padding);
            font-size: 16px;
            border-radius: 8px;
            margin-right: 16px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.5);
            background-color: #fff;
}

.try-button a{
    color: #000;
}

.try-button:hover {
 transform: translateY(-3px);
            box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.6);
}

.divider {
  width: 1px;
  height: 80%;
  background-color: #000;
  margin: 0 20px;
}

.quote-icon {
  width: 30px;
  height: 30px;
  background-color: #000;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote-icon i {
  color: #fff;
  font-size: 1.2em;
}

blockquote {
  font-style: italic;
  margin: 0 0 20px;
}

.testimonial {
  display: flex;
  align-items: center;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #ccc;
}

.testimonial-info p {
  margin: 0;
  color: #e2e2e2;
}

.testimonial-info p:first-child {
  font-weight: bold;
}

.corner-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  object-fit: cover;
  clip-path: inset(0 0 0 50%);
}

@media (max-width: 1200px) {
  /* .zoho-section {
    flex-direction: column;
    max-width: 100%;
    padding: 20px;
  } */

  .content-left, .content-right {
    flex: 0 0 100%;
    padding: 10px;
  }

  .divider {
    display: none;
  }

  .logo-heading {
    justify-content: center;
  }

  .try-button {
    width: 100%;
    margin-top: 10px;
  }

  .testimonial {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-img {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .corner-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    object-fit: cover;
    clip-path: inset(50% 0 0 0);
  }
}



.about-us-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.content-left, .content-right {
  flex: 1;
  padding: 20px;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-us-section h2{
  font-size: 2.5em;
  color: #333;
  margin-bottom: 15px;
}

.about-us-section p {
  font-size: 1.1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.learn-more-button {
  padding: var(--button-padding);
  background-color: var(--primary-color);
  color: #fff;
            font-size: 16px;
            border-radius: 8px;
            margin-right: 16px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.5);
}

.learn-more-button a{
    color: #fff;
}

.learn-more-button:hover {
    transform: translateY(-3px);
            box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.6);
}


@media (max-width: 768px) {
  .about-us-section {
    flex-direction: column;
    padding: 20px;
  }

  .content-right {
    order: 1;
    text-align: center;
  }

  .content-left {
    order: 2;
  }

  .about-image {
    width: 100%;
    margin-top: 20px;
  }
}



  .hm-yt-container {
    max-width: 800px;
    padding:20px;
    margin: 70px auto;
    font-family: Arial, sans-serif;
  }

.hm-yt-container h2{
    text-align: center;
    font-size: 36px;
    /* font-weight: bold; */
}.hm-yt-container p{
    text-align: center;
    
}

  .hm-yt-container img {
    width: 140px;
    height: auto;
    display: block;
    margin: 10px auto;
  }
  .hm-yt-youtube-box {
    max-width: 100%;
    margin-top: 20px;
    background: rgba(173, 216, 230, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }










 .hm-an-container {
    max-width: 100%;
      background: linear-gradient(to right, #5c51f0, #030e72);
    margin: 80px auto;
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 500px;
    font-family: Arial, sans-serif;
    color: white;
    overflow: hidden;
  }
  .hm-an-data-section {
    flex: 1;
    min-width: 300px;
    padding: 20px 50px;
    /* text-align: center; */
        display: flex;
    flex-direction: column;
    align-items: center;
  }

   .hm-an-data-section h2{
    color: #ffff;
    text-align: start;
    font-size: 42px;
    font-weight: bold;
    line-height: 40px;
   }
  .hm-an-image-section {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  .hm-an-stats {
    display: flex;
    /* justify-content: center; */
    gap: 40px;
    margin-top: 20px;
  }
  .hm-an-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .hm-an-stat {
    font-size: 1em;
    text-align: center;
  }
  .hm-an-stat-number {
    font-size: 1.5em;
    font-weight: bold;
  }
  .hm-an-stat-text {
    display: block;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
  }
  .hm-an-cta-button {
   padding: var(--button-padding);
            font-size: 16px;
            border-radius: 8px;
            margin-right: 16px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.5);
            background-color: #fff;
            color: #000;
    margin-top: 50px;
  }
  .hm-an-cta-button:hover{
        transform: translateY(-3px);
            box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.6);
  }




  @media (max-width: 768px) {
    .hm-an-container {
      flex-direction: column;
      height: auto;
    }
    .hm-an-data-section, .hm-an-image-section {
      width: 90%;
    }
    .hm-an-image-section img {
      height: 250px;
    }
  }






 .hm-bel-values-section {
            padding: 20px;
            margin: 70px auto;
        }

        .hm-bel-values-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 30px;
        }

        .hm-bel-value-box {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            padding: 20px;
            box-sizing: border-box;
        }

        .hm-bel-value-icon {
            font-size: 35px;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .hm-bel-value-title {
            font-size: var(--font-size-h2);
            color: var(--text-color);
            margin-bottom: 10px;
            font-weight: bold;
        }

        .hm-bel-value-text {
            font-size: var(--font-size-p);
            color: var(--text-color);
            line-height: 1.5;
        }

        .hm-bel-heading {
            font-size: var(--font-size-h2);
            color: var(--text-color);
            max-width: 400px;
            padding: 10px;
            margin: 0px auto;
            text-align: center;
        }

        .hm-bel-button {
        padding: var(--button-padding);
            font-size: 16px;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.5);
            background-color: var(--primary-color);
            color: #fff;
            display: block;
            text-align: center;
            width: fit-content;
            margin: 0px auto;
        }

        .hm-bel-button:hover {
             transform: translateY(-3px);
            box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 768px) {
            .hm-bel-values-container {
                flex-direction: column;
                align-items: center;
            }

            .hm-bel-value-box {
                max-width: 100%;
            }
        }