 :root {
     --primary-blue: #0d6efd;
     --dark-blue: #054bb4;
     --light-blue: #e9f2ff;
     --accent-orange: #fd7e14;
     --corporate-gray: #2d3748;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     color: var(--corporate-gray);
     line-height: 1.6;
     overflow-x: hidden;
 }

 /* Smooth transitions */
 * {
     transition: background-color 0.3s ease, border-color 0.3s ease;
 }

 /* Navigation with GSAP animation */
 .navbar {
     background-color: white;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
     padding: 20px 0;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .navbar.scrolled {
     /* padding: 12px 0; */
     backdrop-filter: blur(10px);
     background-color: rgba(255, 255, 255, 1);
 }

 .navbar-brand {
     font-weight: 700;
     font-size: 1.8rem;
     color: var(--primary-blue);
     position: relative;
 }

 .navbar-brand span {
     color: var(--accent-orange);
 }

 /* .navbar-brand::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        } */

 .navbar-brand:hover::after {
     width: 100%;
 }

 .nav-link {
     font-weight: 500;
     color: #333 !important;
     position: relative;
     margin: 0 12px;
     padding: 8px 0 !important;
 }

 .nav-link::before {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: var(--primary-blue);
     transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .nav-link:hover::before,
 .nav-link.active::before {
     width: 100%;
 }

 .brand-logo {
     width: 75px;
 }

 .navbar-brand {
     position: absolute;
     top: 0;
     padding: 5px 15px 15px;
     background: #fff;
 }

 .navbar-brand::before {
     content: '';
     position: absolute;
     right: -30px;
     width: 0;
     bottom: 0;
     height: 0;
     border-top: 32px solid #fffefe;
     border-right: 30px solid transparent;
 }

 .navbar-brand::after {
     content: '';
     position: absolute;
     left: -30px;
     width: 0;
     bottom: 0;
     z-index: -1;
     height: 0;
     border-top: 32px solid #ffffff;
     border-left: 30px solid transparent;
 }

/* Dropdown menu styling */
.navbar .dropdown-menu {
    border: none;
    border-radius: 8px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    padding: 10px 0;
    /* margin-top: 10px; */
    min-width: 200px;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(-10px);
    pointer-events: none;
}

.navbar .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.navbar .dropdown-item {
    padding: 8px 20px;
    color: #333;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(90deg, #f8f9fa, #e9f2ff);
    color: #0d6efd;
    padding-left: 25px;
}

/* Navbar styling - keep existing */
.navbar .nav-link {
    position: relative;
}

/* Keep Bootstrap dropdown toggle styling but override behavior */
.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(-180deg);
}

section{
    padding: 80px 0;
}

/* Responsive dropdown on mobile */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        box-shadow: none;
        padding-left: 20px;
        background: transparent;
        border-left: 2px solid #0d6efd;
        margin: 5px 0 10px 20px;
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: all;
        display: none;
    }
    
    .navbar .dropdown.show .dropdown-menu,
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .navbar .dropdown-item {
        padding: 6px 15px;
        color: #666;
    }
    
    .navbar .dropdown-item:hover {
        background: transparent;
        color: #0d6efd;
        padding-left: 20px;
    }
    
    /* Disable hover on mobile, use click instead */
    .navbar .dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: none;
    }
}

 /* Hero Section with GSAP animations */
 .hero-section {
     background: linear-gradient(rgba(13, 110, 253, 0.85), rgba(5, 75, 180, 0.9)), url('/assets/images/banner-1.png');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     color: white;
     padding: 180px 0 120px;
     position: relative;
     overflow: hidden;
 }

 .hero-section::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
     top: 0;
     left: 0;
 }

 .hero-title {
     font-weight: 700;
     margin-bottom: 25px;
     line-height: 1.2;
     opacity: 0;
     transform: translateY(30px);
 }

 .hero-subtitle {
     opacity: 0;
     transform: translateY(30px);
 }

 .hero-cta {
     opacity: 0;
     transform: translateY(30px);
 }

 /* Banner Slider Section */
 .banner-slider {
     position: relative;
     width: 100%;
     height: 100vh;
     overflow: hidden;
     margin-top: 5rem;
 }

 .slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 0.6s ease-in-out;
 }

 .slide.active {
     opacity: 1;
     z-index: 2;
 }

 .slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     /* display: block; */
 }

 .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05); /* overlay strength */
    z-index: -1;
}

/* Switch images for mobile */
    .desktop-img {
    display: block;
    }

    .mobile-img {
        display: none;
    }

 /* Overlay */
.banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

/* Standard container */
.container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Right aligned text */
.banner-text {
    margin-left: auto;
    max-width: 450px;
    color: #fff;
    text-align: left;
}

.banner-text h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.banner-text p {
    font-size: 26px;
    line-height: 1.6;
}
.gradient-text {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(
        90deg,
        #0a58ca,   /* deep blue */
        #0dcaf0    /* teal / cyan */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.slide .read-more-btn.white{
    border: 1px solid #ffffff;
    color: #fff;
}
.slide .read-more-btn.white .icon{
    color: #fff;
}
.slide .white:hover{
    background: #fff;
    color: #000;
}
.slide .white:hover .icon{
    color: #000;
}

 /* Slider Navigation */
 .slider-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 100%;
     display: flex;
     justify-content: space-between;
     padding: 0 30px;
     z-index: 10;
 }

 .slider-btn {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     transition: all 0.3s ease;
     backdrop-filter: blur(5px);
     border: 1px solid rgba(255, 255, 255, 0.25);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }

 .slider-btn:hover {
     background-color: var(--primary-blue);
     transform: scale(1.1);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
 }

 /* Combined Bottom Controls */
 .slider-controls {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 10;
     flex-direction: column;
     gap: 15px;
     padding: 20px 15px 25px;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
 }

 /* Progress Container */
 .progress-container {
     width: 100%;
     max-width: 600px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 12px;
 }

 /* Progress Bar */
 .slider-progress {
     width: 100%;
     height: 3px;
     background-color: rgba(255, 255, 255, 0.25);
     border-radius: 3px;
     overflow: hidden;
 }

 .slider-progress-bar {
     height: 100%;
     background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
     width: 0%;
     border-radius: 3px;
 }

 /* Dots */
 .slider-dots {
     display: flex;
     gap: 12px;
 }

 .slider-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.4);
     cursor: pointer;
     transition: all 0.3s ease;
     border: 2px solid transparent;
 }

 .slider-dot.active {
     background-color: #fc000a;
     transform: scale(1.3);
     border-color: white;
     box-shadow: 0 0 10px rgb(227 45 23 / 60%);
 }

 .slider-dot:hover {
     background-color: rgba(255, 255, 255, 0.8);
     transform: scale(1.2);
 }
 
 .partner-program{
     font-size: 1.2rem!important;
 }

 /* Responsive Styles */
 @media (max-width: 768px) {
     .slider-nav {
         padding: 0 15px;
     }

     .slider-btn {
         width: 45px;
         height: 45px;
         font-size: 1.3rem;
     }

     .slider-controls {
         padding: 15px 10px 20px;
         gap: 12px;
     }

     .slider-dot {
         width: 10px;
         height: 10px;
     }

     .progress-container {
         max-width: 400px;
     }
     .desktop-img {
        display: none;
    }
    
    .mobile-img {
        display: block;
    }
    .center-card .key-focus-wrapper.mobile-img {
    display: flex!important;
    }
    .custom-line{
        display: none;
    }
    .info.left, .info.right, .info.textRight{
        padding: 0 15px;
    }
    .product{
        align-items: center!important;
        justify-content: center;
        gap: 0px;
    }
 }

 @media (max-width: 576px) {
     .slider-btn {
         width: 40px;
         height: 40px;
         font-size: 1.2rem;
     }

     .slider-controls {
         padding: 12px 8px 18px;
         gap: 10px;
     }

     .slider-dot {
         width: 8px;
         height: 8px;
     }

     .slider-progress {
         height: 2px;
     }
 }



 /* Floating elements */
 .floating-element {
     position: absolute;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     animation: float 6s ease-in-out infinite;
 }

 .floating-element:nth-child(1) {
     width: 80px;
     height: 80px;
     top: 20%;
     left: 10%;
     animation-delay: 0s;
 }

 .floating-element:nth-child(2) {
     width: 120px;
     height: 120px;
     bottom: 30%;
     right: 15%;
     animation-delay: 2s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-20px) rotate(180deg);
     }
 }

 .key-focus-wrapper {
     display: flex;
     justify-content: center;
     /* horizontal center */
     width: 100%;
     position: relative;
     margin-bottom: 2.5rem;
 }

 .key-focus {
     padding: 12px 40px;
     font-size: 20px;
     font-weight: 700;
     font-family: Arial, Helvetica, sans-serif;
     color: #ffffff;
     letter-spacing: 2px;
     text-transform: uppercase;

     background: linear-gradient(180deg,
             #0a4fa3 0%,
             #0b7fa6 50%,
             #10b0a5 100%);

     border-radius: 30px 30px 0 0;
     text-align: center;
     position: relative;
 }

 /* Bottom underline */
 .key-focus::after {
     
    content: "";
    position: absolute;
    left: -6px;
    bottom: -6px;
    width: calc(100% + 12px);
    height: 4px;
    background: #0aa6a6;
    border-radius: 2px;
 }

 .heading-ten{
    text-align:center;
    margin-bottom: 1.6rem;
}

.heading-ten h2{
    display:inline-block;
    padding:15px 40px;
    font-size:24px;
    letter-spacing:2px;
    border:2px solid #00c6ff;
    position:relative;
}

.heading-ten h2::after{
    content:"";
    position:absolute;
    top:6px;
    left:6px;
    right:-6px;
    bottom:-6px;
    border:2px solid #00f2c3;
}

 /* Products */
 .products-section {
     background: linear-gradient(#efe5d9, #efe5d9);
 }

 .products-ui {
     position: relative;
     height: 650px;
     max-width: 1400px;
     margin: auto;
 }

 /* Center Card */
 .center-card {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     padding: 20px 40px;
     color: #fff;
     border-radius: 10px;
     text-align: center;
 }

 .center-card img{
    width: 22%;
    margin-bottom: 0.5rem;
 }
 .center-card h5{
    color: #0d1b38;
    margin-bottom: 0;
    font-size: 20px;
 }
 .center-card span{
    color: #0d1b38;
    font-size: 10px;
 }

 .center-card span {
     font-size: 12px;
      color: #0d1b38;
     letter-spacing: 1px;
 }

 .center-card strong {
     font-size: 26px;
     display: block;
 }

 .center-card .key-focus-wrapper.mobile-img{
    display: none;
 }

 /* Product blocks */
 .product {
     position: absolute;
     display: flex;
     align-items: flex-start;
     gap: 20px;
     animation: float 6s ease-in-out infinite;
 }

 .product img {
     width: 180px;
     filter: drop-shadow(0 20px 25px rgba(0, 0, 0, .25));
 }

 .reverse-column {
     flex-direction: row-reverse;
 }

.product .info{
    margin-top: 1.5rem;
}

 /* Text */
 .info h3 {
     color: #0056b3;
     font-size: 17px;
     margin-bottom: 4px;
 }

 .info h4 {
     font-size: 14px;
     color: #333;
     margin-bottom: 6px;
 }

 .info p {
     font-size: 13px;
     color: #666;
     line-height: 1.5;
     max-width: 280px;
 }

 /* Alignments */
 .product .info{
    position: relative;
 }
 .info.left {
     text-align: left;
 }

 .info.right {
     text-align: left;
 }

 .info.textRight {
     text-align: right;
 }

 .info.center {
     text-align: center;
 }

 /* Positions (match screenshot) */
 .p1 {
     top: 9rem;
     left: 16rem;
 }

 .p2 {
     top: 4rem;
     left: 46%;
     transform: translateX(-50%);
 }

 .p3 {
     top: 14rem;
     right: 4rem;
 }

 .p4 {
     bottom: 8rem;
     left: 10rem;
 }

 .p5 {
     bottom: 0rem;
     left: 20%;
     transform: translateX(-50%);
 }

 .p6 {
     bottom: 2rem;
     right: 6rem;
 }

 /* .product.p3 img {
     width: 210px;
 } */

 /* .product.p5 img {
     width: 198px;
     margin-left: -30px;
 } */

 .product.p5 img{
    margin-left: -2rem;
 }

 .custom-line {
    position: absolute;
    width: 40%;
    top: 2.8rem;
    height: 2px;
    background-color: #ffffff;
}
.info.right .custom-line {
    left: -5.5rem;
}

.info.textRight .custom-line{
    right: -5rem;
    transform: rotate(180deg);
    width: 60%;
}
.p5 .info.textRight .custom-line{
    width: 40%;
}

.circle {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    
    background: radial-gradient(circle at 30% 30%, #f5f5f5, #cfcfcf);
    
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

 /* Floating animation */
 @keyframes float {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-12px);
     }

     100% {
         transform: translateY(0);
     }
 }



 .clickable-image {
    padding-top: 12px;
    padding-bottom: 12px;
    background: #fff;
     cursor: pointer;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .shadow-effect {
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 8px 30px rgba(0, 0, 0, 0.08);
     border-radius: 4px;
     /* Optional: adds slight rounding to match shadow */
 }

 .clickable-image:hover {
     transform: scale(1.02);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 12px 40px rgba(0, 0, 0, 0.12);
 }


 /* Focus area */
 .solutions-row {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 14px;
     max-width: 100%;
     height: 285px;
     margin: auto;
     margin-top: 1rem;
     flex-wrap: nowrap;
     border-radius: 1rem;
     background: linear-gradient(180deg, rgba(222, 223, 224, 1) 0%, rgba(253, 253, 253, 1) 53%, rgba(234, 235, 235, 1) 100%);
 }

 /* Card */
 .solution-card {
     width: 210px;
     height: 265px;
     background: #fff;
     border-radius: 14px;
     box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
     transition: all 0.35s ease;
     position: relative;
 }

 /* Raised middle card */
 .solution-card.active {
     transform: scaleY(1);
     transform-origin: center center;
     width: 210px;
     height: 325px;
     z-index: 20;
 }

 .solution-card.active .card-head {
     width: 210px;
 }

 /* Header strip */
 .card-head {
     height: 90px;
     padding: 16px 14px;
     color: #fff;
     font-weight: 600;
     font-size: 15px;
     text-align: center;
     border-radius: 14px 14px 0 0;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Body */
 .card-body {
     padding: 18px;
     font-size: 13px;
     color: #333;
     line-height: 1.6;
 }

 .card-body.tech {
     text-align: center;
     font-weight: 600;
 }

 /* Hover */
 .solution-card:hover {
     transform: translateY(-20px);
 }

 /* ===== GRADIENT COLORS (VERY IMPORTANT) ===== */
 .blue .card-head {
     background: linear-gradient(180deg, #347ab8, #014668);
 }

 .green .card-head {
     background: linear-gradient(180deg, #439b92, #045c52);
 }

 .orange .card-head {
     background: linear-gradient(180deg, #eaa337, #9a6d03);
 }

 .teal .card-head {
     background: linear-gradient(180deg, #449c93, #01564d);
 }

 .blue-dark .card-head {
     background: linear-gradient(180deg, #3379b7, #014567);
 }

 /* .navy .card-head {
  background: linear-gradient(180deg, #2f5f9c, #1c3f6e);
} */

 .solution-card.navy {
     background: linear-gradient(180deg, #22b2a8, #1f5199);
     display: flex;
     justify-content: center;
     align-content: center;
     align-items: center;
 }

 .solution-card.navy ul {
     list-style: none;
     padding: 0;
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
     font-size: 0.9rem;
     color: #fff;
     margin-bottom: 0;
 }

 .solution-card.navy ul li {
     width: 100%;
     border-bottom: 1px solid #fff;
     padding-bottom: 0.8rem;
 }

 .solution-card.navy ul li:last-child {
     border-bottom: unset;
 }

 /* client */

 .clients-grid {
     display: grid;
     grid-template-columns: repeat(6, 1fr);
     /* 5 equal columns */
     gap: 30px;
     max-width: 1200px;
     /* keeps grid centered and clean */
     margin: 0 auto;
     /* horizontal center */
 }

 /* Logo Box */
 .client-box {
     width: 100%;
     /* auto-fit column width */
     height: 110px;

     background: linear-gradient(180deg,
             #f2f2f2 0%,
             #ffffff 50%,
             #e6e6e6 100%);

     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;

     box-shadow:
         0 12px 26px rgba(0, 0, 0, 0.45),
         inset 0 2px 0 rgba(255, 255, 255, 0.8);

     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 /* Hover effect */
 .client-box:hover {
     transform: translateY(-6px);
     box-shadow:
         0 25px 45px rgba(0, 0, 0, 0.6),
         inset 0 2px 0 rgba(255, 255, 255, 0.9);
 }

 /* Logo image */
 .client-box img {
     max-width: 90%;
     object-fit: contain;
 }

 /* Section Titles */
 .section-title {
            color: var(--dark-blue);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
            border-radius: 2px;
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }

 /* Key focus */
 .key-focus-section {
     padding: 80px 0;
     background: #DEDFE0;
     background: linear-gradient(180deg, rgba(222, 223, 224, 1) 0%, rgba(253, 253, 253, 1) 53%, rgba(234, 235, 235, 1) 100%);
 }

 .focus-area-section {
     padding: 80px 0;
     background: #fff;
 }

 .read-more-btn {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     padding: 5px 15px;
     border: 1px solid #ff0000;
     border-radius: 999px;

     font-size: 0.9rem;
     font-weight: 500;
     font-family: Arial, Helvetica, sans-serif;

     color: #000;
     text-decoration: none;
     background: transparent;

     transition: background 0.35s ease, color 0.35s ease;
 }

 /* Icon styling */
 .read-more-btn .icon {
     font-size: 1rem;
     color: #ff0000;
     transition: transform 0.35s ease, color 0.35s ease;
 }

 /* Hover animation */
 .read-more-btn:hover {
     background: #ff0000;
     color: #ffffff;
 }

 .read-more-btn:hover .icon {
     color: #ffffff;
     transform: translateX(6px);
     /* arrow slide */
 }

 .key-focus-content {
     margin-top: 5rem;
 }

 /* Cards with GSAP animations */
 .card {
     border: none;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     height: 100%;
     border-radius: 12px;
     opacity: 0;
     transform: translateY(40px);
 }

 .card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
 }

 .icon-box {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .card:hover .icon-box {
     transform: scale(1.1) rotate(10deg);
     background: linear-gradient(135deg, var(--accent-orange), #e85d04);
 }

 .icon-box i {
     font-size: 2rem;
     color: white;
 }

 /* Stats Section */
 .stats-section {
     background: linear-gradient(135deg, var(--dark-blue), #1e429f);
     color: white;
     padding: 80px 0;
     position: relative;
     overflow: hidden;
 }

 .stat-item {
     text-align: center;
     padding: 20px;
     opacity: 0;
     transform: translateY(30px);
 }

 .stat-number {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: white;
 }

 .products {
     background: #AAD8F3;
     background: linear-gradient(180deg, rgba(170, 216, 243, 1) 0%, rgba(206, 233, 248, 1) 53%, rgba(229, 244, 252, 1) 100%);
 }

 /* Partner With Us Section */
 .partner-section {
     padding: 80px 0;
     background: linear-gradient(rgba(249, 250, 251, 0.95), rgba(249, 250, 251, 0.95));
     background-size: cover;
     background-position: center;
     position: relative;
 }

 .partner-card {
     background: white;
     border-radius: 16px;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
     padding: 50px;
     position: relative;
     overflow: hidden;
     opacity: 0;
     transform: translateY(40px);
 }

 /* .partner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-blue), var(--accent-orange));
        } */
 .partner-card .btn-submit {
     background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
     border: none;
     font-weight: 600;
     font-size: 1rem;
     padding: 8px 20px;
     width: 100%;
     margin-top: 20px;
 }

 .partner-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .partner-icon {
     width: 100px;
     height: 100px;
     background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     box-shadow: 0 10px 25px rgba(13, 110, 253, 0.2);
 }

 .partner-icon i {
     font-size: 2.5rem;
     color: white;
 }

 .partner-form .form-control,
 .partner-form .form-select {
     border: 1px solid #e2e8f0;
     border-radius: 8px;
     padding: 8px 12px;
     font-size: 0.9rem;
     transition: all 0.3s ease;
     background-color: #f8fafc;
 }

 .partner-form .form-control:focus,
 .partner-form .form-select:focus {
     border-color: var(--primary-blue);
     box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
     background-color: white;
 }

 .partner-form label {
     font-weight: 600;
     margin-bottom: 8px;
     color: var(--corporate-gray);
 }

 .partner-form .form-text {
     color: #6c757d;
     font-size: 0.875rem;
     margin-top: 4px;
 }

 .partner-benefits {
     background: var(--light-blue);
     border-radius: 12px;
     padding: 30px;
     margin-top: 40px;
 }

 .partner-benefits h5 {
     color: var(--dark-blue);
     margin-bottom: 20px;
     font-weight: 600;
 }

 .partner-benefits ul {
     list-style: none;
     padding-left: 0;
 }

 .partner-benefits li {
     padding: 8px 0;
     padding-left: 30px;
     position: relative;
 }

 .partner-benefits li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: var(--primary-blue);
     font-weight: bold;
 }

 /* Clients Section */
 .clients-section {
     padding: 80px 0;
     background-color: #f8f9fa;
 }

 .client-logo {
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 20px 0;
     filter: grayscale(100%);
     opacity: 0.6;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     transform: scale(0.9);
 }

 .client-logo.animated {
     opacity: 1;
     filter: grayscale(0%);
     transform: scale(1);
 }

 .client-logo:hover {
     transform: scale(1.1);
 }

 /* Contact Form */
 .contact-form .form-control {
     border: 1px solid #e2e8f0;
     border-radius: 8px;
     padding: 12px 15px;
     transition: all 0.3s ease;
     opacity: 0;
     transform: translateX(-30px);
 }

 .contact-form .form-control.right {
     transform: translateX(30px);
 }

 .contact-form .form-control:focus {
     border-color: var(--primary-blue);
     box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
     transform: translateY(-2px);
 }


 /* Blog Section Styles */
    .blog-section {
        padding: 80px 0;
        background: #fff;
        position: relative;
        overflow: hidden;
    }
    
    .blog-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(13, 110, 253, 0.03);
        z-index: 1;
    }
    
    .blog-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(253, 126, 20, 0.03);
        z-index: 1;
    }
    
    .blog-header {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }
    
    .blog-header h2 {
        color: var(--dark-blue, #054bb4);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }
    
    .blog-header h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-blue, #0d6efd), var(--accent-orange, #fd7e14));
        border-radius: 2px;
    }
    
    .blog-header p {
        color: var(--corporate-gray, #2d3748);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Blog Slider Styles */
    .blog-swiper {
        padding: 20px 10px 60px !important;
        position: relative;
        z-index: 2;
    }
    
    .swiper-slide {
        height: auto;
        display: flex;
    }
    
    .blog-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(13, 110, 253, 0.1);
    }
    
    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
        border-color: transparent;
    }
    
    .blog-image {
        width: 100%;
        height: 220px;
        overflow: hidden;
        position: relative;
    }
    
    .blog-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .blog-card:hover .blog-image::before {
        opacity: 1;
    }
    
    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }
    
    .blog-card:hover .blog-image img {
        transform: scale(1.1);
    }
    
    .blog-category {
        position: absolute;
        top: 15px;
        left: 15px;
        background: linear-gradient(90deg, #0a57a3, #10b0a5);
        color: white;
        padding: 5px 15px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 2;
        box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    }
    
    .blog-date {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.9);
        color: var(--dark-blue, #054bb4);
        padding: 5px 12px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 2;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        backdrop-filter: blur(5px);
    }
    
    .blog-content {
        padding: 25px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .blog-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--corporate-gray, #2d3748);
        margin-bottom: 12px;
        line-height: 1.4;
        transition: color 0.3s ease;
    }
    
    .blog-card:hover .blog-title {
        color: var(--primary-blue, #0d6efd);
    }
    
    .blog-excerpt {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 2;      /* Number of lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .blog-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 15px;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .blog-author {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .author-avatar {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0a5da4, #0fa2a2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    .author-name {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--corporate-gray, #2d3748);
    }
    
    .blog-section .read-more {
        color: var(--primary-blue, #0d6efd);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
    }
    
   .blog-section .read-more i {
        transition: transform 0.3s ease;
    }
    
    .blog-section .read-more:hover {
        color: var(--accent-orange, #fd7e14);
    }
    
   .blog-section .read-more:hover i {
        transform: translateX(5px);
    }
    
    /* Swiper Navigation */
    .blog-section .swiper-button-next,
    .blog-section .swiper-button-prev {
        width: 45px;
        height: 45px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
   .blog-section  .swiper-button-next:after,
    .blog-section .swiper-button-prev:after {
        font-size: 1.2rem;
        color: var(--primary-blue, #0d6efd);
        font-weight: bold;
    }
    
   .blog-section  .swiper-button-next:hover,
   .blog-section .swiper-button-prev:hover {
        background: var(--primary-blue, #0d6efd);
        transform: scale(1.1);
    }
    
   .blog-section .swiper-button-next:hover:after,
   .blog-section .swiper-button-prev:hover:after {
        color: white;
    }
    
   .blog-section .swiper-button-next {
        right: -10px;
    }
    
    .blog-section .swiper-button-prev {
        left: -10px;
    }
    
    /* Swiper Pagination */
    .blog-section .swiper-pagination {
        bottom: 0 !important;
    }
    
    .blog-section .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: rgba(13, 110, 253, 0.2);
        opacity: 1;
        transition: all 0.3s ease;
    }
    
    .blog-section .swiper-pagination-bullet-active {
        background: var(--primary-blue, #0d6efd);
        width: 25px;
        border-radius: 5px;
    }


 /* Button animations */
 .btn-primary {
     background-color: var(--primary-blue);
     border-color: var(--primary-blue);
     padding: 12px 30px;
     font-weight: 500;
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .btn-primary::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.7s;
 }

 .btn-primary:hover::before {
     left: 100%;
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
 }


   /* Technology Slider Section */
    .tech-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9f2ff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .tech-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(13, 110, 253, 0.03);
        z-index: 1;
    }
    
    .tech-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(253, 126, 20, 0.03);
        z-index: 1;
    }
    
    .tech-container {
        position: relative;
        z-index: 2;
    }
    
    .tech-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .tech-header h2 {
        color: var(--dark-blue);
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }
    
    .tech-header h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
        border-radius: 2px;
    }
    
    .tech-header p {
        color: var(--corporate-gray);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Slider Styles */
    .tech-slider-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 50px;
    }
    
    .tech-slider {
        overflow: hidden;
        margin: 0 -15px;
    }
    
    .tech-track {
        display: flex;
        transition: transform 0.5s ease;
    }
    
    .tech-slide {
        flex: 0 0 25%; /* 4 items per row on desktop */
        padding: 15px;
        box-sizing: border-box;
    }
    
    .tech-card {
        background: white;
        border-radius: 16px;
        padding: 35px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
        height: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background: linear-gradient(180deg, #f2f2f2 0%, #ffffff 50%, #e6e6e6 100%);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 17px rgba(0, 0, 0, 0.45), inset 0 2px 0 rgba(255, 255, 255, 0.8);
        transition: transform 0.3s ease, box-shadow 0.3s ease;

    }
    
    .tech-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
        transform: translateY(-100%);
        transition: transform 0.4s ease;
    }
    
    .tech-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
        border-color: transparent;
    }
    
    .tech-card:hover::before {
        transform: translateY(0);
    }
    
    .tech-icon {
        width: 120px;
        /* height: 70px; */
        /* margin: 0 auto 15px; */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }
    
    .tech-card:hover .tech-icon {
        transform: scale(1.1);
    }
    
    .tech-icon img {
        max-width: 70%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .tech-name {
        font-size: 1rem;
        font-weight: 600;
        color: var(--corporate-gray);
        margin-bottom: 5px;
        transition: color 0.3s ease;
    }
    
    .tech-card:hover .tech-name {
        color: var(--primary-blue);
    }
    
    .tech-desc {
        font-size: 0.85rem;
        color: #6c757d;
    }
    
    /* Navigation Buttons */
    .tech-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        border: 1px solid rgba(13, 110, 253, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .tech-nav:hover {
        background: var(--primary-blue);
        border-color: var(--primary-blue);
        color: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
    }
    
    .tech-nav.prev {
        left: 0;
    }
    
    .tech-nav.next {
        right: 0;
    }
    
    .tech-nav i {
        font-size: 1.2rem;
    }
    
    /* Dots Navigation */
    .tech-dots {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        gap: 10px;
    }
    
    .tech-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(13, 110, 253, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .tech-dot.active {
        background: var(--primary-blue);
        transform: scale(1.3);
    }
    
    .tech-dot:hover {
        background: var(--accent-orange);
    }
    
    /* Specific Tech Styling */
    .tech-card.sqlserver .tech-icon {
        color: #CC2927;
    }
    
    .tech-card.java .tech-icon {
        color: #007396;
    }
    
    .tech-card.j2ee .tech-icon {
        color: #F8981D;
    }
    
    .tech-card.struts .tech-icon {
        color: #0085B0;
    }
    
    .tech-card.nodejs .tech-icon {
        color: #68A063;
    }
    
    .tech-card.bpm .tech-icon {
        color: #0F6BFF;
    }
    
    .tech-card.spring .tech-icon {
        color: #6DB33F;
    }
    
    .tech-card.angular .tech-icon {
        color: #DD0031;
    }
    


    .contact-us-right {
    background: linear-gradient(to right, #1e40af, #22c55e);
    border: 0 !important;
    border-radius: 5px 5px 0 0;
    border: 1px solid #7f7f7f;
    border-bottom: none;
    cursor: pointer;
    width: 170px;
    height: 34px;
    overflow: hidden;
    color: #fff !important;
    padding: 2px 0 2px 0;
    position: fixed;
    top: 50%;
    right: -68px;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    z-index: 999;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
}

     /* ==================== STICKY CTA BUTTONS ==================== */
        .sticky-cta {
            position: fixed;
            width: 100%;
            z-index: 1000;
            bottom: 0;
            left: 0;
        }

        /* Mobile Version - Always at bottom */
        .sticky-cta-mobile {
            display: block;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            padding: 12px 16px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        }

        .sticky-cta-mobile .cta-buttons {
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 8px;
        }

        /* Desktop Version - Floating at bottom right */
        .sticky-cta-desktop {
            display: none;
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1001;
        }

        .sticky-cta-desktop .cta-buttons {
            display: flex;
            gap: 15px;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            padding: 8px 20px;
            border-radius: 50px;
            box-shadow: 0 8px 30px rgba(13, 110, 253, 0.3);
            transition: all 0.3s ease;
            justify-content: center;
            align-items: center;
        }

        .sticky-cta-desktop .cta-buttons:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(13, 110, 253, 0.4);
        }
        .sticky-cta-desktop .cta-close {
        background: rgba(255, 255, 255, 0.2);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .sticky-cta-desktop .cta-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }
    
    .sticky-cta-desktop .cta-close i {
        color: white;
        font-size: 0.9rem;
    }


        /* Common Button Styles */
        .cta-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
            font-weight: 600;
            font-family: inherit;
        }

        /* Mobile Button Styles */
        .sticky-cta-mobile .cta-btn {
            flex-direction: column;
            gap: 6px;
            color: #333;
            font-size: 0.75rem;
            padding: 8px 12px;
            border-radius: 12px;
            min-width: 70px;
        }

        .sticky-cta-mobile .cta-btn i {
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .sticky-cta-mobile .demo-btn i {
            color: var(--primary-blue);
        }

        .sticky-cta-mobile .contact-btn i {
            color: #28a745;
        }

        .sticky-cta-mobile .whatsapp-btn i {
            color: #25D366;
        }

        .sticky-cta-mobile .cta-btn:hover {
            background: rgba(13, 110, 253, 0.05);
            transform: translateY(-2px);
        }

        .sticky-cta-mobile .cta-btn:hover i {
            transform: scale(1.1);
        }

        /* Desktop Button Styles */
        .sticky-cta-desktop .cta-btn {
            color: white;
            font-size: 0.8rem;
            padding: 4px 15px;
            border-radius: 25px;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
        }

        .sticky-cta-desktop .cta-btn i {
            font-size: 1.1rem;
        }

        .sticky-cta-desktop .cta-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        /* WhatsApp Indicator Dot */
        .whatsapp-btn {
            position: relative;
        }

        .whatsapp-btn::after {
            content: '';
            position: absolute;
            top: -2px;
            right: -2px;
            width: 10px;
            height: 10px;
            background-color: #25D366;
            border-radius: 50%;
            border: 2px solid white;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.8);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.2);
                opacity: 1;
            }
            100% {
                transform: scale(0.8);
                opacity: 0.8;
            }
        }

        /* Desktop Breakpoint */
        @media (min-width: 768px) {
            .sticky-cta-desktop {
                display: block;
                animation: slideIn 0.5s ease-out;
            }
            
            .sticky-cta-mobile {
                display: none;
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hide on scroll down (Desktop only) */
        .sticky-cta-desktop.hidden {
            transform: translateY(100px);
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s ease;
        }

        /* Scroll Indicator (for testing) */
        .scroll-indicator {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--primary-blue);
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
            font-size: 0.8rem;
            z-index: 999;
        }

        

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .sticky-cta-mobile {
                padding: 10px 12px;
            }
            
            .sticky-cta-mobile .cta-btn {
                min-width: 65px;
                padding: 6px 10px;
                font-size: 0.7rem;
            }
            
            .sticky-cta-mobile .cta-btn i {
                font-size: 1.2rem;
            }
            
            .whatsapp-btn::after {
                width: 8px;
                height: 8px;
            }
        }

        @media (max-width: 480px) {
            .sticky-cta-mobile {
                padding: 8px 10px;
            }
            
            .sticky-cta-mobile .cta-btn {
                min-width: 60px;
                padding: 5px 8px;
                font-size: 0.65rem;
            }
            
            .sticky-cta-mobile .cta-btn i {
                font-size: 1.1rem;
            }
        }

        /* Simple hover effects */
        .cta-btn:active {
            transform: scale(0.95);
        }

 /* Footer */
 .footer-logo {
     width: 200px;
     position: absolute;
     top: -3.8rem;
 }

 footer {
     background: #22B6A9;
     background: linear-gradient(90deg, rgba(34, 182, 169, 1) 0%, rgba(33, 161, 165, 1) 42%, rgba(32, 117, 158, 1) 100%);
     /* background-color: #1a1a1a; */
     color: #fff;
     padding: 80px 0 30px;
     position: relative;
     /* overflow: hidden; */
 }

 footer .about-us {
     /* margin-top: 4rem; */
 }

 .footerLogo{
 display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
 }
 .footerLogo img{
    width: 21%;
 }
.footerLogo .brand-text h2{
    font-size: 23px;
    margin-bottom: 0;
}
.footerLogo .brand-text span{
font-size: 15px;
}

 footer::before {
     content: '';
     position: absolute;
     width: 300px;
     height: 300px;
     border-radius: 50%;
     background: rgba(13, 110, 253, 0.05);
     top: -150px;
     right: -100px;
 }

 .footer-links a {
     color: #fff;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
 }
 .footer-links p{
    margin-bottom: 0.5rem;
 }

 .footer-links a::before {
     content: '';
     position: absolute;
     width: 0;
     height: 1px;
     bottom: -2px;
     left: 0;
     background-color: var(--accent-orange);
     transition: width 0.3s ease;
 }

 .footer-links a:hover {
     color: white;
     padding-left: 5px;
 }

 .footer-links a:hover::before {
     width: 100%;
 }

 .social-icons a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     margin-right: 10px;
     transition: all 0.3s ease;
 }

 .social-icons a:hover {
     background-color: var(--primary-blue);
     transform: translateY(-3px);
 }

 /* Reveal animations */
 .reveal-up {
     opacity: 0;
     transform: translateY(40px);
 }

 .reveal-left {
     opacity: 0;
     transform: translateX(-40px);
 }

 .reveal-right {
     opacity: 0;
     transform: translateX(40px);
 }

 /* Mobile Menu Styles */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    position: relative;
    z-index: 10000;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 6px;
    transform-origin: left center;
}

.navbar-toggler-icon::after {
    bottom: 6px;
    transform-origin: left center;
}

.navbar-toggler-icon {
    background: linear-gradient(to bottom,
        transparent 0%,
        transparent 44%,
        #333 44%,
        #333 56%,
        transparent 56%,
        transparent 100%);
}

/* Animated hamburger to X */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg) translate(1px, -1px);
    width: 24px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg) translate(1px, 1px);
    width: 24px;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Ensure mobile menu appears on top of everything */
.navbar-collapse {
    z-index: 9999;
}

/* Mobile menu styles */
@media (max-width: 992px) {
    /* Hide default close button */
    .navbar-toggler.collapsed .navbar-toggler-icon {
        background: linear-gradient(to bottom,
            transparent 0%,
            transparent 44%,
            #333 44%,
            #333 56%,
            transparent 56%,
            transparent 100%);
    }
    
    /* Show close button when menu is open */
    .navbar-collapse.show .mobile-menu-close {
        display: flex;
    }
    
    /* Mobile menu backdrop */
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue)) !important;
        padding: 80px 30px 30px !important;
        margin: 0 !important;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto !important;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .navbar-collapse.show {
        transform: translateX(0) !important;
    }
    
    /* Mobile menu links */
    .navbar-nav {
        width: 100%;
        max-width: 400px;
        text-align: center;
    }
    
    .nav-item {
        margin-bottom: 10px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Stagger the animation for nav items */
    .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .navbar-collapse.show .nav-item:nth-child(5) { transition-delay: 0.5s; }
    .navbar-collapse.show .nav-item:nth-child(6) { transition-delay: 0.6s; }
    .navbar-collapse.show .nav-item:nth-child(7) { transition-delay: 0.7s; }
    
    .nav-link {
        color: white !important;
        font-size: 1.3rem !important;
        padding: 15px 20px !important;
        margin: 5px 0 !important;
        border-radius: 10px;
        transition: all 0.3s ease;
        position: relative;
        display: block;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateX(10px);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .nav-link::before {
        display: none;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    .tech-slide {
            flex: 0 0 33.333%; /* 3 items per row on tablet */
        }
        
        .tech-header h2 {
            font-size: 2.2rem;
        }
}

/* Ensure navbar brand is visible on mobile */
@media (max-width: 992px) {
    .navbar-brand {
        position: relative;
        padding: 0;
        background: none;
    }
    
    .navbar-brand::before,
    .navbar-brand::after {
        display: none;
    }
    
    .brand-logo {
        width: 60px;
        height: auto;
    }
}

/* Fix for Bootstrap's default mobile menu */
.navbar-collapse:not(.show) {
    display: none;
}

@media (min-width: 993px) {
    .navbar-collapse:not(.show) {
        display: flex !important;
    }
    
    .mobile-menu-close {
        display: none !important;
    }
}

 /* Responsive adjustments */
/* General Responsive Adjustments */
@media (max-width: 1400px) {
    .products-ui {
        height: 650px;
    }
    
    /* .product img {
        width: 150px;
    } */
    
    /* .product.p3 img {
        width: 190px;
    } */
    
    /* .product.p5 img {
        width: 180px;
    } */
}

@media (max-width: 1200px) {
    .products-ui {
        height: 650px;
        max-width: 1200px;
    }
    
    .product {
        gap: 15px;
    }
    
    .product img {
        width: 130px;
    }
    
    .product.p3 img {
        width: 170px;
    }
    
    /* .product.p5 img {
        width: 160px;
    } */
    
    .info h3 {
        font-size: 16px;
    }
    
    .info p {
        font-size: 12px;
        max-width: 240px;
    }
    
    .solutions-row {
        height: 250px;
        gap: 12px;
    }
    
    .solution-card {
        width: 180px;
        height: 230px;
    }
    
    .solution-card.active {
        width: 180px;
        height: 280px;
    }
    
    .solution-card.active .card-head {
        width: 180px;
    }
    
    .card-head {
        height: 80px;
        font-size: 14px;
    }
    
    .card-body {
        font-size: 12px;
        padding: 15px;
    }
}

/* Tablet Styles */
@media (max-width: 992px) {
    /* Navigation */
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }
    
    .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link.active {
        color: var(--primary-blue) !important;
        font-weight: 600;
    }
    
    /* Products Section */
    .products-ui {
        height: auto;
        padding: 60px 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .center-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 40px;
        width: 100%;
        order: 1;
    }
    
    .product {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: none;
        width: calc(50% - 20px);
        margin-bottom: 30px;
        order: 2;
    }
    
    .product.p2, .product.p5 {
        left: auto !important;
        transform: none !important;
    }
    
    .product img {
        width: 140px;
    }
    
    .product.p3 img {
        width: 160px;
    }
    
    .product.p5 img {
        width: 150px;
        margin-left: 0;
    }
    
    /* Key Focus Section */
    .key-focus-content {
        margin-top: 2rem;
    }
    
    /* Solutions Row */
    .solutions-row {
        height: auto;
        flex-wrap: wrap;
        padding: 20px;
        gap: 20px;
    }
    
    .solution-card {
        width: calc(33.333% - 20px);
        height: 280px;
        margin-bottom: 20px;
    }
    
    .solution-card.active {
        width: calc(33.333% - 20px);
        height: 320px;
    }
    
    .solution-card.active .card-head {
        width: 100%;
    }
    
    /* Clients Grid */
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .client-box {
        height: 120px;
    }
    
    /* Footer */
    .footer-logo {
        position: absolute;
        top: -3.8rem;
        margin-bottom: 2rem;
    }
    
    footer .about-us {
        margin-top: 2rem;
    }
}



/* Mobile Styles */
@media (max-width: 768px) {
    /* General */
    body {
        font-size: 14px;
    }

    .navbar{
        padding: 0px 0;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before{
        top: 0px;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 5px;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before, .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        background-color: #fff;
    }
    
    .products-ui a{
        width: 100%;
        text-decoration: none;
    }
    .center-card{
        position: absolute;
        top: 0;
        padding-top: 4rem !important;
    }
    .center-card .key-focus-wrapper .key-focus br{
        display: none;
    }
    .products-ui{
        padding-top: 10rem!important;
    }
    .banner-slider {
        height: 65vh;
        margin-top: 4.5rem;
    }
    
    /* Navigation - Full Screen Hamburger Menu */
    .navbar-brand {
        padding: 5px 10px 10px;
    }
    
    .brand-logo {
        width: 60px;
    }
    
    .navbar-brand::before,
    .navbar-brand::after {
        display: none;
    }
    
    /* Full Screen Mobile Menu */
    .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    padding: 80px 30px 30px;
    margin-top: 0;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    box-shadow: none;
    overflow-y: auto;
}

.navbar-collapse.show {
    transform: translateX(0);
}

.nav-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.navbar-collapse.show .nav-item {
    opacity: 1;
    transform: translateY(0);
}

.navbar-collapse.show .nav-item:nth-child(1) { transition-delay: 0.1s; }
.navbar-collapse.show .nav-item:nth-child(2) { transition-delay: 0.2s; }
.navbar-collapse.show .nav-item:nth-child(3) { transition-delay: 0.3s; }
.navbar-collapse.show .nav-item:nth-child(4) { transition-delay: 0.4s; }
.navbar-collapse.show .nav-item:nth-child(5) { transition-delay: 0.5s; }
.navbar-collapse.show .nav-item:nth-child(6) { transition-delay: 0.6s; }
.navbar-collapse.show .nav-item:nth-child(7) { transition-delay: 0.7s; }

.nav-link {
    color: white !important;
    font-size: 1.2rem;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: white !important;
    font-weight: 700;
}

/* Dropdown styles for mobile */
.navbar .dropdown-menu {
    background: transparent !important;
    border: none !important;
    padding: 0 0 0 20px !important;
    margin: 0 !important;
    position: relative !important;
    float: none !important;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    box-shadow: none !important;
}

.navbar .dropdown.show .dropdown-menu,
.navbar .dropdown-menu.show {
    max-height: 500px;
    opacity: 1;
    padding: 10px 0 10px 20px !important;
    top: 0!important;
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 8px 0 !important;
    font-size: 1rem;
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .dropdown-item:hover {
    color: white !important;
    background: transparent !important;
    padding-left: 10px !important;
}

/* Dropdown toggle arrow */
.navbar .dropdown-toggle::after {
    content: "▼";
    border: none;
    font-size: 0.8rem;
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    display: inline-block;
}

.navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Close Button for Mobile Menu */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10000;
}
    
    /* Products Section */
    .products-ui {
        padding: 40px 15px;
        gap: 30px;
    }
    
    .product {
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .reverse-column {
        flex-direction: column;
    }
    
    .product img {
        width: 180px;
    }
    
    .product.p3 img {
        width: 200px;
    }
    
    .product.p5 img {
        width: 190px;
    }
    
    .info.left,
    .info.right,
    .info.textRight {
        text-align: center;
    }
    
    /* Key Focus Section */
    .key-focus-wrapper {
        margin-bottom: 2rem;
    }
    
    .key-focus {
        font-size: 16px;
        padding: 10px 30px;
    }
    
    /* Column Layouts */
    .col-md-6, .col-md-5, .col-md-7 {
        width: 100% !important;
        margin-bottom: 2rem;
    }
    
    /* Solutions Row */
    .solutions-row {
        padding: 15px;
        gap: 15px;
    }
    
    .solution-card {
        width: calc(50% - 15px);
        height: 250px;
    }
    
    .solution-card.active {
        width: calc(50% - 15px);
        height: 280px;
    }
    
    .card-head {
        height: 70px;
        font-size: 13px;
        padding: 12px 10px;
    }
    
    .card-body {
        padding: 12px;
        font-size: 11px;
    }
    
    /* Clients Grid */
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .client-box {
        height: 140px;
    }
    
    /* Partner Form */
    .partner-card {
        padding: 30px 20px;
    }
    
    /* Footer */
    footer {
        padding: 60px 0 30px;
    }
    
    .footer-logo {
        width: 150px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
    .banner-text h2 {
    font-size: 26px;
    margin-bottom: 5px;
}
    .banner-text p {
    font-size: 16px;
    margin-bottom: 0;
    }
    .banner-content{
        margin-top: 13rem;
    }
    footer{
            margin-bottom: 4rem;
    }
    .banner-slider {
        height: 75vh;
    }
      .tech-slide {
            flex: 0 0 50%; /* 2 items per row on mobile */
        }
        
        .tech-section {
            padding: 60px 0;
        }
        
        .tech-header h2 {
            font-size: 2rem;
        }
        
        .tech-card {
            padding: 25px 15px;
            height: 160px;
        }
        
        .tech-icon {
            width: 80%;
            /* height: 60px; */
        }
        
        .tech-name {
            font-size: 1rem;
        }
        
        .tech-slider-container {
            padding: 0 40px;
        }

         .blog-section {
            padding: 60px 0;
        }
        
        .blog-header h2 {
            font-size: 2rem;
        }
        
        .blog-image {
            height: 200px;
        }
        
        .blog-title {
            font-size: 1.2rem;
        }
        
        .blog-section .swiper-button-next,
        .blog-section .swiper-button-prev {
            display: none !important;
        }
        
       .blog-section .blog-swiper {
            padding: 20px 10px 50px !important;
        }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
    .banner-slider {
        height: 75vh;
    }
    
    .slider-nav {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .products-ui {
        padding: 30px 10px;
        gap: 25px;
    }
    
    .center-card {
        padding: 15px 20px;
    }
    
    .product img {
        width: 150px;
    }
    
    .product.p3 img {
        width: 170px;
    }
    
    .product.p5 img {
        width: 160px;
    }
    
    .info h3 {
        font-size: 20px;
    }
    
    .info h4 {
        font-size: 15px;
    }
    
    .info p {
        font-size: 14px;
        max-width: 100%;
    }
    
    /* Solutions Row */
    .solutions-row {
        padding: 10px;
        gap: 10px;
        width: 95%;
    }
    
    .solution-card {
        width: 100%;
        height: 180px;
        margin-bottom: 15px;
    }
    .solution-card.navy{
        height: 240px!important;
    }
    
    .solution-card.active {
        width: 100%;
        height: 250px;
    }
    
    .solution-card.navy ul {
        flex-direction: column;
    }
    
    /* Clients Grid */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-box {
        height: 130px;
    }
    
    /* Partner Form */
    .partner-form .row {
        flex-direction: column;
    }
    
    .partner-form .col-md-6 {
        width: 100%;
    }
    
    /* Key Focus */
    .key-focus {
        font-size: 14px;
        padding: 8px 20px;
        letter-spacing: 1px;
    }

    .tech-slide {
            flex: 0 0 100%; /* 1 item per row on small mobile */
        }
        
        .tech-nav {
            width: 35px;
            height: 35px;
        }
        
        .tech-slider-container {
            padding: 0 45px;
        }

        .blog-image {
            height: 180px;
        }
        
        .blog-content {
            padding: 20px 15px;
        }
        
        .blog-title {
            font-size: 1.1rem;
        }
        
        .blog-excerpt {
            font-size: 0.9rem;
        }
}

/* Very Small Screens */
@media (max-width: 400px) {
    .banner-slider {
        height: 75vh;
    }
    
    .products-ui {
        padding: 20px 5px;
    }
    
    .product img {
        width: 130px;
    }
    
    .product.p3 img {
        width: 150px;
    }
    
    .product.p5 img {
        width: 140px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .client-box {
        height: 120px;
    }
    
    .navbar-brand {
        padding: 5px;
    }
    
    .brand-logo {
        width: 50px;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .banner-slider {
        height: 80vh;
    }
    
    .products-ui {
        height: auto;
        min-height: 600px;
    }
    
    .product {
        width: calc(33.333% - 20px);
    }
}

/* Animation for mobile menu items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}