    * {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }


         /* Preloader overlay */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 42, 58, 0.95);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        /* Loading spinner */
        .preloader-loading {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            perspective: 800px;
            margin-bottom: 20px;
        }

        .preloader-inner {
            position: absolute;
            box-sizing: border-box;
            width: 100%;
            height: 100%;
            border-radius: 50%;  
        }

        .preloader-one {
            animation: rotate-one 1.2s linear infinite;
            border-bottom: 4px solid #4A90E2;
        }

        .preloader-two {
            animation: rotate-two 1.2s linear infinite;
            border-right: 4px solid #5D9CEC;
        }

        .preloader-three {
            animation: rotate-three 1.2s linear infinite;
            border-top: 4px solid #6BA9F7;
        }

        /* Loading text */
        .preloader-text {
            color: white;
            font-size: 16px;
            margin-top: 15px;
        }

        /* Main content (hidden during preload) */
     

        /* Animations */
        @keyframes rotate-one {
            0% { transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); }
            100% { transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); }
        }

        @keyframes rotate-two {
            0% { transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); }
            100% { transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); }
        }

        @keyframes rotate-three {
            0% { transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); }
            100% { transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); }
        }

        /* Hide preloader */
        .preloader-hidden {
            opacity: 0;
            pointer-events: none;
        }

/* // ============================================= */
/* // navbar */
/* // ============================================= */


        .navbar {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: sticky !important;
            top: 0;
            z-index: 1020;
            transition: all 0.3s ease;
            background-color: white;
            
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .navbar.scrolled {
           
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .dockcode-logo img {
            width: 120px;
            transition: all 0.3s ease;
        }

        .navbar-nav {
            text-align: center;
        }

        .nav-item {
            margin: 0 10px;
        }

        .nav-item a {
            font-size: 17px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0 !important;
        }

        .nav-item a:hover {
            color: #0f79c4 !important;
        }

        .nav-item a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #0f79c4;
            transition: width 0.3s ease;
        }

        .nav-item a:hover::after {
            width: 100%;
        }

        .nav-button button {
            background-color: #0f79c4;
            color: white;
            border: none;
            border-radius: 95px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-button button:hover {
            background-color: #0c5d9c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(15, 121, 196, 0.3);
            color: white;
        }

        /* Mobile responsiveness */
        @media (min-width: 992px) {
            .navbar-nav {
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 991px) {
            .navbar-nav {
                text-align: left;
                padding: 10px 0;
            }
            
            .nav-item {
                margin: 5px 0;
            }
            
            .nav-button {
                margin-top: 15px;
                text-align: center;
            }
            
            .nav-button button {
                width: 100%;
            }
        }


/* // ============================================= */
/* // home-main-page */
/* // ============================================= */

   /* New First Section Styles */
        .home-image {
            background: linear-gradient(rgba(15, 121, 196, 0.85), rgba(8, 65, 105, 0.9)), 
                        url('./images/home-main-img.jpg');
            background-size: 150%;
            background-repeat: no-repeat;
            background-position: left;
            -webkit-animation: home-image-slide 40s ease infinite;
            animation: home-image-slide 40s ease infinite;
            transform: translate3d(0,0,0);
            height: 95vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: -50px !important;
        }

        .home-image::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 121, 196, 0.1);
            z-index: 1;
        }

        .home-image-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            color: white;
        }

        .home-image-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(30px);
        }

        .home-image-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            line-height: 1.6;
            font-weight: 300;
            opacity: 0;
            transform: translateY(30px);
        }

        .home-image-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
        }

        .home-image-button {
            padding: 15px 25px;
            border-radius: 95px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .home-image-button-primary {
            background-color: #0f79c4;
            color: white;
            border: 2px solid #0f79c4;
        }

        .home-image-button-primary:hover {
            background-color: #0c5d9c;
            border-color: #0c5d9c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(15, 121, 196, 0.3);
        }

        .home-image-button-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .home-image-button-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
        }

        @-webkit-keyframes home-image-slide {
            0%   { background-position: left; }
            50%   { background-position: right; }
            100% { background-position: left; }
        }

        @keyframes home-image-slide {
            0%   { background-position: left; }
            50%   { background-position: right; }
            100% { background-position: left; }
        }

        

        /* Second Section - EXACT Original Image Model */
       .home-main-sub {
            background: white;
            color: rgb(59, 57, 57);
            position: relative;
            overflow: hidden;
        }

        .home-main-sub-headding {
            width: 100%;
            height: 100svh;
            background: white;
            color: rgb(59, 57, 57);
            font-size: clamp(30px, 8vw, 100px);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-direction: column;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        /* Background Animation Elements */
        .bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
            animation: float 15s infinite linear;
        }

        .floating-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-duration: 25s;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
        }

        .floating-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 10%;
            animation-duration: 20s;
            animation-delay: 2s;
            background: radial-gradient(circle, rgba(30, 64, 175, 0.06) 0%, transparent 70%);
        }

        .floating-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 15%;
            animation-duration: 30s;
            animation-delay: 5s;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
        }

        .floating-shape:nth-child(4) {
            width: 250px;
            height: 250px;
            top: 30%;
            right: 20%;
            animation-duration: 35s;
            animation-delay: 7s;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(20px, 20px) rotate(90deg);
            }
            50% {
                transform: translate(0, 40px) rotate(180deg);
            }
            75% {
                transform: translate(-20px, 20px) rotate(270deg);
            }
        }

        /* Pulse dots */
        .pulse-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(37, 99, 235, 0.3);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .pulse-dot:nth-child(5) { top: 20%; left: 80%; animation-delay: 0s; }
        .pulse-dot:nth-child(6) { top: 70%; left: 10%; animation-delay: 0.5s; }
        .pulse-dot:nth-child(7) { top: 40%; left: 90%; animation-delay: 1s; }
        .pulse-dot:nth-child(8) { top: 80%; left: 70%; animation-delay: 1.5s; }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(2); opacity: 0.6; }
        }

        /* Moving lines */
        .moving-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
            animation: moveLine 8s linear infinite;
        }

        .moving-line:nth-child(9) {
            top: 25%;
            width: 100%;
            animation-duration: 12s;
        }

        .moving-line:nth-child(10) {
            top: 65%;
            width: 80%;
            left: 10%;
            animation-duration: 15s;
            animation-delay: 3s;
        }

        @keyframes moveLine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Your original styles below - unchanged */
        .graph-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.1;
            pointer-events: none;
        }

        .graph-background::before {
            content: "";
            position: absolute;
            top: 20%;
            left: 10%;
            width: 80%;
            height: 2px;
            background: rgba(0, 0, 0, 0.3);
            animation: drawLine 2s ease-in-out infinite alternate;
        }

        .graph-background::after {
            content: "";
            position: absolute;
            top: 40%;
            left: 20%;
            width: 60%;
            height: 2px;
            background: rgba(0, 0, 0, 0.3);
            animation: drawLine 2s ease-in-out 0.5s infinite alternate;
        }

        @keyframes drawLine {
            0% { 
                width: 0; 
                background-color: transparent;
            }
            100% { 
                width: 70%;
                background-color: rgb(1, 1, 25);
                border: 1px solid;
            }
        }

        .graph-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }

        .graph-dot:nth-child(1) { top: 30%; left: 15%; animation-delay: 0s; }
        .graph-dot:nth-child(2) { top: 50%; left: 70%; animation-delay: 0.3s; }
        .graph-dot:nth-child(3) { top: 70%; left: 40%; animation-delay: 0.6s; }

        .floating-triangle {
            position: absolute;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 10px solid rgba(37, 99, 235, 0.4);
            animation: floatTriangle 3s ease-in-out infinite;
        }

        .floating-triangle:nth-child(4) { top: 10%; left: 50%; animation-delay: 0s; }
        .floating-triangle:nth-child(5) { top: 60%; left: 80%; animation-delay: 1s; }
        .floating-triangle:nth-child(6) { top: 80%; left: 30%; animation-delay: 2s; }

        @keyframes floatTriangle {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
            25% { transform: translateY(-20px) rotate(90deg); opacity: 0.6; }
            50% { transform: translateY(-40px) rotate(180deg); opacity: 0.5; }
            75% { transform: translateY(-20px) rotate(270deg); opacity: 0.7; }
        }

      .sub-heading-text-main{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            width: 100%;
        }

        .sub-heading-text {
            font-size: 4vw;
            letter-spacing: -.01em;
            line-height: 100%;
            margin: 0;
            margin-left: 30px;
            width: 100%;
            color: rgba(1, 12, 30, 0.2);
            background: linear-gradient(to right, #2477ab, #0e5794) no-repeat;
            -webkit-background-clip: text;
            background-clip: text;
            background-size: 0%;
            transition: background-size cubic-bezier(.1,.5,.5,1) 0.5s;
           line-height: 25px;
            font-weight: 700;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            position: relative;
            padding: 20px 0;
            cursor: pointer;
           
        }

       

        .home-about-images {
            position: relative;
            width: 45%;
            min-width: 400px;
            z-index: 1;
            margin-top: 50px;
            margin-top: 60px;
            animation: slideInLeft 1.2s ease-out forwards;
            margin-left: 50px;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .home-about-image-large {
            width: 80%;
            height: 340px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease; 
            margin-top: -20px;
        }

        .home-about-image-large:hover {
            transform: scale(1.05);
        }

        .home-about-image-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .home-about-image-small {
            width: 65%;
            height: 270px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            position: absolute;
            bottom: -40px;
            right: -40px;
            z-index: 3;
            border: 8px solid white;
            transition: transform 0.3s ease; 
            margin-top: -20px;
        }

        .home-about-image-small:hover {
            transform: scale(1.05) rotate(2deg);
        }

        .home-about-image-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .home-about-description {
            font-weight: 500;
            font-size: 16px;
            color: #475569;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto 60px;
            z-index: 2;
            margin-top: 30px;
            animation: fadeInUp 1s ease-out 0.3s forwards;
            text-align: justify;
          
        }

        .home-about-stats {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out 0.5s forwards;
        }

        .home-about-stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            padding: 0 15px;
            position: relative;
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
            margin-left: -30px;
        }

        .home-about-stat-item:nth-child(1) { animation-delay: 0.7s; }
        .home-about-stat-item:nth-child(2) { animation-delay: 0.9s; }
        .home-about-stat-item:nth-child(3) { animation-delay: 1.1s; }
        .home-about-stat-item:nth-child(4) { animation-delay: 1.3s; }

        .home-about-stat-item:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 10px;
            right: 0;
            height: 60%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, #cbd5e1, transparent);
        }

        .home-about-stat-number {
            font-weight: 800;
            font-size: 26px;
            color: #1e40af;
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }

        .home-about-stat-number:hover {
            color: #2563eb;
        }

        .home-about-stat-text {
            font-weight: 600;
            font-size: 13px;
            color: #2563eb;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .home-about-images {
                min-width: 350px;
            }
        }

        @media (max-width: 900px) {
            .home-about-images {
                width: 100%;
                min-width: auto;
                max-width: 500px;
            }
            
            .home-about-image-small {
                width: 75%;
                right: -20px;
            }
            
            .home-about-stats {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .home-about-stat-item {
                flex: 0 0 calc(50% - 20px);
            }
            
            .home-about-stat-item:nth-child(2)::after {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .home-about-image-large {
                height: 250px;
            }
            
            .home-about-image-small {
                height: 180px;
                bottom: -30px;
                right: -15px;
            }
            
            .home-about-stat-item {
                flex: 0 0 100%;
            }
            
            .home-about-stat-item:not(:last-child)::after {
                display: none;
            }
        }


/* // ============================================= */
/* // home service */
/* // ============================================= */
   
     /* ============ Home Service Carousel ================= */
        .home-service {
            width: 100%;
            height: 100vh;
            display: flex;
            flex-wrap: wrap;
            position: relative;
        }
        
        .home-service .carousel-slider {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            overflow: hidden;
        }
        
        .home-service .carousel-slider .swiper-slide {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin: 0;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .home-service .carousel-slider .swiper-slide.swiper-slide-active {
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
            z-index: 3;
        }
        
        .home-service .carousel-slider .swiper-slide:after {
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.85) 0%, rgba(42, 82, 152, 0.8) 50%, rgba(25, 50, 100, 0.9) 100%);
            opacity: 0.8;
        }
        
        .home-service .carousel-slider .swiper-slide.swiper-slide-active:after {
            opacity: 0.7;
        }
        
        .home-service .carousel-slider .swiper-slide .inner {
            width: 100%;
            display: block;
            text-align: center;
            color: #fff;
            position: relative;
            z-index: 2;
            opacity: 0;
            transition: 0.25s ease-in-out;
            padding: 0 20px;
        }
        
        .home-service .carousel-slider .swiper-slide.swiper-slide-active .inner {
            opacity: 1;
        }
        
        .home-service .carousel-slider .swiper-slide .inner h2 {
            width: 100%;
            float: left;
            font-size: 4vw;
            line-height: 5vw;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
            margin-top: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .home-service .carousel-slider .swiper-slide .inner .service-list {
            font-size: 1.2vw;
            line-height: 1.8;
            max-width: 80%;
            margin: 0 auto 25px;
            color: #f0f0f0;
            text-align: left;
            display: inline-block;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .home-service .carousel-slider .swiper-slide .inner .service-list ul {
            padding-left: 20px;
            margin: 0;
        }
        
        .home-service .carousel-slider .swiper-slide .inner .service-list li {
            margin-bottom: 8px;
            position: relative;
        }
        
        .home-service .carousel-slider .swiper-slide .inner .service-list li:before {
            content: "•";
            color: #75dab4;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .home-service .carousel-slider .swiper-slide .inner a {
            font-size: 19px;
            color: #fff;
            font-family: "Fjalla One", sans-serif;
            padding-bottom: 5px;
            position: relative;
            border-bottom: 2px solid #75dab4;
            padding-bottom: 4px;
            text-decoration: none;
            transition: 0.25s ease-in-out;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .home-service .carousel-slider .swiper-slide .inner a:hover {
            text-decoration: none;
            color: #75dab4;
            border-bottom-color: #fff;
        }
        
        .home-service .slide-progress {
            width: 220px;
            display: flex;
            flex-wrap: wrap;
            position: absolute;
            left: 50%;
            bottom: 30px;
            margin-left: -110px;
            z-index: 3;
            text-align: center;
            align-items: center;
        }
        
        .home-service .slide-progress span {
            display: inline-block;
            color: #fff;
            font-family: "Fjalla One", sans-serif;
            font-size: 14px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .home-service .slide-progress .swiper-pagination {
            width: 160px;
            height: 2px;
            margin: auto 10px;
            display: inline-block;
            position: static;
            background: rgba(255, 255, 255, 0.3);
        }
        
        .home-service .slide-progress .swiper-pagination .swiper-pagination-progressbar-fill {
            background: #75dab4;
        }
        
        .home-service .swiper-button-prev {
            height: auto;
            position: absolute;
            left: auto;
            top: auto;
            right: 120px;
            bottom: 30px;
            font-family: "Fjalla One", sans-serif;
            color: #fff;
            background: none;
            cursor: pointer;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            transition: 0.25s ease-in-out;
        }
        
        .home-service .swiper-button-prev:hover {
            color: #75dab4;
        }
        
        .home-service .swiper-button-prev:after {
            display: none;
        }
        
        .home-service .swiper-button-next {
            height: auto;
            position: absolute;
            left: auto;
            top: auto;
            right: 40px;
            bottom: 30px;
            font-family: "Fjalla One", sans-serif;
            color: #fff;
            background: none;
            cursor: pointer;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            transition: 0.25s ease-in-out;
        }
        
        .home-service .swiper-button-next:hover {
            color: #75dab4;
        }
        
        .home-service .swiper-button-next:after {
            display: none;
        }
        
        /* ====================== Responsive Ipad =============================== */
        @media (max-width: 991px) {
            .home-service .carousel-slider .swiper-slide .inner h2 {
                font-size: 7vw;
                line-height: 7vw;
                margin-bottom: 15px;
            }
            
            .home-service .carousel-slider .swiper-slide .inner .service-list {
                font-size: 2vw;
                max-width: 85%;
            }
        }
        
        /* ====================== Responsive Iphone =============================== */
        @media screen and (max-width: 767px) {
            .home-service .carousel-slider .swiper-slide .inner h2 {
                font-size: 12vw;
                line-height: 12vw;
                margin-bottom: 15px;
            }
            
            .home-service .carousel-slider .swiper-slide .inner .service-list {
                font-size: 3.5vw;
                max-width: 90%;
            }
            
            .home-service .swiper-button-prev {
                left: 40px;
            }
            
            .home-service .swiper-button-next {
                right: 40px;
            }
        }

/* // ============================================= */
/* // home-feature */
/* // ============================================= */

.home-feature-section {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Background elements */
.home-feature-bg-element {
    position: absolute;
    background: linear-gradient(135deg, var(--blue-secondary), var(--blue-primary));
    opacity: 0.08;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.home-feature-bg-element-1 {
    width: 120px;
    height: 80px;
    top: 10%;
    left: 5%;
    border-radius: 8px 8px 0 0;
    animation: float 18s infinite ease-in-out;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.home-feature-bg-element-1::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #230fd3;
}

.home-feature-bg-element-1::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 28px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1e39eb;
}

.home-feature-bg-element-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 8%;
    border-radius: 50%;
    animation: float 15s infinite ease-in-out reverse;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.home-feature-bg-element-2 i {
    font-size: 2.5rem;
}

.home-feature-bg-element-3 {
    width: 140px;
    height: 80px;
    top: 60%;
    left: 3%;
    border-radius: 10px;
    animation: float 20s infinite ease-in-out;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.home-feature-bg-element-3::before {
    content: "{ }";
    font-family: monospace;
    font-weight: bold;
    font-size: 2rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-25px) translateX(20px) rotate(5deg);
    }
    50% {
        transform: translateY(15px) translateX(-15px) rotate(-5deg);
    }
    75% {
        transform: translateY(-20px) translateX(-20px) rotate(3deg);
    }
}

.home-feature-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.home-feature-header em {
    display: block;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: blue;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.home-feature-main-heading {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.home-feature-subheading {
    max-width: 700px;
    margin: 20px auto 0;
    color: #666;
    line-height: 1.6;
}

.home-feature-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    gap: 1.5rem;
}

.home-feature-content {
    flex: 1;
    min-width: 0;
    transition: 0.5s;
}

.home-feature-figure {
    position: relative;
    overflow: hidden;
    height: 400px;
    transition: transform 0.3s ease;
}

.home-feature-figure:hover {
    transform: translateY(-10px);
}

.home-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Alternating positions - all in same line but different vertical positions */
.home-feature-content:nth-child(1) .home-feature-figure {
    margin-top: -40px;
}

.home-feature-content:nth-child(2) .home-feature-figure {
    margin-top: 40px;
}

.home-feature-content:nth-child(3) .home-feature-figure {
    margin-top: -40px;
}

.home-feature-content:nth-child(4) .home-feature-figure {
    margin-top: 40px;
}

/* Original bottom-to-top animation */
.home-feature-article {
    position: absolute;
    top: 100%;
    background-color: rgba(1,1,1,0.4);
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: 0.5s;
}

.home-feature-text {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: -100%;
    transition: 0.5s;
    transition-delay: 0.5s;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.home-feature-figure:hover .home-feature-article {
    top: 0%;
}

.home-feature-figure:hover .home-feature-text {
    left: 0;
}

.home-feature-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.home-feature-description {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
}


/* =========================================== */
/* ONLY MOBILE RESPONSIVE CONTENT DISPLAY ADDED */
/* =========================================== */

/* Tablet: Content partially visible */
@media (max-width: 1100px) {
    .home-feature-article {
        top: 70%; /* Show 30% of content by default on tablet */
        background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    }
    
    .home-feature-text {
        left: 0; /* Always show text on tablet */
        transition: none;
    }
    
    .home-feature-figure:hover .home-feature-article {
        top: 0%; /* Full content on hover */
    }
}

/* Mobile: Content fully visible by default */
@media (max-width: 768px) {
    .home-feature-article {
        top: 0% !important; /* Always show full content on mobile */
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    }
    
    .home-feature-text {
        left: 0 !important; /* Always show text on mobile */
        transition: none;
    }
    
    /* Keep hover effect for devices that support hover */
    @media (hover: hover) {
        .home-feature-figure:hover .home-feature-article {
            top: 0%;
        }
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .home-feature-article {
        background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.4));
    }
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
    .home-feature-figure:hover {
        transform: none; /* Disable hover effects on touch devices */
    }
}

/* // ============================================= */
/* // home result */
/* // ============================================= */

      .container {
            display: flex;
            min-height: 100vh;
            padding: 40px;
            gap: 60px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .home-result-heading {
            flex: 1;
            padding: 40px;
            text-align: center;
        }
        
        /* Your original animation with exact color codes */
        .home-result-text {
            font-size: 70px !important;
            color: rgb(30, 104, 165);
        }
        
        .home-result-text-a {
            --animation-timing: 2s;
            font-optical-sizing: auto;
            font-style: normal;
            animation-duration: var(--animation-timing);
            animation-iteration-count: infinite;
            animation-timing-function: cubic-bezier(.5, 0, .5, 1);
            animation-fill-mode: forwards;
            animation-direction: alternate;
            animation-name: changeFont;
            will-change: font-weight, font-variation-settings;
            font-weight: 600;
            font-variation-settings: "wdth" var(--a-width);
            color: rgb(55, 40, 40);
        }
        
        .home-result-text-b {
            --animation-timing: 2s;
            font-family: "Merriweather", serif;
            font-optical-sizing: auto;
            font-style: normal;
            animation-duration: var(--animation-timing);
            animation-iteration-count: infinite;
            animation-timing-function: cubic-bezier(.5, 0, .5, 1);
            animation-fill-mode: forwards;
            animation-direction: alternate;
            animation-name: changeFont;
            will-change: font-weight, font-variation-settings;
            font-weight: var(--b-weight);
            font-variation-settings: "wdth" var(--b-width);
        }
        
        @property --a-width {
            syntax: "<number>";
            inherits: false;
            initial-value: 87;
        }
        
        @property --b-width {
            syntax: "<number>";
            inherits: false;
            initial-value: 112;
        }
        
        @property --a-weight {
            syntax: "<number>";
            inherits: false;
            initial-value: 300;
        }
        
        @property --b-weight {
            syntax: "<number>";
            inherits: false;
            initial-value: 900;
        }
        
        @keyframes changeFont {
            to {
                --a-weight: 900;
                --a-width: 112;
                --b-weight: 300;
                --b-width: 87;
            }
        }
        
        .home-result-description {
            font-size: 1.3rem;
            color: #666666;
            line-height: 1.6;
            margin-bottom: 40px;
        }
        
        .home-result-sections {
            display: flex;
            height: 70vh;
            width: 50%;
            flex: 1;
        }
        
        .home-result-section {
            flex: 1;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .home-result-section:hover {
            flex: 3;
        }
        
        .home-result-title {
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            transform: rotate(-90deg);
            transition: all 0.5s ease;
            position: absolute;
            white-space: nowrap;
        }
        
        .home-result-section:hover .home-result-title {
            transform: rotate(0deg);
            position: relative;
        }
        
        .home-result-content {
            opacity: 0;
            color: white;
            padding: 2rem;
            max-width: 80%;
            transition: all 0.5s ease;
            transform: translateY(20px);
            text-align: center;
        }
        
        .home-result-section:hover .home-result-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        .home-result-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #4fc3f7;
        }
        
        .home-result-content p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .home-result-link {
            color: #a8d8ff;
            text-decoration: none;
            font-weight: bold;
            border-bottom: 2px solid #a8d8ff;
            padding-bottom: 2px;
            transition: all 0.3s;
            display: inline-block;
            margin-top: 1rem;
        }
        
        .home-result-link:hover {
            color: #4fc3f7;
            border-bottom-color: #4fc3f7;
        }
        
        /* Your original background images with exact color codes */
        .home-result-section:nth-child(1) {
            background: linear-gradient(rgba(28, 93, 214, 0.8), rgba(24, 79, 175, 0.8)), 
                       url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
        }
        
        .home-result-section:nth-child(2) {
            background: linear-gradient(rgba(5, 79, 218, 0.8), rgba(24, 81, 180, 0.8)), 
                       url('https://images.unsplash.com/photo-1677442135330-0e84e15cacea?ixlib=rb-4.0.3&auto=format&fit=crop&w=1287&q=80');
            background-size: cover;
            background-position: center;
        }
        
        .home-result-section:nth-child(3) {
            background: linear-gradient(rgba(20, 73, 171, 0.8), rgba(15, 68, 160, 0.8)), 
                       url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=765&q=80');
            background-size: cover;
            background-position: center;
        }
        
        /* Mobile Responsive Design - Horizontal Layout with Auto Slide */
        @media (max-width: 1024px) {
            .container {
                padding: 30px;
                gap: 40px;
            }
            
            .home-result-text {
                font-size: 50px !important;
            }
            .home-result-description {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                padding: 20px;
                gap: 30px;
                min-height: auto;
            }
            
            .home-result-heading {
                padding: 20px 10px;
                text-align: center;
            }
            
            .home-result-text {
                font-size: 40px !important;
            }
            
            .home-result-description {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .home-result-sections {
                width: 100%;
                height: auto;
                flex-direction: row;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none; /* Firefox */
                position: relative;
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                padding: 10px 0;
                margin-top: -40px;
            }
            
            .home-result-sections::-webkit-scrollbar {
                display: none; /* Chrome, Safari, Edge */
            }
            
            .home-result-section {
                flex: 0 0 85%;
                height: 60%;
                min-width: 85%;
                margin: 0 10px;
                scroll-snap-align: center;
                position: relative;
                transition: all 0.3s ease;
                border-radius: 10px;
                overflow: hidden;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                padding: 20px;
                /* Ensure all cards have same dimensions */
                min-height: 380px;
            }
            
            .home-result-section:first-child {
                margin-left: 20px;
            }
            
            .home-result-section:last-child {
                margin-right: 20px;
            }
            
            .home-result-title {
                transform: rotate(0deg);
                position: relative;
                font-size: 1.8rem;
                margin-bottom: 10px;
                text-align: center;
                transition: all 0.3s ease;
                white-space: normal;
                line-height: 1.2;
                width: 100%;
            }
            
            .home-result-content {
                opacity: 1;
                transform: translateY(0);
                padding: 0;
                position: relative;
                background: transparent;
                transition: all 0.3s ease;
                max-width: 100%;
                width: 100%;
            }
            
            .home-result-content p {
                font-size: 1rem;
                margin-bottom: 15px;
            }
            
            /* Mobile active state - same as desktop hover */
            .home-result-section.active {
                flex: 0 0 90%;
                min-width: 90%;
            }
            
            .home-result-section.active .home-result-title {
                transform: rotate(0deg);
                position: relative;
            }
            
            .home-result-section.active .home-result-content {
                opacity: 1;
                transform: translateY(0);
            }
            
            /* Disable hover effects on touch devices */
            .home-result-section:hover {
                flex: 0 0 85%;
            }
            
            .home-result-section:hover .home-result-content {
                opacity: 1;
            }
            
            /* Auto-slide indicators */
            .slide-indicators {
                display: flex;
                justify-content: center;
                margin-top: 20px;
                gap: 10px;
            }
            
            .slide-indicator {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background-color: #ccc;
                cursor: pointer;
                transition: all 0.3s ease;
            }
            
            .slide-indicator.active {
                background-color: #1e68a5;
                transform: scale(1.2);
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 15px;
            }
            
            .home-result-text {
                font-size: 32px !important;
            }
            
            .home-result-section {
                flex: 0 0 90%;
                min-width: 90%;
                min-height: 300px !important;
            }
            
            .home-result-section.active {
                flex: 0 0 95%;
                min-width: 95%;
            }
            
            .home-result-title {
                font-size: 1.6rem;
            }
            
            .home-result-content p {
                font-size: 0.9rem;
            }
            
            .home-result-sections {
                height: 380px;
            }
        }
        
        /* Touch-friendly interaction for mobile */
        @media (hover: none) and (pointer: coarse) {
            .home-result-section {
                flex: 0 0 85% !important;
            }
            
            .home-result-section:hover .home-result-content {
                opacity: 1;
            }
        }

/* // ============================================= */
/* // home advantages */
/* // ============================================= */
.home-advantageb-sections {
    width: 100%;
    height: 60vh;
    background-color: #f5f7ff;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-advantageb-section2 {
    background: linear-gradient(to right, rgba(52, 90, 194, 0.85) 10%, rgba(42, 100, 165, 0.85) 50%, rgba(45, 92, 155, 0.85) 100%), url("./images/home-adavantage-bg-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.home-advantageb-padding_2x {
    padding: 80px 40px;
}

.home-advantageb-cards {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.home-advantageb-flex-content {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
}

.home-advantageb-flex-content figure {
    position: relative;
    margin-bottom: 20px;
}

.home-advantageb-flex-content img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    /* Icon animation properties */
    transition: all 0.5s ease;
    transform-origin: center;
}

/* Icon hover animations */
.home-advantageb-flex-content:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 204, 0, 0.6));
}

/* Individual icon animations */
.home-advantageb-flex-content:nth-child(1):hover img {
    transform: scale(1.1) rotate(-10deg);
    animation: float 2s ease-in-out infinite;
}

.home-advantageb-flex-content:nth-child(2):hover img {
    transform: scale(1.1);
    animation: pulse 1.5s ease-in-out infinite;
}

.home-advantageb-flex-content:nth-child(3):hover img {
    transform: scale(1.1);
    animation: shake 0.5s ease-in-out;
}

.home-advantageb-flex-content:nth-child(4):hover img {
    transform: scale(1.1);
    animation: bounce 1s ease-in-out;
}

/* Animation keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1.1) rotate(-10deg); }
    50% { transform: translateY(-10px) scale(1.1) rotate(-10deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) scale(1.1); }
    25% { transform: translateX(-5px) scale(1.1); }
    75% { transform: translateX(5px) scale(1.1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) scale(1.1); }
    40% { transform: translateY(-10px) scale(1.1); }
    60% { transform: translateY(-5px) scale(1.1); }
}

.home-advantageb-title {
    font-size: 20px !important;
    margin-bottom: 15px;
    font-weight: 900;
    color: white;
}

.home-advantageb-title small {
    font-size: 29px;
    color: white;
}

.home-advantageb-title em {
    color: var(--accent);
    font-style: normal;
    font-weight: 700;
}

.home-advantageb-section2 p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 16px;
    color: white;
}

/* White Dot Arrows */
.home-advantageb-dot-arrow {
    position: absolute;
    top: 40px;
    height: 2px;
    background: var(--white);
    z-index: 1;
}

.home-advantageb-dot-arrow::before {
    content: '';
    position: absolute;
    right: -6px;
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.home-advantageb-dot-arrow::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid var(--white);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.home-advantageb-dot-1 {
    left: 25%;
    width: 25%;
}

.home-advantageb-dot-2 {
    left: 50%;
    width: 25%;
}

.home-advantageb-dot-3 {
    left: 75%;
    width: 25%;
}

/* Tablet and Mobile Responsive Design */
@media (max-width: 1024px) {
    .home-advantageb-sections {
        height: auto;
        min-height: auto;
    }
    
    .home-advantageb-cards {
        flex-wrap: wrap;
    }
    
    .home-advantageb-flex-content {
        flex: 0 0 50%;
        margin-bottom: 40px;
        padding: 20px 15px;
    }
    
    .home-advantageb-dot-arrow {
        display: none;
    }
    
    /* Mobile-specific icon animations */
    .home-advantageb-flex-content:hover img {
        transform: scale(1.05);
        animation: none;
    }
    
    .home-advantageb-flex-content:nth-child(1):hover img {
        animation: mobile-float 2s ease-in-out infinite;
    }
    
    .home-advantageb-flex-content:nth-child(2):hover img {
        animation: mobile-pulse 1.5s ease-in-out infinite;
    }
}

/* Mobile-specific animation keyframes */
@keyframes mobile-float {
    0%, 100% { transform: translateY(0) scale(1.05); }
    50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes mobile-pulse {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.08); }
}

@media (max-width: 768px) {
    .home-advantageb-padding_2x {
        padding: 60px 20px;
    }
    
    .home-advantageb-flex-content {
        flex: 0 0 50%;
        padding: 20px 10px;
    }
    
    .home-advantageb-flex-content img {
        width: 60px;
        height: 60px;
    }
    
    .home-advantageb-title small {
        font-size: 24px;
    }
    
    .home-advantageb-section2 p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .home-advantageb-padding_2x {
        padding: 40px 15px;
    }
    
    .home-advantageb-flex-content {
        flex: 0 0 50%;
        padding: 15px 5px;
    }
    
    .home-advantageb-flex-content img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .home-advantageb-title small {
        font-size: 20px;
    }
    
    .home-advantageb-section2 p {
        font-size: 13px;
    }
    
    /* Simplified animations for very small screens */
    .home-advantageb-flex-content:hover img {
        transform: scale(1.03);
        animation: none !important;
    }
}
/* ============================================= */
/* Mobile Responsive Fixes - No Model Changes */
/* ============================================= */

/* Home Image Section - Mobile Fix */
@media (max-width: 768px) {
    .home-image {
        height: 70vh;
        background-size: cover;
        background-position: center;
        margin-top: 0 !important;
    }
    
    .home-image-content {
        padding: 0 20px;
    }
    
    .home-image-title {
        font-size: 2rem;
    }
    
    .home-image-subtitle {
        font-size: 1rem;
    }
    
    .home-image-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .home-image-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* About Section - Mobile Fix */
@media (max-width: 768px) {
    .home-main-sub-headding {
        height: auto;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col-lg-5, .col-lg-7 {
        width: 100%;
    }
    
    .home-about-images {
        width: 100% !important;
        min-width: auto !important;
        margin: 20px auto !important;
        margin-left: 0 !important;
    }
    
    .sub-heading-text {
        font-size: 2.5rem !important;
        margin-left: 0 !important;
        text-align: center;
    }
    
    .home-about-description {
        text-align: left;
        padding: 0 10px;
    }
    
    .home-about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .home-about-stat-item {
        flex: 0 0 calc(50% - 20px);
        margin-left: 0 !important;
    }
    
    .home-about-stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .home-about-image-large {
        height: 250px !important;
    }
    
    .home-about-image-small {
        height: 180px !important;
        right: -10px !important;
        bottom: -20px !important;
    }
    
    .sub-heading-text {
        font-size: 2rem !important;
    }
    
    .home-about-stat-item {
        flex: 0 0 100%;
    }
}

/* Service Section - Mobile Fix */
@media (max-width: 768px) {
    .home-service {
        height: 80vh;
    }
    
    .home-service .carousel-slider .swiper-slide .inner h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .home-service .carousel-slider .swiper-slide .inner .service-list {
        font-size: 14px;
        max-width: 95%;
    }
    
    .home-service .slide-progress {
        width: 180px;
        margin-left: -90px;
        bottom: 20px;
    }
    
    .home-service .swiper-button-prev {
        left: 20px;
        right: auto;
    }
    
    .home-service .swiper-button-next {
        right: 20px;
    }
}

/* Feature Section - Mobile Fix */
@media (max-width: 1100px) {
    .home-feature-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    
    .home-feature-content {
        flex: 0 1 calc(50% - 2rem);
        min-width: 280px;
    }
    
    .home-feature-content .home-feature-figure {
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .home-feature-section {
        padding: 2rem 1rem;
    }
    
    .home-feature-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .home-feature-content {
        width: 100%;
    }
    
    .home-feature-figure {
        height: 300px;
    }
    
    /* Keep original hover effects but make them work on mobile */
    .home-feature-figure:hover .home-feature-article {
        top: 0%;
    }
    
    .home-feature-figure:hover .home-feature-text {
        left: 0;
    }
}

@media (max-width: 480px) {
    .home-feature-figure {
        height: 250px;
    }
}

/* Result Section - Mobile Fix */
/* ============================================= */
/* Result Section - Pure Responsive Fix (No Model Changes) */
/* ============================================= */

/* ============================================= */
/* Tablet Optimizations */
/* ============================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .home-about-images {
        min-width: 300px !important;
    }
    
    .home-service .carousel-slider .swiper-slide .inner h2 {
        font-size: 3.5vw;
    }
    
    .home-service .carousel-slider .swiper-slide .inner .service-list {
        font-size: 1.8vw;
    }
}

/* ============================================= */
/* Prevent Horizontal Scrolling */
/* ============================================= */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* ============================================= */
/* Touch Device Improvements */
/* ============================================= */
@media (max-width: 768px) {
    .home-image-button,
    .home-result-link,
    .home-service .carousel-slider .swiper-slide .inner a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============================================= */
/* Landscape Mode Fixes */
/* ============================================= */
@media (max-width: 768px) and (orientation: landscape) {
    .home-image {
        height: 100vh;
    }
    
    .home-main-sub-headding {
        height: auto;
        min-height: 100vh;
    }
    
    .home-service {
        height: 100vh;
    }
    
    .home-result-section {
        height: 250px;
    }
}




/* // ============================================= */
/* // about us page*/
/* // ============================================= */
   .about-sec-title {
            position: relative;
            z-index: 1;
            margin-top: -80px;
           
        }

        .about-sec-title .about-title {
            position: relative;
            display: block;
            font-size: 18px;
            line-height: 24px;
            color: #0f79c4;
            font-weight: 500;
           
        }

        .about-sec-title h1 {
            position: relative;
            display: block;
            font-size: 40px;
            line-height: 1.28em;
            color: #222222;
            font-weight: 600;
            padding-bottom: 18px;
        }

        .about-sec-title h1:before {
            position: absolute;
            content: '';
            left: 0px;
            bottom: 0px;
            width: 50px;
            height: 3px;
            background-color: #d1d2d6;
        }

        .about-sec-title .about-text {
            position: relative;
            font-size: 16px;
            line-height: 26px;
            color: #848484;
            font-weight: 400;
            margin-top: 35px;
        }

        .about-sec-title.light h1 {
            color: #ffffff;
        }

        .about-sec-title.text-center h1:before {
            left: 50%;
            margin-left: -25px;
        }

        .about-list-style {
            position: relative;
        }

        .about-list-style li {
            position: relative;
            font-size: 16px;
            line-height: 26px;
            color: #222222;
            font-weight: 400;
            padding-left: 35px;
            margin-bottom: 12px;
            text-decoration: none;
            list-style: none;
        }

        .about-list-style li:before {
            content: "\f058";
            position: absolute;
            left: 0;
            top: 0px;
            display: block;
            font-size: 18px;
            padding: 0px;
            color: #0f79c4;
            font-weight: 600;
            -moz-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1.6;
            font-family: "Font Awesome 5 Free";
        }

        .about-list-style li a:hover {
            color: #44bce2;
        }

        .about-btn-style {
            position: relative;
            display: inline-block;
            font-size: 17px;
            line-height: 30px;
            color: #ffffff;
            padding: 10px 30px;
            font-weight: 600;
            overflow: hidden;
            letter-spacing: 0.02em;
            background-color: #ff2222;
        }

        .about-btn-style:hover {
            background-color: #001e57;
            color: #ffffff;
        }

        .about-section {
            position: relative;
            padding: 120px 0 70px;
        }

        .about-section .about-sec-title {
            margin-bottom: 45px;
        }

        .about-section .about-content-column {
            position: relative;
            margin-top: 30px;
        }

        .about-section .about-content-column .about-inner-column {
            position: relative;
            padding-left: 30px;
        }

        .about-section .about-text {
            margin-bottom: 40px;
            font-size: 16px;
            line-height: 26px;
            color: #848484;
            font-weight: 400;
          
        }

        .about-section .about-list-style {
            margin-bottom: 45px;
        }

      

        .about-section .about-image-column {
            position: relative;
        }

        .about-section .about-image-column .about-text-layer {
            position: absolute;
            right: -110px;
            top: 50%;
            font-size: 325px;
            line-height: 1em;
            color: #ffffff;
            margin-top: -175px;
            font-weight: 500;
        }

        .about-section .about-image-column .about-inner-column {
            position: relative;
            padding-left: 120px;
            padding-bottom: 125px;
        }

        .about-section .about-image-column .about-inner-column:before {
            position: absolute;
            left: -75px;
            top: 65px;
            height: 520px;
            width: 520px;
            background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
            content: "";
        }

        .about-section .about-image-column .about-image-1 {
            position: relative;
           
        }

        .about-section .about-image-column .about-image-2 {
            position: absolute;
            left: 0;
            bottom: 0;
        }

        .about-section .about-image-column .about-image-2 img,
        .about-section .about-image-column .about-image-1 img {
            box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
        }

        .about-section .about-image-column .about-video-link {
            position: absolute;
            left: 70px;
            top: 170px;
        }

       

.about-image-1 img{
border-radius: 50px;

}
.about-image-2 img{
    border-radius: 50px;
}
 @media (max-width: 768px) {
              .about-image-1 img{
              width: 240px;
              height: 300px;
              margin-top: -150px;
             
              }
              .about-image-2 img{
                 width: 200px;
                height: 250px;
                margin-top: -150px;
              }
              .about-inner-column{
                margin-top: 100px;
              }
             .about-section{
               margin-bottom: -49px;
             }
           
        }
        

     

/* about team */
      /* .about-team-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .about-team-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(12, 93, 185, 0.05);
            animation: about-team-float 15s infinite linear;
        }
        
        .about-team-bg-circle-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .about-team-bg-circle-2 {
            width: 200px;
            height: 200px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
            animation-duration: 12s;
        }
        
        .about-team-bg-circle-3 {
            width: 150px;
            height: 150px;
            top: 20%;
            left: 70%;
            animation-delay: 4s;
            animation-duration: 18s;
        }
        
        .about-team-bg-circle-4 {
            width: 250px;
            height: 250px;
            top: 70%;
            left: 10%;
            animation-delay: 1s;
            animation-duration: 20s;
        }
        
        @keyframes about-team-float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 0.3;
            }
            100% {
                transform: translateY(0) rotate(360deg);
                opacity: 0.7;
            }
        }
        
        .about-team {
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 20px;
            position: relative;
            z-index: 1;
            opacity: 0;
            animation: about-team-fade-in 2s ease forwards;
            margin-top: -140px;
        }
        
        @keyframes about-team-fade-in {
            to {
                opacity: 1;
            }
        }
        
        .about-team-heading {
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
        }
        
        .about-team-heading h1 {
            font-size: 2.8rem;
            color: #0c5db9;
            margin-bottom: 20px;
            font-weight: 700;
            opacity: 0;
            transform: translateY(30px);
            animation: about-team-fade-in-up 1s ease 0.5s forwards;
        }
        
        .about-team-heading p {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(30px);
            animation: about-team-fade-in-up 1s ease 0.8s forwards;
        }
        
        @keyframes about-team-fade-in-up {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .about-team-cards {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 20px;
        }
        
        .about-team-card {
            position: relative;
            width: 220px;
            height: 220px;
            background: linear-gradient(135deg, #0c5db9, #0a4a9c);
            padding: 30px;
            border-radius: 50%;
            box-shadow: 0 10px 25px rgba(12, 93, 185, 0.2);
            transition: all 0.6s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: about-team-fade-in-up 0.8s ease forwards;
        }
        
        .about-team-card:nth-child(1) {
            animation-delay: 1.1s;
        }
        
        .about-team-card:nth-child(2) {
            animation-delay: 1.3s;
        }
        
        .about-team-card:nth-child(3) {
            animation-delay: 1.5s;
        }
        
        .about-team-card:hover {
            border-radius: 10px;
            height: 260px;
            background: linear-gradient(135deg, #0a4a9c, #083a7a);
            box-shadow: 0 15px 30px rgba(12, 93, 185, 0.3);
            transform: translateY(-10px);
        }
        
        .about-team-card .about-team-img {
            position: relative;
            width: 100%;
            height: 100%;
            transition: .6s;
            z-index: 99;
        }
        
        .about-team-card:hover .about-team-img {
            transform: translateY(-60px);
        }
        
        .about-team-img img {
            width: 100%;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: .6s;
            border: 4px solid white;
        }
        
        .about-team-card:hover img {
            border-radius: 10px;
            border: 4px solid white;
        }
        
        .about-team-caption {
            text-align: center;
            transform: translateY(-80px);
            opacity: 0;
            transition: .6s;
        }
        
        .about-team-card:hover .about-team-caption {
            opacity: 1;
        }
        
        .about-team-caption h3 {
            font-size: 21px;
            color: white;
            margin-bottom: 5px;
        }
        
        .about-team-caption p {
            font-size: 15px;
            color: #e0e0e0;
            margin: 2px 0 15px 0;
        }
        
        .about-team-caption .about-team-social-links a {
            color: white;
            margin-right: 15px;
            font-size: 18px;
            transition: .6s;
            display: inline-block;
        }
        
        .about-team-social-links a:hover {
            color: #a8d2ff;
            transform: translateY(-3px);
        }
        
        .about-team-pulse {
            display: inline-block;
            animation: about-team-pulse 2s infinite;
        }
        
        @keyframes about-team-pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        @media (max-width: 768px) {
            .about-team-cards {
                gap: 30px;
            }
            
            .about-team-heading h1 {
                font-size: 2.2rem;
            }
            
            .about-team-heading p {
                font-size: 1.1rem;
            }
            
            .about-team-bg-circle {
                display: none;
            }
            .about-image-1{
                width: 100px !important;
            }
            .about-team-bg {
             margin-left: -100px;
            }
             .about-team-bg-circle {
            margin-left: -100px;
           }
           .about-image-column .about-inner-column:before{
            margin-left: -100px;
           }
            
             
        }
        
        @media (max-width: 480px) {
            .about-team-card {
                width: 200px;
                height: 200px;
            }
            
            .about-team-heading h1 {
                font-size: 1.8rem;
            }
            
            .about-team-heading p {
                font-size: 1rem;
            }
           .about-image-1 img {
                width: 270px !important;
                height: 350px;
                margin-left: -50px;
            }
              .about-image-2 img {
               width: 200px;
                height: 250px;
              }
          
        } */



/* service page  */
  /* Your Original Desktop Styles - UNCHANGED */
        :root {
            --service-blue: #0c5db9;
            --service-blue-light: #0c5db9;
            --service-blue-dark: #0c5db9;
            --service-blue-pale: hsl(212, 86%, 95%);
            --varyDarkBlue: hsl(234, 12%, 34%);
            --grayishBlue: hsl(229, 6%, 66%);
            --veryLightGray: hsl(0, 0%, 98%);
            --weight1: 100;
            --weight2: 100;
            --weight3: 100;
        }

        /* Background Elements */
        .service-core-bg-element {
            position: fixed;
            z-index: -1;
            opacity: 0.1;
        }

        .service-core-bg-circle {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--service-blue), var(--service-blue-light));
            filter: blur(40px);
        }

        .service-core-bg-circle-1 {
            top: -150px;
            right: -150px;
        }

        .service-core-bg-circle-2 {
            bottom: -100px;
            left: -100px;
            width: 200px;
            height: 200px;
        }

        .service-core-bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(33, 150, 243, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(33, 150, 243, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -1;
        }

        .service-core-bg-pattern {
            position: fixed;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(33, 150, 243, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .service-core-container {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            min-height: 800px;
        }

        /* Header Styles */
        .service-core-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .service-core-header h1 {
            font-size: 2.7rem;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--service-blue-dark), var(--service-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-core-header p {
            max-width: 600px;
            margin: 0 auto;
            color: var(--grayishBlue);
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 100px;
        }

        /* Subheading Styles */
        .service-core-subheading {
            text-align: left;
            font-size: 1.8rem;
            font-weight: var(--weight3);
            color: var(--service-blue);
            margin: 40px 0 20px 0;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            padding-bottom: 25px;
        }

        .service-core-dots {
            position: absolute;
            bottom: 8px;
            left: 0;
            display: flex;
            gap: 6px;
        }

        .service-core-dot {
            width: 8px;
            height: 8px;
            background: var(--service-blue);
            border-radius: 50%;
            animation: dot-pulse 1.5s ease-in-out infinite;
        }

        .service-core-dot:nth-child(2) {
            animation-delay: 0.3s;
        }

        .service-core-dot:nth-child(3) {
            animation-delay: 0.6s;
        }

        .service-core-dot:nth-child(4) {
            animation-delay: 0.9s;
        }

        .service-core-dot:nth-child(5) {
            animation-delay: 1.2s;
        }

        @keyframes dot-pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.7;
            }
            50% {
                transform: scale(1.3);
                opacity: 1;
            }
        }

        /* Cards Container */
        .service-core-cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: start;
            position: relative;
            min-height: 800px;
        }

        /* Card Styles */
        .service-core-card {
            background: #0f79c4;
            border-radius: 16px;
            padding: 35px 30px;
            height: 300px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(33, 150, 243, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .service-core-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(159, 159, 157, 0.03) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-core-card:hover::before {
            opacity: 1;
        }

        .service-core-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--service-blue), var(--service-blue-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-core-card:hover::after {
            transform: scaleX(1);
        }

        .service-core-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(33, 150, 243, 0.15);
        }

        .service-core-card-number {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 3rem;
            font-weight: var(--weight3);
            color: rgba(33, 150, 243, 0.15);
            z-index: 0;
            transition: all 0.4s ease;
        }

        .service-core-card:hover .service-core-card-number {
            color: white;
            transform: scale(1.1);
        }

        .service-core-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: var(--weight3);
            position: relative;
            z-index: 1;
            color: white;
        }

        .service-core-card p {
            color: white;
            font-size: 13px;
            flex-grow: 1;
            position: relative;
            z-index: 1;
            line-height: 1.7;
        }

        .service-core-card-icon {
            align-self: flex-start;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--service-blue), var(--service-blue-light));
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
            box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
        }

        .service-core-card:hover .service-core-card-icon {
            transform: translateY(-5px) rotate(5deg);
            box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
        }

        .service-core-card-icon svg {
            width: 28px;
            height: 28px;
            fill: white;
            transition: all 0.4s ease;
        }

        .service-core-card:hover .service-core-card-icon svg {
            transform: scale(1.1);
        }

        /* ORIGINAL STAGGERED LAYOUT POSITIONING */
        .service-core-container:first-of-type .service-core-cards-container {
            grid-template-rows: auto auto;
            min-height: 600px;
        }

        .service-core-container:first-of-type .service-core-card:nth-child(1) {
            grid-column: 1;
            grid-row: 1;
            align-self: start;
        }

        .service-core-container:first-of-type .service-core-card:nth-child(2) {
            grid-column: 2;
            grid-row: 1;
            align-self: center;
            margin-top: 50px;
        }

        .service-core-container:first-of-type .service-core-card:nth-child(3) {
            grid-column: 3;
            grid-row: 1;
            align-self: end;
            margin-top: 100px;
        }

        .service-core-container:first-of-type .service-core-card:nth-child(4) {
            grid-column: 1;
            grid-row: 2;
            align-self: end;
            margin-top: -100px;
        }

        .service-core-container:first-of-type .service-core-card:nth-child(5) {
            grid-column: 2;
            grid-row: 2;
            align-self: center;
            margin-top: -50px;
        }

        .service-core-container:first-of-type .service-core-card:nth-child(6) {
            grid-column: 3;
            grid-row: 2;
            align-self: start;
        }

        .service-core-container:nth-of-type(2) .service-core-card:nth-child(1) {
            grid-column: 1;
            grid-row: 1;
            margin-top: 0;
        }

        .service-core-container:nth-of-type(2) .service-core-card:nth-child(2) {
            grid-column: 2;
            grid-row: 1;
            margin-top: 100px;
        }

        .service-core-container:nth-of-type(2) .service-core-card:nth-child(3) {
            grid-column: 3;
            grid-row: 1;
            margin-top: 200px;
        }

        .service-core-container:nth-of-type(2) .service-core-card:nth-child(4) {
            grid-column: 1;
            grid-row: 2;
            margin-top: -295px;
        }

        .service-core-container:nth-of-type(2) .service-core-card:nth-child(5) {
            grid-column: 3;
            grid-row: 2;
            margin-top: -200px;
            margin-left: -400px;
            width: 390px;
        }

        .service-core-container:nth-of-type(3) .service-core-card:nth-child(1) {
            grid-column: 1;
            grid-row: 1;
            margin-top: 0;
        }

        .service-core-container:nth-of-type(3) .service-core-card:nth-child(2) {
            grid-column: 2;
            grid-row: 1;
            margin-top: 100px;
        }

        .service-core-container:nth-of-type(3) .service-core-card:nth-child(3) {
            grid-column: 3;
            grid-row: 1;
            margin-top: 200px;
        }

        .service-core-container:nth-of-type(3) .service-core-card:nth-child(4) {
            grid-column: 1;
            grid-row: 2;
            margin-top: -295px;
        }

        .service-core-container:nth-of-type(3) .service-core-card:nth-child(5) {
            grid-column: 3;
            grid-row: 2;
            margin-top: -200px;
            margin-left: -400px;
            width: 390px;
        }

        .service-core-container:nth-of-type(4) .service-core-card:nth-child(1) {
            grid-column: 1;
            grid-row: 1;
            margin-top: 0;
        }

        .service-core-container:nth-of-type(4) .service-core-card:nth-child(2) {
            grid-column: 2;
            grid-row: 1;
            margin-top: 100px;
        }

        .service-core-container:nth-of-type(4) .service-core-card:nth-child(3) {
            grid-column: 3;
            grid-row: 1;
            margin-top: 200px;
        }

        .service-core-container:nth-of-type(4) .service-core-card:nth-child(4) {
            grid-column: 1;
            grid-row: 2;
            margin-top: -295px;
        }

        .service-core-container:nth-of-type(4) .service-core-card:nth-child(5) {
            grid-column: 3;
            grid-row: 2;
            margin-top: -200px;
            margin-left: -400px;
            width: 390px;
        }

        /* Section spacing */
        .service-core-container:nth-of-type(2),
        .service-core-container:nth-of-type(3),
        .service-core-container:nth-of-type(4) {
            margin-top: 100px;
        }

        /* Floating particles */
        .service-core-particle {
            position: fixed;
            background: rgba(33, 150, 243, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .service-core-particle-1 {
            width: 20px;
            height: 20px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .service-core-particle-2 {
            width: 15px;
            height: 15px;
            top: 20%;
            right: 10%;
            animation-delay: 1s;
        }

        .service-core-particle-3 {
            width: 25px;
            height: 25px;
            bottom: 15%;
            left: 15%;
            animation-delay: 2s;
        }

        .service-core-particle-4 {
            width: 18px;
            height: 18px;
            bottom: 25%;
            right: 5%;
            animation-delay: 3s;
        }

       

            /* Mobile Wheels Styles - Only show on mobile */
        .mobile-container {
            display: none; /* Hidden by default */
        }

        @media (max-width: 768px) {
            /* Hide desktop cards on mobile */
            .service-core-container {
                display: none;
            }
            
            /* Show mobile wheels on mobile */
            .mobile-container {
                display: block;
                max-width: 100%;
                margin: 0 auto;
                padding: 20px;
            }

            .mobile-header {
                text-align: center;
                margin-bottom: 30px;
                padding: 0 15px;
            }

            .mobile-header h2 {
                font-size: 1.8rem;
                margin-bottom: 10px;
                color: rgb(36, 34, 34)!important;
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                margin-top: 50px;
            }

            .mobile-header p {
                font-size: 1rem;
                color: #a0a0c0;
                line-height: 1.5;
            }

            /* Wheels Container */
            .mobile-wheels-container {
                display: flex;
                flex-direction: column;
                gap: 50px;
                margin: 30px 0;
            }

            /* Individual Wheel */
            .mobile-wheel-section {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .mobile-wheel-title {
                font-size: 1.3rem;
                color: #0762bd !important;
                text-align: start;
                margin-bottom: 50px !important;
                
            }

            .mobile-wheel-wrapper {
                position: relative;
                width: 280px;
                height: 280px;
            }

            .mobile-wheel-bg {
                width: 100%;
                height: 100%;
                position: relative;
                border-radius: 50%;
                background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                animation: mobile_spin_wheel 20s linear infinite;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .mobile-center-content {
                text-align: center;
                color: white;
                max-width: 180px;
                z-index: 10;
                padding: 15px;
            }

            .mobile-center-content h3 {
                margin: 0 0 8px 0;
                font-size: 1.1rem;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            }

            .mobile-center-content p {
                margin: 0;
                font-size: 0.2rem;
                line-height: 1.4;
                text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            }

            .mobile-wheel-items {
                width: 280px;
                height: 280px;
                margin: 0 auto;
                display: block;
                list-style: none;
                padding: 0;
                position: absolute;
                top: 0;
                left: 0;
                animation: mobile_spin_wheel 20s linear infinite;
            }

            .mobile-wheel-item {
                background-color: white;
                width: 50px;
                height: 50px;
                text-align: center;
                display: block;
                position: absolute;
                top: 0px;
                left: 0px;
                border-radius: 8px;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                cursor: pointer;
                transition: all 0.3s ease;
            }

            /* First Wheel - 6 Items */
            .mobile-wheel-section:nth-child(1) .mobile-wheel-item {
                transform-origin: 140px 140px;
            }

            .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(1) {
                transform: rotateZ(0deg);
            }

            .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(2) {
                transform: rotateZ(120deg);
            }

            .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(3) {
                transform: rotateZ(130deg);
            }

            .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(4) {
                transform: rotateZ(190deg);
            }

            .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(5) {
                transform: rotateZ(260deg);
            }

            .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(6) {
                transform: rotateZ(370deg);
            }

            /* Other Wheels - 5 Items */
            .mobile-wheel-section:nth-child(2) .mobile-wheel-item,
            .mobile-wheel-section:nth-child(3) .mobile-wheel-item,
            .mobile-wheel-section:nth-child(4) .mobile-wheel-item {
                transform-origin: 140px 140px;
            }

            .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(1),
            .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(1),
            .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(1) {
                transform: rotateZ(0deg);
            }

            .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(2),
            .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(2),
            .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(2) {
                transform: rotateZ(72deg);
            }

            .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(3),
            .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(3),
            .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(3) {
                transform: rotateZ(144deg);
            }

            .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(4),
            .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(4),
            .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(4) {
                transform: rotateZ(216deg);
            }

            .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(5),
            .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(5),
            .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(5) {
                transform: rotateZ(288deg);
            }

            .mobile-wheel-item:hover {
                transform: scale(1.1);
            }

            .mobile-wheel-item span {
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                width: 100%;
                height: 100%;
                line-height: 50px;
                font-weight: bold;
                color: #1e3c72;
                font-size: 0.65rem;
            }

            .mobile-wheel-item div {
                background-color: inherit;
                position: absolute;
                height: 100%;
                width: 100%;
                animation: mobile_spin_inner 20s linear infinite;
                border-radius: 8px;
            }

            /* Controls */
            .mobile-controls {
                display: flex;
                justify-content: center;
                gap: 15px;
                margin: 30px 0 20px 0;
                margin-top: 50px !important;
            }

            .mobile-btn {
                background: white;
                color: #1e3c72;
                border: none;
                padding: 10px 20px;
                border-radius: 30px;
                cursor: pointer;
                font-size: 0.9rem;
                font-weight: bold;
                transition: all 0.3s;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            }

            .mobile-btn:hover {
                background: #f0f0f0;
            }

            .mobile-btn.active {
                background: #ff6b6b;
                color: white;
            }

            .mobile-status {
                margin-top: 15px;
                color: white;
                font-weight: bold;
                font-size: 0.8rem;
                text-align: center;
                margin-bottom: 100px;
                margin-top: 200px;
            }

            /* Animations */
            @keyframes mobile_spin_wheel {
                0% {
                    transform: rotateZ(0deg);
                }
                100% {
                    transform: rotateZ(360deg);
                }
            }

            @keyframes mobile_spin_inner {
                0% {
                    transform: rotateZ(360deg);
                }
                100% {
                    transform: rotateZ(0deg);
                }
            }
        }

        /* Responsive adjustments for desktop cards */
        @media (max-width: 1200px) {
            .service-core-container {
                min-height: auto;
            }
            
            .service-core-cards-container {
                grid-template-columns: repeat(2, 1fr);
                min-height: auto;
            }
            
            .service-core-container .service-core-card {
                grid-column: auto !important;
                grid-row: auto !important;
                margin-top: 0 !important;
                margin-left: 0 !important;
                width: auto !important;
            }
        }

        @media (max-width: 768px) {
            .service-core-header h1 {
                font-size: 2rem;
            }
            
            .service-core-cards-container {
                grid-template-columns: 1fr;
            }
            
            .service-core-card {
                height: auto;
                min-height: 240px;
            }
            
            .service-core-container {
                padding: 60px 15px;
                min-height: auto;
            }
        }



/*  */

  .mobile-container {
    max-width: 100%;
    margin: 0 auto;
}

.mobile-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
}

.mobile-header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #008cff, #e52e71);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 20px;
}

.mobile-header p {
    font-size: 1rem;
    color: #a0a0c0;
    line-height: 1.5;
}

/* Wheels Container */
.mobile-wheels-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 30px 0;
}

/* Individual Wheel */
.mobile-wheel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mobile-wheel-title {
    font-size: 1.3rem;
    color: #0762bd;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.mobile-wheel-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.mobile-wheel-bg {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    /* Add rotation to the center circle */
    animation: mobile_spin_wheel 20s linear infinite;
}

.mobile-center-content {
    text-align: center;
    color: white;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    /* Counter-rotate the content to keep it upright */
    animation: mobile_spin_wheel_reverse 20s linear infinite;
}

.mobile-center-content h3 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.mobile-center-content p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.mobile-wheel-items {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    display: block;
    list-style: none;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    /* No rotation on the container */
}

.mobile-wheel-item {
    background-color: white;
    width: 60px;
    height: 60px;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    /* No rotation on individual items */
}

.mobile-wheel-item:hover {
    transform: scale(1.1);
}

.mobile-wheel-item.active {
    background-color: #051b48;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(8, 6, 130, 0.7);
}

.mobile-wheel-item.active span {
    color: white;
}

.mobile-wheel-item div {
    background-color: inherit;
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-wheel-item span {
    display: block;
    font-weight: bold;
    color: #1e3c72;
    font-size: 0.7rem;
    transition: color 0.3s ease;
}

/* Core IT Services Wheel - 6 Items */
.mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(1) {
    transform: translate(0px, -130px);
}
.mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(2) {
    transform: translate(112px, -65px);
}
.mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(3) {
    transform: translate(112px, 65px);
}
.mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(4) {
    transform: translate(0px, 130px);
}
.mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(5) {
    transform: translate(-112px, 65px);
}
.mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(6) {
    transform: translate(-112px, -65px);
}

/* Digital & Emerging Tech Wheel - 5 Items */
.mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(1) {
    transform: translate(0px, -130px);
}
.mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(2) {
    transform: translate(123px, -40px);
}
.mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(3) {
    transform: translate(76px, 105px);
}
.mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(4) {
    transform: translate(-76px, 105px);
}
.mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(5) {
    transform: translate(-123px, -40px);
}

/* Managed IT Services Wheel - 5 Items */
.mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(1) {
    transform: translate(0px, -130px);
}
.mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(2) {
    transform: translate(123px, -40px);
}
.mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(3) {
    transform: translate(76px, 105px);
}
.mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(4) {
    transform: translate(-76px, 105px);
}
.mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(5) {
    transform: translate(-123px, -40px);
}

/* Web & Digital Presence Wheel - 5 Items */
.mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(1) {
    transform: translate(0px, -130px);
}
.mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(2) {
    transform: translate(123px, -40px);
}
.mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(3) {
    transform: translate(76px, 105px);
}
.mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(4) {
    transform: translate(-76px, 105px);
}
.mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(5) {
    transform: translate(-123px, -40px);
}

/* Status Indicator */
.wheel-status {
    margin-top: 10px;
    color: #a0a0c0;
    font-size: 0.8rem;
    text-align: center;
    height: 20px;
}

/* Animations */
@keyframes mobile_spin_wheel {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes mobile_spin_wheel_reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/* Content Display Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.mobile-center-content.updated {
    animation: fadeIn 0.5s ease;
}

/* Hover effects to pause rotation */
.mobile-wheel-wrapper:hover .mobile-wheel-bg {
    animation-play-state: paused;
}

.mobile-wheel-wrapper:hover .mobile-center-content {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-wheel-wrapper {
        width: 250px;
        height: 250px;
        margin-bottom: 50px;
    }
    
    .mobile-wheel-bg {
        width: 250px;
        height: 250px;
    }
    
    .mobile-wheel-items {
        width: 250px;
        height: 250px;
    }
    
    .mobile-wheel-item {
        width: 55px;
        height: 55px;
        margin-top: -27.5px;
        margin-left: -27.5px;
    }
    
    .mobile-wheel-item span {
        font-size: 0.65rem;
    }
    
    .mobile-center-content {
        width: 160px;
        height: 160px;
    }
    
    .mobile-center-content h3 {
        font-size: 0.9rem;
    }
    
    .mobile-center-content p {
        font-size: 0.7rem;
    }
    
    .mobile-wheel-title {
        font-size: 1.1rem;
    }
    
    /* Adjust positioning for smaller screens */
    .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(1) {
        transform: translate(0px, -116px);
    }
    .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(2) {
        transform: translate(100px, -58px);
    }
    .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(3) {
        transform: translate(100px, 58px);
    }
    .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(4) {
        transform: translate(0px, 116px);
    }
    .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(5) {
        transform: translate(-100px, 58px);
    }
    .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(6) {
        transform: translate(-100px, -58px);
    }

    .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(1),
    .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(1),
    .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(1) {
        transform: translate(0px, -116px);
    }
    .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(2),
    .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(2),
    .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(2) {
        transform: translate(110px, -36px);
    }
    .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(3),
    .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(3),
    .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(3) {
        transform: translate(68px, 94px);
    }
    .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(4),
    .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(4),
    .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(4) {
        transform: translate(-68px, 94px);
    }
    .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(5),
    .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(5),
    .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(5) {
        transform: translate(-110px, -36px);
    }
}

@media (max-width: 350px) {
    .mobile-wheel-wrapper {
        width: 220px;
        height: 220px;
        margin-bottom: 100px;
    }
    
    .mobile-wheel-bg {
        width: 220px;
        height: 220px;
    }
    
    .mobile-wheel-items {
        width: 220px;
        height: 220px;
    }
    
    .mobile-wheel-item {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        margin-left: -25px;
    }
    
    .mobile-wheel-item span {
        font-size: 0.6rem;
    }
    
    .mobile-center-content {
        width: 140px;
        height: 140px;
    }
    
    .mobile-center-content h3 {
        font-size: 0.85rem;
    }
    
    .mobile-center-content p {
        font-size: 0.65rem;
    }
    
    /* Adjust positioning for even smaller screens */
    .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(1) {
        transform: translate(0px, -102px);
    }
    .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(2) {
        transform: translate(88px, -51px);
    }
    .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(3) {
        transform: translate(88px, 51px);
    }
    .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(4) {
        transform: translate(0px, 102px);
    }
    .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(5) {
        transform: translate(-88px, 51px);
    }
    .mobile-wheel-section:nth-child(1) .mobile-wheel-item:nth-child(6) {
        transform: translate(-88px, -51px);
    }

    .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(1),
    .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(1),
    .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(1) {
        transform: translate(0px, -102px);
    }
    .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(2),
    .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(2),
    .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(2) {
        transform: translate(97px, -32px);
    }
    .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(3),
    .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(3),
    .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(3) {
        transform: translate(60px, 83px);
    }
    .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(4),
    .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(4),
    .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(4) {
        transform: translate(-60px, 83px);
    }
    .mobile-wheel-section:nth-child(2) .mobile-wheel-item:nth-child(5),
    .mobile-wheel-section:nth-child(3) .mobile-wheel-item:nth-child(5),
    .mobile-wheel-section:nth-child(4) .mobile-wheel-item:nth-child(5) {
        transform: translate(-97px, -32px);
    }
}
/* case studies */

.case-studies-section {
    margin-top: 70px;
    padding: 20px 0;
}
.case-studies-main-headding{
    text-align: center;
    margin-top: 100px;
   
}
.case-studies-main-headding h1 {
    font-weight: 700;
}
.CaseStudiesContainer {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
}

.CaseStudiesSidebar {
    width: 250px;
    background: #f8f9fa;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.CaseStudiesLogo {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.CaseStudiesLogo h2 {
    color: #0f79c4;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.CaseStudiesLogo p {
    color: #666;
    font-size: 0.85rem;
}

.CaseStudiesNavTitle {
    color: #0f79c4;
    font-size: 1rem;
    margin: 20px 0 12px 0;
    padding-left: 10px;
    font-weight: 600;
}

.CaseStudiesNavList {
    list-style: none;
    margin-bottom: 25px;
}

.CaseStudiesNavItem {
    margin-bottom: 6px;
}

.CaseStudiesNavButton {
    background: #ffffff;
    border: none;
    color: #333333;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    font-size: 0.9rem;
}

.CaseStudiesNavButton:hover {
    background: #e9f5fe;
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(15, 121, 196, 0.1);
}

.CaseStudiesNavButton.active {
    background: #0f79c4;
    color: #ffffff;
}

.CaseStudiesNavIcon {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.CaseStudiesMainContent {
    flex: 1;
}

.CaseStudiesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transition: all 0.3s ease;
}

/* All category - smaller images */
.CaseStudiesGrid.all-view .CaseStudiesTile {
    height: 180px;
}

/* Category view - larger images */
.CaseStudiesGrid.category-view .CaseStudiesTile {
    height: 220px;
}

.CaseStudiesTile {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.CaseStudiesTile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.CaseStudiesTileImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.CaseStudiesTileDetails {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
    color: white;
}

.CaseStudiesTile:hover .CaseStudiesTileDetails {
    opacity: 1;
}

.CaseStudiesTileTitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.CaseStudiesTileDescription {
    font-size: 13px;
    color: #f0f0f0;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.CaseStudiesReadMore {
    font-size: 12px;
    color: #0f79c4;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.CaseStudiesReadMore:hover {
    color: #ffffff;
    text-decoration: underline;
}

.CaseStudiesEmptyState {
    text-align: center;
    padding: 50px 20px;
    color: #666;
    display: none;
}

.CaseStudiesEmptyState i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0f79c4;
}

.CaseStudiesEmptyState h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Modal Styles */
.CaseStudiesModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 80px;
    margin-bottom: 80px !important;
}

.CaseStudiesModalContent {
    background-color: white;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
    margin-bottom: 100px;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.CaseStudiesModalHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #0f79c4;
    color: white;
}

.CaseStudiesModalTitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.CaseStudiesModalClose {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.CaseStudiesModalClose:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.CaseStudiesModalBody {
    padding: 25px;
    display: flex;
    gap: 25px;
}

.CaseStudiesModalContentArea {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.CaseStudiesModalImage {
    width: 45%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px !important;
    padding: 20px;
}

.CaseStudiesModalDescription {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    
}

.CaseStudiesModalDetails {
    background-color: #f8f9fa;
    padding: 18px;
    border-radius: 8px;
    width: 750px;
}

.CaseStudiesModalDetailItem {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.CaseStudiesModalDetailIcon {
    color: #0f79c4;
    font-size: 1rem;
    margin-top: 2px;
    width: 18px;
}

.CaseStudiesModalDetailLabel {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.CaseStudiesModalDetailValue {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .CaseStudiesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .CaseStudiesSidebar {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .CaseStudiesContainer {
        flex-direction: column;
    }
    
    .CaseStudiesSidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
    
    .CaseStudiesGrid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Modal Styles */
    .CaseStudiesModalBody {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .CaseStudiesModalContentArea {
        width: 100%;
        order: 2;
    }
    
    .CaseStudiesModalImage {
        width: 100%;
        height: 200px;
        order: 1;
    }
    
    .CaseStudiesModalHeader {
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .CaseStudiesContainer {
        padding: 15px;
    }
    
    .CaseStudiesGrid.all-view .CaseStudiesTile {
        height: 160px;
    }
    
    .CaseStudiesGrid.category-view .CaseStudiesTile {
        height: 200px;
    }
    
    .CaseStudiesModal {
        padding: 10px;
        margin-top: 60px;
    }
    
    .CaseStudiesModalContent {
        margin: 20px auto;
    }
    
    .CaseStudiesModalBody {
        padding: 15px;
    }
    
    .CaseStudiesModalImage {
        height: 180px;
    }
    
    .CaseStudiesTileTitle {
        font-size: 14px;
    }
    
    .CaseStudiesTileDescription {
        font-size: 12px;
    }
    
    .CaseStudiesReadMore {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .CaseStudiesModalHeader {
        padding: 12px 15px;
    }
    
    .CaseStudiesModalTitle {
        font-size: 1.1rem;
    }
    
    .CaseStudiesModalBody {
        padding: 12px;
    }
    
    .CaseStudiesModalImage {
        height: 150px;
    }
    
    .CaseStudiesModalDetails {
        padding: 15px;
    }
}

/* contact */

        /* Main Header Styles */
        .contact-header-container {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .contact-main-heading {
            font-size: 2.5rem !important;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 1rem;
            margin-top: 100px;
        }
        
        .contact-main-subheading {
            font-size: 1.25rem;
            color: #2d3748;
            max-width: 600px;
            margin: 0 auto;
            margin-bottom: 60px;
        }
        
        .contact-container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            display: grid;
            gap: 0;
            grid-template-columns: 1fr;
            overflow: hidden;
            position: relative;
            margin-bottom: 100px;
        }
        
        @media (min-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr 1fr;
                padding-left: 0;
                padding-right: 0;
            }
        }
        
        @media (min-width: 1024px) {
            .contact-container {
                padding-left: 0;
                padding-right: 0;
            }
            
            .contact-main-heading {
                font-size: 3.5rem;
            }
        }
        
        @media (min-width: 1280px) {
            .contact-container {
                padding-left: 0;
                padding-right: 0;
            }
        }
        
        .contact-grid {
            display: grid;
            gap: 0;
        }
        
        .contact-gap {
            gap: 0;
        }
        
        .contact-padding-inner {
            padding: 0;
        }
        
        .contact-margin {
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-rounded {
            border-radius: 0.5rem;
        }
        
        .contact-shadow {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        /* Left Column - White Background */
        .contact-left-column {
            background-color: #ffffff;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }
        
        /* Decorative Shape for Left Column */
        .contact-left-column::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #4f6cef 0%, #0718af 100%);
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }
        
        .contact-left-column::after {
            content: '';
            position: absolute;
            bottom: -80px;
            right: 30px;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #3ebcdf 0%, #032fb5 100%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            opacity: 0.1;
            z-index: 0;
        }
        
        .contact-flex {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }
        
        .contact-justify {
            justify-content: space-between;
        }
        
        .contact-heading {
            font-size: 2.25rem;
            line-height: 2.5rem;
            font-weight: 700;
            line-height: 1.25;
            color: #0557b5; 
        }
        
        @media (min-width: 1024px) {
            .contact-heading {
                font-size: 3rem;
                line-height: 1;
            }
        }
        
        .contact-leading {
            line-height: 1.25;
        }
        
        .contact-description {
            color: #4a5568;
            margin-top: 2rem;
            margin-bottom: 2.5rem;
        }
        
        .contact-margin-top {
            margin-top: 2rem;
        }
        
        /* Location Boxes Container */
        .location-boxes-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        @media (max-width: 768px) {
            .location-boxes-container {
                grid-template-columns: 1fr;
            }
        }
        
        /* Location Box Styles */
        .location-box {
            background: #f8fafc;
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .location-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-color: #667eea;
        }
        
        .location-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #667eea, #1c48b9);
        }
        
        .location-header {
            margin-bottom: 1.2rem;
        }
        
        .location-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a202c;
            position: relative;
            padding-bottom: 8px;
        }
        
        .location-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, #667eea, #1c48b9);
            border-radius: 2px;
        }
        
        .location-details {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .location-detail-item {
            display: flex;
            align-items: flex-start;
        }
        
        .location-detail-icon {
            color: #667eea;
            margin-right: 10px;
            font-size: 1rem;
            width: 20px;
            text-align: center;
            margin-top: 2px;
        }
        
        .location-detail-text {
            color: #4a5568;
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        .location-detail-text a {
            color: #4a5568;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .location-detail-text a:hover {
            color: #667eea;
            text-decoration: underline;
        }
        
        .contact-image-container {
            margin-top: 3rem;
            text-align: center;
        }
        
        .contact-image img {
            height: 250px !important;
            width: 100% !important;
            max-width: 500px;
            object-fit: contain;
        }
        
        /* Right Column - Blue Background */
        .contact-right-column {
            background: linear-gradient(135deg, #667eea 0%, #1c48b9 100%);
            padding: 3rem 2rem;
            position: relative;
        }
        
        .contact-label {
            text-transform: uppercase;
            font-size: 0.875rem;
            color: #ffffff;
            font-weight: 700;
        }
        
        .contact-input {
            width: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            color: #2d3748;
            margin-top: 0.5rem;
            padding: 0.75rem;
            border-radius: 0.5rem;
            outline: none;
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            transition: box-shadow 0.2s;
            border: none;
        }
        
        .contact-input:focus {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
        }
        
        .contact-field-spacing {
            margin-top: 2rem;
        }
        
        .contact-textarea {
            width: 100%;
            height: 8rem;
            background-color: rgba(255, 255, 255, 0.9);
            color: #2d3748;
            margin-top: 0.5rem;
            padding: 0.75rem;
            border-radius: 0.5rem;
            outline: none;
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            transition: box-shadow 0.2s;
            resize: vertical;
            border: none;
            font-family: inherit;
        }
        
        .contact-textarea:focus {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
        }
        
        .contact-button {
            text-transform: uppercase;
            font-size: 0.875rem;
            font-weight: 700;
            letter-spacing: 0.025em;
            background-color: #ffffff;
            color: #667eea;
            padding: 0.75rem;
            border-radius: 0.5rem;
            width: 100%;
            outline: none;
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            margin-top: 1.5rem;
        }
        
        .contact-button:hover {
            background-color: #f7fafc;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .contact-button:focus {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
        }
        
        /* Success message styles */
        .contact-success-message {
            display: none;
            background-color: rgba(255, 255, 255, 0.9);
            color: #2d3748;
            padding: 1.5rem;
            border-radius: 0.5rem;
            margin-top: 1rem;
            text-align: center;
        }
        
        .contact-success-message i {
            font-size: 2rem;
            color: #48bb78;
            margin-bottom: 0.5rem;
        }
        
        .contact-success-message h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .contact-success-message p {
            margin: 0;
        }
        
        /* Loading state */
        .contact-button.loading {
            position: relative;
            color: transparent;
        }
        
        .contact-button.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid #667eea;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Error styles */
        .contact-error {
            color: #ff6b6b;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: block;
            min-height: 20px;
        }
        
        .contact-input.error,
        .contact-textarea.error,
        select.error {
            box-shadow: 0 0 0 2px #ff6b6b !important;
        }

        /* Auto-refresh and form styling */
        #countdownTimer {
            background: #f8f9fa;
            padding: 10px 15px;
            border-radius: 5px;
            border-left: 4px solid #007bff;
            margin-top: 15px;
            font-size: 14px;
            color: #666;
        }

        #submitButton.loading {
            opacity: 0.7;
            pointer-events: none;
        }

        #successMessage {
            display: none;
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
            padding: 20px;
            border-radius: 5px;
            text-align: center;
        }

        /* Refresh animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #contactForm {
            animation: fadeInUp 0.6s ease;
        }

        /* Error Styles */
.contact-input.error,
.contact-textarea.error,
.contact-select.error {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2) !important;
}

.contact-error {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* Success Message */
#successMessage {
    display: none;
    text-align: center;
    padding: 20px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    color: #155724;
}

#successMessage i {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 15px;
}

#successMessage h3 {
    color: #155724;
    margin-bottom: 10px;
}

/* Loading state */
#submitButton:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* consultation */


  @keyframes gradient {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* Consultation Container */
        .consultation-container {
            display: flex;
            flex-wrap: wrap;
            min-height: 100vh;
            align-items: center;
            padding: 20px 0;
            margin-top: -80px;
        }
        

.consultation-header h1{
    margin-top: 90px;
    font-weight:700;
}

        .consultation-image {
            flex: 1;
            min-width: 200px;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .consultation-image img {
            max-width: 90%;
         
        }

        .consultation-form-container {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }

        /*form styles*/
        #consultation-msform {
            text-align: center;
            position: relative;
        }

        #consultation-msform fieldset {
            background: white;
            border: 0 none;
            border-radius: 10px;
            box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
            padding: 20px 30px;
            box-sizing: border-box;
            width: 60%;
            margin: 0;

            /*stacking fieldsets above each other*/
            position: relative;
        }

        /*Hide all except first fieldset*/
        #consultation-msform fieldset:not(:first-of-type) {
            display: none;
        }

        /*inputs*/
        #consultation-msform input, #consultation-msform textarea, #consultation-msform select {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            margin-bottom: 10px;
            width: 100%;
            box-sizing: border-box;
            color: #2C3E50;
            font-size: 13px;
        }

        #consultation-msform textarea {
            height: 100px;
            resize: vertical;
        }

        #consultation-msform input:focus, #consultation-msform textarea:focus, #consultation-msform select:focus {
            -moz-box-shadow: none !important;
            -webkit-box-shadow: none !important;
            box-shadow: none !important;
            border: 1px solid rgb(26, 85, 145);
            outline-width: 0;
            transition: All 0.5s ease-in;
            -webkit-transition: All 0.5s ease-in;
            -moz-transition: All 0.5s ease-in;
            -o-transition: All 0.5s ease-in;
        }

        /*buttons*/
        #consultation-msform .consultation-action-button {
            width: 100px;
            background: rgb(21, 126, 231);
            font-weight: bold;
            color: white;
            border: 0 none;
            border-radius: 25px;
            cursor: pointer;
            padding: 10px 5px;
            margin: 10px 5px;
        }

        #consultation-msform .consultation-action-button:hover, #consultation-msform .consultation-action-button:focus {
            box-shadow: 0 0 0 2px white, 0 0 0 3px rgb(21, 126, 231);
        }

        #consultation-msform .consultation-action-button-previous {
            width: 100px;
            background: #C5C5F1;
            font-weight: bold;
            color: white;
            border: 0 none;
            border-radius: 25px;
            cursor: pointer;
            padding: 10px 5px;
            margin: 10px 5px;
        }

        #consultation-msform .consultation-action-button-previous:hover, #consultation-msform .consultation-action-button-previous:focus {
            box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
        }

        /*headings*/
        .consultation-fs-title {
            font-size: 18px;
            text-transform: uppercase;
            color: #2C3E50;
            margin-bottom: 10px;
            letter-spacing: 2px;
            font-weight: bold;
        }

        .consultation-fs-subtitle {
            font-weight: normal;
            font-size: 13px;
            color: #666;
            margin-bottom: 20px;
        }

        /*progressbar*/
        #consultation-progressbar {
            margin-bottom: 30px;
            margin-top: 70px;
            overflow: hidden;
            counter-reset: step;
            margin-left: -80px;
        }

        #consultation-progressbar li {
            list-style-type: none;
            color: black;
            text-transform: uppercase;
            font-size: 9px;
            width: 23%;
            float: left;
            position: relative;
            letter-spacing: 1px;
            
        }

        #consultation-progressbar li:before {
            content: counter(step);
            counter-increment: step;
            width: 24px;
            height: 24px;
            line-height: 26px;
            display: block;
            font-size: 12px;
            color: #333;
            background: rgb(233, 230, 230);
            border-radius: 25px;
            margin: 0 auto 10px auto;
            
            
        }

        /*progressbar connectors*/
        #consultation-progressbar li:after {
            content: '';
            width: 100%;
            height: 2px;
            background: rgb(8, 106, 192);
            position: absolute;
            left: -50%;
            top: 9px;
            z-index: -1; 
            
        }

        #consultation-progressbar li:first-child:after {
            /*connector not needed before the first step*/
            content: none;
        }

        /*marking active/completed steps green*/
        /*The number of the step and the connector before it = green*/
        #consultation-progressbar li.consultation-active:before, #consultation-progressbar li.consultation-active:after {
            background: rgb(21, 126, 231);
            color: white;
        }

        /* Validation styles */
        .consultation-input-error {
            border-color: rgb(21, 126, 231)!important;
            box-shadow: 0 0 0 2px rgba(255, 56, 96, 0.2) !important;
        }

        .consultation-error-message {
            color: rgb(21, 126, 231);
            font-size: 12px;
            text-align: left;
            margin-top: -5px;
            margin-bottom: 10px;
            display: none;
        }

        /* Not relevant to this form */
        .consultation-dme-link {
            margin-top: 30px;
            text-align: center;
        }
        .consultation-dme-link a {
            background: #FFF;
            font-weight: bold;
            color: rgb(21, 126, 231);
            border: 0 none;
            border-radius: 25px;
            cursor: pointer;
            padding: 5px 25px;
            font-size: 12px;
        }

        .consultation-dme-link a:hover, .consultation-dme-link a:focus {
            background: #C5C5F1;
            text-decoration: none;
        }

        /* Top Message Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form Styles */
#consultation-msform input,
#consultation-msform select,
#consultation-msform textarea {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 5px;
}

/* Buttons */
.consultation-next,
.consultation-previous,
.consultation-submit {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px;
}

.consultation-submit {
    background: #007bff;
    color: white;
}

.consultation-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Thank You Message */
.thank-you-message {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


@media (max-width: 880px) {
 .consultation-form-container{
    min-width: 600px;    
 }
  .consultation-image img{
    margin-top: 70px !important;
  }
 #consultation-progressbar li{
    width: 110px;
    margin-left: 20px;
 }
  #consultation-progressbar{
    margin-top: -10px;
  }
 .consultation-image img{
    margin-top: 30px;
 }

}


footer {
    background-color: rgb(0, 0, 0);
    padding: 20px 0;
    text-align: center;
}

footer p {
    color: white;
    margin: 0;
    font-size: 15px;
}

@media (max-width: 880px){
   footer p{
    font-size:13px ;
   } 
}

/* social icon */

 /* Right side icon sidebar styles */
        .right-icon-sidebar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
        }
        
        .right-icon-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        /* Icon item */
        .right-icon-item {
            margin: 10px 0;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 25px 0 0 25px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        /* Icon link */
        .right-icon-link {
            display: block;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            position: relative;
        }
        
        /* Background circle - separate from icon */
        .right-icon-bg {
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }
        
        /* Icon style */
        .right-icon {
            font-size: 24px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            color: #000;
        }
        
        /* Hover effects */
        .right-icon-item:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .right-icon-item:hover .right-icon-bg {
            transform: scale(1.1);
        }
        
        /* Platform specific colors */
        .right-fb .right-icon-bg {
            background-color: #1877F2;

        }
        
        .right-fb .right-icon {
            color: white;
        }
        
        .right-ig .right-icon-bg {
           background: linear-gradient(45deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5);

        }
        
        .right-ig .right-icon {
            color: white;
        }
        
        .right-li .right-icon-bg {
            background:  #0A66C2;
        }
        
        .right-li .right-icon {
            color: white;
        }
        
        .right-tw .right-icon-bg {
            background: black;
        }
        
        .right-tw .right-icon {
            color: white;
        }
        
        /* Click effect */
        .right-icon-link:active .right-icon-bg {
            transform: scale(0.9);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .right-icon-link {
                width: 50px;
                height: 50px;
            }
            
            .right-icon-bg {
                width: 35px;
                height: 35px;
            }
            
            .right-icon {
                font-size: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .right-icon-link {
                width: 45px;
                height: 45px;
            }
            
            .right-icon-bg {
                width: 32px;
                height: 32px;
            }
            
            .right-icon {
                font-size: 18px;
            }
        }















        