   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700&display=swap');
        
        /* Define primary color CSS variables */
        :root {
            --primary-color: #024B8F;
        }
        
        .dark {
            --primary-color: #8685E7;
        }
        
        /* Primary button styling */
        .btn-primary {
            background-color: #024B8F;
            transition: background-color 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #4848B3;
        }
        
        .dark .btn-primary {
            background-color: #8685E7;
        }
        
        .dark .btn-primary:hover {
            background-color: #5D5CDE;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 60px;
            font-size: 16px;
        }
#main-contentt{padding-top: 65px;}
        @media (max-width: 1024px) {
            html { font-size: 15px; }
        }

        @media (max-width: 768px) {
            html { font-size: 14px; }
        }

        @media (max-width: 480px) {
            html { font-size: 13px; }
        }

        body {
            font-family: 'Inter', sans-serif;
			background:aqua;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
        }

        .section-transition {
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .nav-link {
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #024B8F;
            transition: width 0.3s ease;
        }

        .dark .nav-link::after {
            background-color: #8685E7;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
		/* Responsive typography */
        .responsive-heading {
            font-size: clamp(1.5rem, 5vw, 2.5rem);
        }

        .responsive-subheading {
            font-size: clamp(1rem, 3vw, 1.5rem);
        }

        .responsive-text {
            font-size: clamp(0.875rem, 2vw, 1rem);
        }
        
        /* Service card hover effect */
        .service-card {
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .dark .service-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
        }

        /* Team card hover effect */
        .team-card {
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-5px);
        }

        /* Project card hover effect */
        .project-card {
            transition: all 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }
        
        /* Slideshow styles */
        .slideshow-container {
            position: relative;
        }
        
        .mySlides {
            display: none;
            height: 100%;
            transition: opacity 0.5s ease-in-out, transform 0.5s ease;
            opacity: 0;
            transform: scale(0.98);
        }
        
        .mySlides.active {
            display: block;
            opacity: 1;
            transform: scale(1);
        }
        
        .mySlides img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Next & previous buttons */
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            margin-top: -22px;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.3);
        }

        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }

        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.8);
        }

        /* Testimonial animation */
        .testimonial-slide {
            transition: all 0.5s ease;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
        }

        .testimonial-slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 10;
        }
        
        .testimonial-container {
            overflow: hidden;
            position: relative;
        }

        /* Quote icon styling */
        .quote-icon {
            position: absolute;
            font-size: 4rem;
            opacity: 0.1;
            z-index: 1;
        }

        .quote-icon.left {
            top: -20px;
            left: -10px;
        }

        .quote-icon.right {
            bottom: -20px;
            right: -10px;
            transform: rotate(180deg);
        }

        /* News item animation */
        .news-item {
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .news-item.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive typography */
        .responsive-heading {
            font-size: clamp(1.5rem, 5vw, 2.5rem);
        }

        .responsive-subheading {
            font-size: clamp(1rem, 3vw, 1.5rem);
        }

        .responsive-text {
            font-size: clamp(0.875rem, 2vw, 1rem);
        }
        
        /* Mobile menu styles  Modified/
        @media (max-width: 1023px) {
            #menu {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            
            #menu.active {
                max-height: 100vh;
            }
            
            .menu-open {
                padding-top: 150px; /* Adjust this value based on your menu height /
                transition: padding-top 0.5s ease;
            }
        }*/
        
        /* Theme toggle animation */
        #theme-toggle {
            transition: transform 0.3s ease;
        }
        
        #theme-toggle:hover {
            transform: rotate(15deg);
        }


#main-content {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/*////////////2/////////////////*/
        /* Custom CSS /
        .responsive-heading {
            font-size: 2rem;
            line-height: 1.2;
        }
        
        .responsive-subheading {
            font-size: 1.5rem;
            line-height: 1.4;
        }
        
        .responsive-text {
            font-size: 1rem;
            line-height: 1.6;
        }
        
        @media (min-width: 768px) {
            .responsive-heading {
                font-size: 2.5rem;
            }
            
            .responsive-subheading {
                font-size: 1.75rem;
            }
            
            .responsive-text {
                font-size: 1.125rem;
            }
        }
        
        @media (min-width: 1024px) {
            .responsive-heading {
                font-size: 3rem;
            }
        }
        
        /* Slideshow styles */
        .slideshow-container {
            position: relative;
        }
        
        .mySlides {
            display: none;
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .mySlides.active {
            display: block;
        }
        
        .mySlides img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            background-color: rgba(0,0,0,0.3);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s ease;
        }
        
        .prev {
            left: 10px;
        }
        
        .next {
            right: 10px;
        }
        
        .prev:hover, .next:hover {
            background-color: rgba(0,0,0,0.6);
        }
        
        /* Team and service details */
        .team-details, .service-details {
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, opacity 0.5s ease;
        }
        
        .team-details.show, .service-details.show {
            opacity: 1;
            max-height: 1000px;
        }
        
        /* Testimonials */
        .testimonial-container {
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            visibility: hidden;
        }
        
        .testimonial-slide.active {
            opacity: 1;
            transform: translateX(0);
            visibility: visible;
        }
        
        .quote-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.2;
        }
        
        .quote-icon.left {
            top: 10px;
            left: 10px;
        }
        
        .quote-icon.right {
            bottom: 10px;
            right: 10px;
        }
        
        /* Card Animation */
        .card-animate {
            transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
        }
        
        .card-animate:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .image-zoom {
            transition: transform 0.7s ease-in-out;
        }
        
        .card-animate:hover .image-zoom {
            transform: scale(1.1);
        }
        
        .content-loading {

            display: none;
        }
        
        .content-loaded {
            display: block;
        }
        
        .loader {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 200px;
        }
        
        /* Button */
        .btn-primary {
            background-color: #024B8F;
            transition: background-color 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #4A49B1;
        }
        
        /*Service links*/
        .srv-lnk{
            display: inline-block;
        }
        .srv-btn{
            display: inline-block;
            float: right;
            background: #024B8F;
            padding: 5px 10px;
            color: white;
            border-radius: 5px;
        }
        
        /* News Slider Styles */
        .news-slider {
            position: relative;
            overflow: hidden;
        }
        
        .news-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .news-slide {
            flex: 0 0 100%;
            width: 100%;
            padding: 0 1rem;
        }
        
        @media (min-width: 768px) {
            .news-slide {
                flex: 0 0 50%;
                width: 50%;
            }
        }
        
        @media (min-width: 1024px) {
            .news-slide {
                flex: 0 0 33.333%;
                width: 33.333%;
            }
        }
        
        .news-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 0;
            background-color: #5D5CDE;
            transition: width linear;
            z-index: 10;
        }
        
        /* News Carousel Scrollbar Hiding */
        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }
        
        .hide-scrollbar {
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }
        
        /* Active nav link */
        .nav-link.active {
            color: #024B8F;
        }
        
        .dark .nav-link.active {
            color: #7A79E8;
        }
        
        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-on-scroll.animate-left {
            transform: translateX(-40px);
        }
        
        .animate-on-scroll.animate-right {
            transform: translateX(40px);
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translate(0);
        }
        
        /* Counter animation */
        .counter-value {
            font-weight: bold;
            display: inline-block;
            counter-reset: count 0;
        }
        
        .counter-value::after {
            content: counter(count);
            animation: none;
        }
        
        .counter-value.counting::after {
            animation: countup 2s forwards ease-out;
        }
        
        @keyframes countup {
            from {
                counter-increment: count 0;
            }
            to {
                counter-increment: count attr(data-target);
            }
        }
        
        /* Rotating shapes animation */
        .shape {
            position: absolute;
            z-index: -1;
            opacity: 0.5;
        }
        
        .shape-1 {
            top: 5%;
            left: 5%;
            width: 50px;
            height: 50px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            background-color: rgba(93, 92, 222, 0.1);
            animation: morph 8s ease-in-out infinite, spin 15s linear infinite;
        }
        
        .shape-2 {
            bottom: 10%;
            right: 10%;
            width: 80px;
            height: 80px;
            border-radius: 50% 50% 30% 70% / 50% 50% 50% 50%;
            background-color: rgba(93, 92, 222, 0.15);
            animation: morph 9s ease-in-out infinite reverse, spin 20s linear infinite reverse;
        }
        
        .shape-3 {
            top: 50%;
            left: 70%;
            width: 60px;
            height: 60px;
            border-radius: 60% 40% 40% 60% / 60% 30% 70% 40%;
            background-color: rgba(93, 92, 222, 0.12);
            animation: morph 7s ease-in-out infinite, spin 12s linear infinite;
        }
        
        @keyframes morph {
            0% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
            25% {
                border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
            }
            50% {
                border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
            }
            75% {
                border-radius: 67% 33% 47% 53% / 37% 20% 80% 63%;
            }
            100% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            }
        }
        
        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        /* Wavy divider */
        .wave-divider {
            position: relative;
            height: 40px;
            width: 100%;
            overflow: hidden;
        }
        
        .wave {
            position: absolute;
            left: 0;
            width: 200%;
            height: 100%;
            background-repeat: repeat-x;
            animation: wave 10s linear infinite;
        }
        
        .wave-top {
            bottom: 0;
            background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%2387CEEB' opacity='.25' class='shape-fill'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%2387CEEB' opacity='.5' class='shape-fill'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%2387CEEB' class='shape-fill'%3E%3C/path%3E%3C/svg%3E");
        }
          .wave-bot {
            top: 0;
            background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%2387CEEB' opacity='.25' class='shape-fill'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%2387CEEB' opacity='.5' class='shape-fill'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%2387CEEB' class='shape-fill'%3E%3C/path%3E%3C/svg%3E");
			  transform: rotate(180deg);
        }   
        @keyframes wave {
            0% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(-25%);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Parallax effect */
        .parallax {
            position: relative;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            transition: background-position 0.5s ease;
        }
        
        /* Bubble animation */
        .bubble {
            position: absolute;
            border-radius: 50%;
            background: rgba(93, 92, 222, 0.1);
            animation: float-up 15s linear infinite;
            z-index: -1;
        }
        
        @keyframes float-up {
            0% {
                transform: translateY(100vh) scale(0);
            }
            100% {
                transform: translateY(-100px) scale(1.5);
                opacity: 0;
            }
        }
		
/* Flowing Border */
.border-flowing {
    position: relative;
    overflow: hidden;
    border: none;
}

.border-flowing::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(135, 206, 235, 1), transparent 30%);
    animation: rotate 4s linear infinite;
}

.border-flowing::before {
    content: '';
    position: absolute;
    z-index: 10;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white; /* Change to match your background */
    border-radius: inherit;
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}
/* Pulse Border */
.border-pulse {
    position: relative;
    border: 2px solid #87CEEB;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(135, 206, 235, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(135, 206, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(135, 206, 235, 0);
    }
}
		
.animated-border {
            position: relative;
            background: linear-gradient(45deg, #5D5CDE, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7, #DDA0DD, #5D5CDE);
            background-size: 400% 400%;
            animation: gradientShift 4s ease infinite;
            border-radius: 16px;
            padding: 3px;
        }
        
        .animated-border::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #5D5CDE, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7, #DDA0DD, #5D5CDE);
            background-size: 400% 400%;
            animation: gradientShift 4s ease infinite;
            border-radius: 16px;
            filter: blur(8px);
            opacity: 0.7;
            z-index: -1;
        }
        
        .content-containerx {
            background: white;
            border-radius: 13px;
            position: relative;
            z-index: 1;
        }
        
        .dark .content-containerx {
            background: #181818;
        }
        
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        .pulse-border {
            position: relative;
            border: 3px solid #5D5CDE;
            border-radius: 16px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(93, 92, 222, 0.7);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(93, 92, 222, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(93, 92, 222, 0);
            }
        }
		 /* Typewriter Effect */
        .typewriter {
            border-right: 2px solid #5D5CDE;
            white-space: nowrap;
            overflow: hidden;
            animation: typing 3s steps(40, end), blink-caret 0.5s step-end infinite;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: #5D5CDE; }
        }





        /* Dropdown styles /
        .dropdown-menu {
            display: none;
            position: absolute;
            z-index: 100;
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            min-width: 10rem;
            padding: 0.5rem 0;
        }

        .dark .dropdown-menu {
            background-color: #252525;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-item {
            display: block;
            padding: 0.5rem 1rem;
            color: #1a202c;
            transition: all 0.2s;
        }

        .dark .dropdown-item {
            color: #e2e8f0;
        }

        .dropdown-item:hover {
            background-color: #024B8F;
            color: white;
        }

        .dark .dropdown-item:hover {
            background-color: #7A79E8;
            color: #181818;
        }

        /* Mobile dropdown styles /
        @media (max-width: 1023px) {
            .dropdown-menu {
                position: static;
                box-shadow: none;
                display: none;
                background-color: transparent;
                padding-left: 1.5rem;
            }

            .dropdown-menu.show {
                display: block;
            }

            .dropdown-item {
                padding: 0.5rem 0;
            }

            .dropdown-item:hover {
                background-color: transparent;
                color: #5D5CDE;
            }

            .dark .dropdown-item:hover {
                color: #7A79E8;
                background-color: transparent;
            }
        }
*/