 
        :root {
            --gorilla-yellow: #F6D854;
            --gorilla-black: #000000;
        }

        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
            overflow-x: hidden;
            font-size: 1rem;
        }
        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }

        html {
        scroll-behavior: smooth;
        scroll-padding-top: 5rem;
        }


.fw-bolder{
    font-weight: 800 !important;
    color:var(--gorilla-yellow)
}
h1{
        font-family: "Jockey One", sans-serif;
}

/* -------------------ANIMATIONS --------------- */
main {
    padding-top: 25px;
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes float-left {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonHover {
  0% {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  100% {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(246, 216, 84, 0.3);
  }
}

@keyframes buttonClick {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes featureGlow {
  0%, 100% {
    border-left-color: var(--gorilla-yellow);
  }
  50% {
    border-left-color: rgba(246, 216, 84, 0.5);
  }
}
 
        .fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
        }

        .fade-out-down {
            animation: fadeOutDown 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeOutDown {
            from {
                opacity: 1;
                transform: translateY(0);
            }
            to {
                opacity: 0;
                transform: translateY(-20px);
            }
        }

    /* ------------- Navigation ----------- */
        .navbar {
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
        }

        .nav-link {
            color: white !important;
            font-size: 1.15rem !important;
            font-weight: 500 !important;
            margin: 0 1rem;
            transition: color 0.3s;
            font-family:"Instrument Sans", sans-serif;
        }

        .nav-link:hover {
            color: var(--gorilla-yellow) !important;
        }
         .header-logo {
    width: 100%;
    height: 70px;
}
          
        .btn-cta {
            background-color: var(--gorilla-yellow);
            color: black;
            border-radius: 50px;
            font-weight: 700;
             font-size: 1.15rem !important;
            padding: 0.5rem 1.5rem;
            border: none;
            font-family:"Instrument Sans", sans-serif;
            transition: all 0.3s ease;
            cursor: pointer;text-decoration: none;
        }
        .btn-cta-white{
background-color: #fff;
            color: black;
            border-radius: 50px;
            font-weight: 700;
             font-size: 1.15rem !important;
            padding: 0.5rem 1.5rem;
            border: none;
            font-family:"Instrument Sans", sans-serif;
            transition: all 0.3s ease;
            cursor: pointer;text-decoration: none;
            margin:10px;
        }
   
        
        .btn-cta:hover {
            animation: buttonHover 0.3s ease forwards;
        }

        .btn-cta:active {
            animation: buttonClick 0.2s ease forwards;
        }
.navbar-toggler{background-color: #fff !important;}
.navbar-nav .nav-link.active {
  color: #ffcc00 !important;
  font-weight: 600;
}


/* dropdown animation */
.dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
    visibility: hidden;
}


/* show on hover */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    background-color: var(--gorilla-black);
    color:#fff;
    backdrop-filter: blur(10px);
    visibility: visible;
}
.nav-item.dropdown:hover .dropdown-menu a
{
    color:#fff !important;
}
.nav-item.dropdown:hover .dropdown-menu li a:hover{
    background-color: #fff;
    color:var(--gorilla-yellow) !important;
}

.dropdown-menu[data-bs-popper]{
    margin-top:1.5rem !important;
} 

   @media screen and (max-width:767px){
        .dropdown-menu[data-bs-popper]{
        margin-top:0rem !important;
            } 
   }

        /* --------------- Hero Section --------------*/
        h2{
            font-family: "Jockey One", sans-serif;
            font-size:3.2rem !important;
        }
        h4,h3{
            font-family: 'Inter', sans-serif;
        }
      h3{color:var(--gorilla-yellow) !important;}
      
        /* Main Content Layout */
      .hero-section-home {
            padding-top: 115px;
            padding-bottom: 80px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            position: relative;
        }

        /* Hero Left Side */
        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .brand-tag {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .circles {
            display: flex;
        }

        .circle {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid white;
        }

        .circle-lime { background: var(--gorilla-yellow); }
        .circle-dark { background: var(--gorilla-black); margin-left: -6px; }

        .tag-text {
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            color: var(--gorilla-black);
            line-height: 1.1;
        }

        .hero-description {
            font-size: 1.125rem;
            max-width: 500px;
            line-height: 1.6;
        }

        .hero-btns {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 32px;
        }

       

        .secondary-link {
            font-weight: 700;
            color: var(--gorilla-black);
            text-decoration: none;
            position: relative;
        }

        .secondary-link::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gorilla-yellow);
            transition: var(--transition);
        }

        /* Hero Right Side: Image Grid */
        .hero-visual {
            position: relative;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 16px;
            align-items: end;
        }

        .img-container {
            background-color: #e5e7eb;
            overflow: hidden;
            position: relative;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: var(--transition);
        }

        .img-container:hover .hero-img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .img-container-top {
            grid-column: span 5;
            aspect-ratio: 4/5;
            border-radius: 40px 40px 40px 0;
        }

        .img-container-side {
            grid-column: span 7;
            aspect-ratio: 16/9;
            border-radius: 0 80px 80px 0;
            margin-bottom: 16px;
        }

        .grid-sub-row {
            grid-column: span 7;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .img-container-bottom {
            aspect-ratio: 1/1;
            border-radius: 40px 0 40px 40px;
        }

        .img-container-rounded {
            aspect-ratio: 1/1;
            border-radius: 40px;
        }

        /* Floating Badge */
        .badge-hire {
            position: absolute;
            left: -40px;
            bottom: 60px;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rotating-badge {
            width: 100%;
            height: 100%;
            animation: rotate 12s linear infinite;
        }

        .badge-center {
            position: absolute;
            width: 48px;
            height: 48px;
            background: var(--gorilla-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        /* Animations */
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .floating-star {
            position: absolute;
            color: var(--gorilla-yellow);
            animation: float 4s ease-in-out infinite;
        }

        /* Media Queries */
        @media (max-width: 1024px) {
           .hero-section-home {
                grid-template-columns: 1fr;
                padding-top: 120px;
                text-align: center;
            }

            .hero-content {
                align-items: center;
            }

            .hero-description {
                margin: 0 auto;
            }

          

            .badge-hire {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-btns {
                flex-direction: column;
                gap: 20px;
            }
        }

        .btn-book {
            background-color: var(--gorilla-yellow);
            color: black;
            padding: 0.5rem 2rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 1.125rem;
            border: none;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            /* transition: all 0.3s ease;
            animation: fadeInScale 1.4s ease-out 0.4s both; */
            cursor: pointer;
        }

        .btn-book:hover {
            animation: buttonHover 0.3s ease forwards;
        }

        .btn-book:active {
            animation: buttonClick 0.2s ease forwards;
        }
        @media screen and (max-width: 767px) {
            .hero-title {
                        font-size: 3rem !important;
                        }
            .footer-main{
                text-align: center;}
              
            .logo-icon{
                display: block;
                margin:auto;
                 }
            .footer-main .justify-content-flex{
                align-items: center;
                justify-content: center;
            }
           .footer-list{
            display: flex;
            flex-direction: column;
            align-items: center;
           } 
           
        }
        /* Features Section */
        .features-section {
            background-color: var(--gorilla-black);
            color: white;
            padding: 50px 0;
        }

        .features-section h2 {
            animation: fadeInDown 0.8s ease-out;
        }

        .feature-item {
            position: relative;
            padding-left: 3rem;
            margin-bottom: 4rem;            
            padding-left: 1.5rem;
         
            opacity: 0;
            transform: translateX(-50px);
        }

        .feature-item.animate-in {
            animation: slideInLeft 0.8s ease-out forwards;
        }


        .feature-header {
        display: flex;
        align-items: start;
        gap: 15px;
        }

        .feature-number {
        color: #F4D749;
        font-weight: 600;
        }

        .divider {
            width: 24%;
        height: 2px;
        background: #fff;    margin-top: 14px;
        }
     

        .feature-title {
            color: var(--gorilla-yellow);
            font-weight: 700;
            margin-bottom: 1rem;
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

        .feature-text {          
            line-height: 1.6;
            animation: slideInUp 0.8s ease-out 0.4s both;
        }

  
        /* Experience Stats */
        .experience-section {
            padding: 50px 0;
        }

        .stats-visual-container {
            position: relative;
            width: 340px;
            height: 340px;
            margin: 0 auto;
        }

        .circle-yellow-bg {
            position: absolute;
            width: 300px;
            height: 300px;
            background: var(--gorilla-yellow);
            border-radius: 50%;
            top: 50%;
            left: 30%;
            z-index: 1;
            animation: float 3s ease-in-out infinite;
        }
        .dot-yellow-big{
              width: 45px;
              height: 45px;
              border-radius: 50%; 
              background: var(--gorilla-yellow);
               animation: float 3s ease-in-out infinite;
        }
         .dot-yellow-small{
            width: 25px; 
            height: 25px;
            border-radius: 50%; 
            background: var(--gorilla-yellow); 
            opacity: 0.5;
             animation: float-left 3s ease-in-out infinite;

        }
         .dot-black{
            width: 25px; 
            height: 25px;
             border-radius: 50%; 
             background: #000;
              margin-left: 20px;
               animation: float 3s ease-in-out infinite;
        }

        .circle-black-main {
            position: absolute;
            width: 300px;
            height: 300px;
            background: var(--gorilla-black);
            border-radius: 50%;
            bottom: 0;
            right: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
            @media screen  and (min-width:768px) {
                .dots-decor {
                        position: absolute;
                        right:-70px;
                        top: 40px;
                        z-index: 3;
                    }
            }
         @media screen  and (max-width:767px) {
                .dots-decor {
                        position: absolute;
                        right:0px;
                        top: 40px;
                        z-index: 3;
                    }
            }

          h3.heading-font{
            font-size: 3rem; 
            font-weight: bold;}

            .experience-section-right-content p{
                 font-family: "Istok Web", sans-serif;
                 font-size: 1.35rem;
            }
            .vstack  p{
                color:var(--gorilla-yellow)
            }
            .circle-black-main .heading-font
            {
          font-family: "Joan", serif; 
          font-size: 5rem;
            }
             .small-text{
                 font-size: 1rem;
                  font-weight: bold; 
                font-family: "Istok Web", sans-serif;}

                .small-text{
                 font-size: 0.8rem;
                }

                    /* Services Section */
        .services-section {
            background-color: var(--gorilla-black);
            padding: 50px 0;
        }

        .service-card {
            padding: 2rem;
            border-radius: 12px;
            height: 100%;
            transition: transform 0.3s;
            cursor: pointer;
            display: flex;
            gap: 1.5rem;
            transition:0.5s;
            /* background: linear-gradient(to right, #F4D749 0%, #F4D749 50%, white 50%, white 100%);
  background-size: 200% 100%;
  background-position: right;
  transition: background-position 0.9s ease; */
        }
         .service-card p{
               font-size: 0.9rem; 
               
         }
               
        .service-card:hover {
            transform: translateY(-5px);
            background-color: var(--gorilla-yellow) !important;
            transition:0.9s;
            /* background-position: left; */
        }
       
            .service-card.yellow {
            background-color: var(--gorilla-yellow);
            color: black;
        }

        .service-card.white {
            background-color: white;
            color: black;
        }

        .service-icon-box {
            
            padding: 0 12px;
            border-radius: 4px;
            height: fit-content;
        }
        .service-icon-box i {
            margin-bottom: 24px;
            color:var(--gorilla-yellow);
            position: absolute;
            z-index: 1;
            opacity: 1;
            font-size: 2rem;
            top: 13%;
            left: 6%;
            transition: all 0.2s ease;
        }
        .service-card:hover  .service-icon-box i{
            color: #000000 !important;
            opacity: 0.1;
            font-size: 5rem;
            top: 25%;
            left: 40%;
        }
        /* Associations */
        .associations-section {
            padding: 33px 0;
            background-color: var(--gorilla-yellow);
        }
          .associations-logo-img
            {
                padding: 12px;
                margin: 15px;
                background: white;
                border: 1px solid white;
                border-radius: 20px;
            }     
                

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            
        }

        @media (min-width: 768px) {
            .logo-grid {
              grid-template-columns: repeat(4, 1fr);
            }
        }

      
        /* Footer */
        .footer-main {
            background: black;
            color: white;
            padding: 45px 0 40px;
            border-top: 2px solid #f6d854;
        }

        .footer-social-icon {
            width: 36px;
            height: 36px;
            background: var(--gorilla-yellow);
            color: black;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            text-decoration: none;
        }
            .footer-social-icon:hover i{
            transform: rotate(360deg);
            transition: 0.5s;
            }
            
            .footer-social-icon i{
            transition: 0.5s;
            }
            .footer-link-heading {
                        color: var(--gorilla-yellow);
                        font-weight: 700;
                        margin-bottom: 25px;
                    }

        .footer-list {
            list-style: none;
            padding: 0;
        }

        .footer-list li {
            margin-bottom: 12px;
            color: #aaa;
            display: flex;
            align-items: center;
        }

        .footer-list i {
            margin-right: 10px;
            width: 16px;
        }

        .copyright-bar {
            background: white;
            padding: 15px 0;
            font-size: 1rem;
            color: #f6d854;
            font-weight: 500;
        }

        .foots{
             font-size: 2.6rem !important;
             margin-bottom: 27px !important;
        }


        /* Testimonial  */
        .text-yellow{
            color: var(--gorilla-yellow) !important;
        }
        .testimonial-section {
            background-color: #f8f9fa;
            background: url(./images/bg1.png) no-repeat;
            background-size: cover;
            background-blend-mode: color-burn;
        }
        

        .testimonial-slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 60px;
            min-height: 350px;
            overflow: hidden;
        }

        .testimonial-slider {
            display: flex;
            transition: transform 0.6s ease;
            width: 100%;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }

        .testimonial-slide {
            flex: 0 0 calc(33.333% - 14px);
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0.5;
            transform: scale(0.85);
            transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
            padding: 0 10px;
            filter: blur(1.5px);
        }

        .testimonial-slide.visible {
            display: flex;
        }

        .testimonial-slide.active {
            opacity: 1;
            transform: scale(1);
            filter: blur(0);
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 100%;
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .testimonial-slide.active .testimonial-card {
            background: white;
            color: black;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
         
        }
  .testimonial-slide .testimonial-card{
    text-align: center;
  }
        .testimonial-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .testimonial-slide.active .testimonial-card:hover {
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        }

        .testimonial-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--gorilla-yellow);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            color: black;
            font-size: 18px;
            z-index: 10;
        }

        .testimonial-nav-btn:hover {
            background-color: var(--gorilla-black);
            color: var(--gorilla-yellow);
            transform: translateY(-50%) scale(1.1);
        }

        .testimonial-nav-btn.prev {
            left:  4px;
        }

        .testimonial-nav-btn.next {
            right: 4px;
        }

        .testimonial-dots {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s;
        }

        .testimonial-dots.active {
            background: var(--gorilla-yellow);
            transform: scale(1.3);
        }

        .testimonial-card h6{
                font-size: 1.5rem;
        }

        @media (max-width: 768px) {
            .testimonial-slider-container {
                padding: 0 40px;
                min-height: 300px;
            }

            .testimonial-slide {
                flex: 0 0 calc(100% - 0px);
                transform: scale(1);
                opacity: 1;
                filter: blur(0);
            }

            .testimonial-slide.active {
                transform: scale(1);
            }

            .testimonial-card {
                min-height: 220px;
            }

            .testimonial-nav-btn {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            .hero-title{font-size:4.5rem;}
        }

        .border-bottom-white {
    border-bottom: 0.2px solid #9e9e9e7d;
}



#scrollTopBtn {
     position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;    
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 999;
        background: white;
    padding: 0px;
    border-radius: 50%;

}

#scrollTopBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(77, 75, 75, 0.35);
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scrollLogo 20s linear infinite;
}

.logo-track img {
  height: 60px;
  flex-shrink: 0;
}

/* Animation */
@keyframes scrollLogo {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.gap-12{
    gap: 12% !important;
}



        .section-about-padding {
            padding: 50px 0;}

        /* Hero Styling */
        .hero-section-about {
            position: relative;
            padding: 140px 0 100px;
            background: #ffffff;
            overflow: hidden;
        }
       .hero-section-about p{
    font-family: "Inter", sans-serif;
    font-size:1rem;
           animation: slideInUp 0.8s ease-out 0.2s both;
        }
          .hero-section-about h1{
 animation: slideInUp 0.8s ease-out forwards;
          }

        .hero-about-image-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }

        .hero-about-image-container img {
            transition: transform 0.5s ease;
            width:100%;
             height: auto;
        }

        .hero-about-image-container:hover img {
            transform: scale(1.05);
        }

        .badge-custom {
            background: linear-gradient(90deg, rgba(246, 216, 84, 1) 0%, rgb(240 227 209) 50%, rgba(237, 221, 83, 1) 100%);
            color:#000;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: inline-block;
            margin-bottom: 2rem;
            border: 1px solid #FFEB3B;
        }

       
.card-feature{
  position: relative;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}

/* Hover lift effect */
.card-feature:hover{
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.15);
}

/* Shine overlay */
.card-feature::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(241,208,69,0.25),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 1s;
}

.card-feature:hover::before{
  transform: translateX(100%);
}
.card-feature h5{
    font-size: 1.12rem;
}
.card-feature:hover h5{
    color: var(--gorilla-yellow);
    font-size: 1.12rem;
}
.card-feature::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:4px;
  background:#F6D854;
  transition:width .4s ease;
}

/* Hover par left → right */
.card-feature:hover::after{
  width:100%;
}
.cards-icon{
 display: flex;
    justify-content: flex-start;
    align-items: anchor-center;
    gap: 10px;
}
   


        .icon-box-about {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var( --gorilla-yellow), var( --gorilla-yellow));
            color: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
        }

        /* Process Steps */
       .process-grid {
  display: flex;
  gap: 10px; /* Space between arrows */
  background: #f8f9fa;
  padding: 20px;
}

.process-step {
  position: relative;
  flex: 1;
  background:linear-gradient(90deg, #F6D854 0%, #e5c63a 100%);;
  color: white;
  padding: 20px 20px 20px 40px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
   transition: transform 0.5s ease;
  min-height: 80px;
  font-size: 20px;;
  clip-path: polygon(
    calc(100% - 20px) 0%, 
    100% 50%, 
    calc(100% - 20px) 100%, 
    0% 100%, 
    20px 50%, 
    0% 0%
  );
  transition:2s
}
.process-step:hover {
  animation: float-left 2s ease-in-out infinite;
}
@keyframes float-left {
  0% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}







        /* Industry Tags */
        .industry-tag {
            display: inline-flex;
            align-items: center;
            padding: 12px 24px;
            background: white;
            border-radius: 100px;
            margin: 8px;
            font-weight: 600;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: all 0.2s ease;
        }

        .industry-tag:hover {
            background: var(--gorilla-black);
            border-color: var( --gorilla-yellow);
            transform: scale(1.05);
            color:#fff;
        }
.fa-solid.fa-rocket{margin-right:10px;}
        /* CTA Overlay */
        .cta-section {
            position: relative;
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9));
                 background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), 
                 url("./images/about1.webp") center / cover;       
            color: white;
            border-radius: 32px;
            padding: 80px 40px;
            overflow: hidden;
        }

                .cta-section h2{
                     transition: all 0.3s ease;
            animation: fadeInScale 1.4s ease-out 0.4s both;
                }
            
        .btn-primary-custom {
            background: var( --gorilla-yellow);
            border: none;
            padding: 16px 40px;
            border-radius: 12px;
            font-weight: 700;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }

        .btn-primary-custom:hover {
            background: white;
            color: var( --gorilla-yellow);
            transform: translateY(-2px);
        }

        @media (max-width: 991px) {
            .hero-section-about {         padding: 130px 0;}
            .hero-about-image-container { margin-top: 50px; }
        }

        /* .hero-section-about  .btn-cta{
                padding-top: 18px;
              } */

              .imag-width{
                width:80%;
              }

              .icon-box-about:hover i{
                 transform: translate(20);
              }
.icon-box-about:hover {
transform:rotateY(180deg);
  transition: 1s;
}


  .process-grid {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: nowrap; /* Change to wrap for mobile if needed */
        }

        .process-step {
            position: relative;
            flex: 1;
            background-color: var(--gorilla-yellow);
            color: white;
            font-weight: 800;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: default;
            font-family: "inter", sans-serif;
        }

        .process-step:hover {
            filter: brightness(1.05);
            transform: translateY(-2px);
        }

       

        /* The Running Animation Area */
        .animation-gap {
            width: 40px;
            height: 20px;
            overflow: hidden;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .running-arrows {
            width: 100%;
            height: 100%;
            opacity: 0.6;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f1d045' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
            background-repeat: repeat-x;
            background-size: 14px 14px;
            animation: march 0.8s linear infinite;
        }

        /* Animation Keyframes */
        @keyframes march {
            from {
                background-position: 0 0;
            }
            to {
                background-position: 14px 0;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .process-grid {
                flex-direction: column;
                gap: 15px;
            }
            .animation-gap {
                transform: rotate(90deg);
                height: 30px;
            }
            .process-step {
                width: 100%;
                /* clip-path: none !important; */
                border-radius: 8px;
            }

        .mobile-reverse-hero-section{
             display: flex;
             flex-direction: column-reverse;
         }
            
        }




                /* Target the card container */
        .mis-vis-cards.shadow-sm {
            transition: all 0.3s ease-in-out;
            border: 1px solid transparent;
        }

        /* Hover State */
        .mis-vis-cards.shadow-sm:hover {
            transform: translateY(-10px); 
            shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important; 
            border-color: var(--gorilla-yellow); 
        }

        /* Smooth Icon Animation */
        .mis-vis-cards.shadow-sm:hover .icon-box-about {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

        .mis-vis-cards {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        /* The Overlay Layer */
        .mis-vis-cards::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0%; /* Start hidden */
            background: #000; /* Very light tint */
            transition: height 0.4s ease;
            z-index: -1;
        }

        .mis-vis-cards:hover::before {
            height: 100%; /* Fills the card on hover */
        }
        .mis-vis-cards:hover {
            border-bottom: 4px solid var(--gorilla-yellow); /* Brand highlight */
        }
        .mis-vis-cards:hover p{
        color:#fff;
        }


        .mis-vis-cards:hover i{
            transform :rotateY(360deg);
            transition: 0.5s;
        }
     
                #expertise{
                background: linear-gradient(180deg,#000,#1a2a4f);
                }

            .service-digital-card {
                display: flex;
                gap: 10px;
                align-items: baseline;
                border-radius: 20px;
                padding: 2rem;
                transition: all 0.3s ease;
                height: 100%;
                background: #fff;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                    }

                .service-digital-card:hover {
                    transform: translateY(-10px);
                    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
                      background: rgba(255, 255, 255, 0.2);
                }


                .service-digital-card:hover h5{color :#fff; }

                .service-digital-card .icon-box {
                    width: 60px;
                    height: 60px;
                    background: rgb(255 235 59 / 10%);
                    border-radius: 15px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 1.5rem;
                    transition: 0.3s;
                }

                .service-digital-card:hover .icon-box {
                    background: rgba(255, 255, 255, 0.2); 
                    
                }


                .brand-digital-section{
                padding: 80px 20px; 
                text-align: center;
                color: #000;
                }
 
                .brand-digital-section h2{
                font-size: 32px;
                margin-bottom: 15px;
                font-weight: 700;
                 animation: slideInUp 0.8s ease-out 0.2s both;
                }

                .brand-digital-section p{
                max-width: 700px;
                margin: auto;
                font-size: 18px;
                opacity: 0.9;
                }

                .result-digital-box{
                margin-top: 30px;
                display: inline-block;
                padding: 18px 25px;
               background: rgb(18 10 10 / 3%);
                border-radius: 12px;
                backdrop-filter: blur(10px);
                font-size: 17px;
                }
                .result-digital-box button{
                    margin:10px;
                } 

                .digital-section p{
                    font-size: 1rem;
                    font-family: 'Inter', sans-serif;
                    animation: slideInUp 0.8s ease-out 0.2s both;
                }
                .digital-section h2{
                    animation: slideInUp 0.8s ease-out 0.2s both;
                }

   /* Why Choose Section */
        .hero-section-whyus {
            padding: 140px 0 80px;
            text-align: center;
            background: radial-gradient(circle at top right, rgba(255, 220, 61, 0.05), transparent);
        }

        .hero-title-whyus {
            font-family: "Jockey One", sans-serif;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            font-size: 4rem;
            letter-spacing: 1px;
        }

        .highlight-whyus {
            color: var(--gorilla-yellow);
        }

        .hero-sub {
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
             font-family: "Inter", sans-serif;
             opacity: 0.9;
            line-height: 1.6;
        }
        .features-grid-whyus {
            padding: 60px 0 100px;
            background-color: var(--gorilla-black);
        }

        .section-header {
            margin-bottom: 60px;
        }

        .feature-card-whyus {
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 20px;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;    background-color: #1a1a1a;
        }

        .feature-card-whyus:hover {
            border-color: var(--gorilla-yellow);
            transform: translateY(-10px);
            background-color: #1a1a1a;
        }

        .feature-num {
            font-size: 3rem;
            font-weight: 900;
            color: rgba(255, 220, 61, 0.1);
            position: absolute;
            top: 10px;
            right: 20px;
            font-family: 'inter', sans-serif;
        }
       .feature-card-whyus:hover  .feature-num{
            top:0px;
            right: 28%;  
            font-size: 10rem;
            transition: all 1s ease;
        }

        .feature-card-whyus h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--gorilla-yellow);
        }

        .feature-card-whyus p {
       color: #f3efef;
             font-family: "Inter", sans-serif;
             opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .feature-card-whyus ul {
            padding-left: 0;
            list-style: none;
            margin-top: 15px;
        }

        .feature-card-whyus li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 8px;
            color: #f3efef;
             font-family: "Inter", sans-serif;
             opacity: 0.9;
            font-weight: 500;
        }

        .feature-card-whyus li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gorilla-yellow);
        }
        .dis-block{
            display: block;
            margin: auto;
        }
    

         

        .hero-blog-section {
            padding: 120px 0 80px;
            text-align: center;
            background: radial-gradient(circle at top right, rgba(255, 220, 61, 0.05), transparent);
        }
     .hero-blog-title{
        max-width:100% !important;
        font-size: 4rem;
    }
        .trends-section {
            padding: 80px 0;
           
        }
        .trends-card {
            border: 1px solid #333;
            border-radius: 24px;
            padding: 50px;
            position: relative;
            overflow: hidden;
        }
        .trends-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 4px; height: 100%;
        }

        /* Categories Section */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 50px;
          
        }
        .cat-item {
            background: #111;
            padding: 35px;
            border-radius: 20px;
            border: 1px solid #222;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
              position : relative;
        }
        .cat-item:hover {
            transform: translateY(-8px);
            background: #161616;
        }
       
       .cat-item  i {
            margin-bottom: 24px;
            position: absolute;
            z-index: 1;
            opacity: 0.5;
            font-size: 1.5rem;
            top: 5%;
            left: 10px; transition: all 1s ease;
        }

        .cat-item:hover i{
        font-size: 5rem;
            top: 25%;
            left: 35%;  transition: all 1s ease;
        }

        /* Blog Preview Section */
        .blog-preview {
            padding: 100px 0;
        }
        .blog-card {
        
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid #333;
            transition: all 0.3s ease;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            border-color: #444;
        }
        .blog-img {
            width: 100%;
            height: 280px;
            background: #222;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .blog-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--accent-gold);
            color: #000;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .blog-content {
            padding: 40px;
        }
      

        @media (max-width: 768px) {
            
            .trends-card { padding: 30px; }
            .blog-content { padding: 25px; }
        }


        .hero-section-blog {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5rem 1.5rem;
        }

        .hero-section-blog  .container {
            max-width: 1280px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            z-index: 10;
        }

        /* Background Decor */
        .gradient-sphere {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0) 70%);
            z-index: -1;
            pointer-events: none;
        }

        .bg-blur-circle {
            position: absolute;
            bottom: 2.5rem;
            left: 2.5rem;
            width: 16rem;
            height: 16rem;
            background-color: #eff6ff;
            border-radius: 9999px;
            filter: blur(64px);
            z-index: -1;
            opacity: 0.5;
        }

        /* Left Content */
        .content-area {
            display: flex;
            flex-direction: column;
            max-width: 36rem;
        }

        .tagline {
            display: inline-block;
            padding: 0.375rem 1rem;
            background-color: #fffbeb;
            color: var(--gorilla-yellow);
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.025em;
            border-radius: 9999px;
            width: fit-content;
        }

         .hero-section-blog h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            margin-top:10%;
        }

        @media (min-width: 1024px) {
           .hero-section-blog  h1 { font-size: 4.5rem; }
        }
        @media (max-width: 992px) {

        .card-middle{top: 90% !important;
            left: 75%;}
        }

        @media (max-width: 1200px) {
                    .gradient-sphere{width:100% !important; }}
                            @media (max-width: 767px){
                    .card-front{
                        bottom: -6rem !important;
                        left: -4rem  !important;
                    }
                    .card-back{
                        top: -0.5rem;
                        right: 6.5rem;
                    }
                }  
   
        .subheading {
            font-size: 1.125rem;
            font-weight: 600;
            line-height: 1.625;
        }

        .main-description {
            font-size: 1.125rem;
           color: var(--gorilla-black);
             font-family: "Inter", sans-serif;
             opacity: 0.9;
            line-height: 1.625;
        }

        .cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            padding-top: 1rem;
        }


     

        /* Right Visual Area */
        .visual-area {
            position: relative;
            height: 500px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bg-shape-circle {
            position: absolute;
            width: 16rem;
            height: 16rem;
            border: 40px solid rgba(245, 158, 11, 0.2);
            border-radius: 9999px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            pointer-events: none;
        }

        .glass {
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
            border-radius: 1.5rem;
            position: absolute;
        }

        .card-back {
            width: 16rem;
            height: 10rem;
            padding: 1.5rem;
            top: 2.5rem;
            right: 2.5rem;
            opacity: 0.6;
            z-index: 0;
            animation: float-reverse 7s ease-in-out infinite;
        }

        .card-middle {
            width: 18rem;
            height: 12rem;
            padding: 1.5rem;
            top: 75%;
            left: 75%;
            transform: translate(-50%, -50%);
            z-index: 10;
            animation: float 6s ease-in-out infinite;
        }

        .card-front {
            width: 14rem;
            height: 9rem;
            padding: 1.25rem;
            bottom: 1rem;
            left: 1rem;
            z-index: 20;
            animation: float-reverse 7s ease-in-out infinite;
            animation-delay: 1s;
        }

        /* Content inside glass cards */
        .skeleton-line {
            height: 0.5rem;
            background-color: rgba(226, 232, 240, 0.5);
            border-radius: 9999px;
            margin-bottom: 1rem;
        }

        .chart-container {
            display: flex;
            align-items: flex-end;
            gap: 0.5rem;
            height: 4rem;
            margin-top: 1.5rem;
        }

        .chart-bar {
            flex: 1;
            background-color: var(--gorilla-yellow);
            border-radius: 0.5rem 0.5rem 0 0;
            opacity: 0.6;
        }

        /* Animations */
        @keyframes float {
            0% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
            50% { transform: translate(-50%, -50%) translateY(-20px) rotate(1deg); }
            100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
        }

        @keyframes float-reverse {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(15px) rotate(-1deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        .pulse-dot {
            position: absolute;
            top: 5rem;
            left: 5rem;
            width: 1rem;
            height: 1rem;
            background-color: var(--gorilla-yellow);
            border-radius: 9999px;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: .5; }
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
         .hero-section-blog    .container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            .content-area {
                margin: 0 auto;
                align-items: center;
            }
          
            .visual-area {
                height: 400px;
                transform: scale(0.85);
            }
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: var(--gorilla-yellow); border-radius: 10px; }
       

        .hero-section-blog-details{
                margin-top:5%;
        }

        

        .modal-title {
            font-size: 2rem; 
            font-family:"Jockey One", sans-serif ;
        }


   
            @media (min-width: 601px) and (max-width: 992px) {
                 .modal-dialog{width:600px !important;}
        }

     

    