* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Section */
        header {
            width: 100%;
            padding: 20px 0;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.98);
        }

        .header-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #001b3d;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo img {
            width: 45%;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        nav {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            font-size: 16px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 25px;
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: #001b3d;
            font-weight: 500;
            font-size: 18px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #4a90e2;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #4a90e2;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            z-index: 1;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-content a {
            padding: 12px 16px;
            display: block;
            color: #001b3d;
        }

        .dropdown-content a:hover {
            background-color: #f5f5f5;
        }

        .language-selector {
            margin-left: 25px;
            font-weight: 500;
            cursor: pointer;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

         
        /* Feature Section */
        .feature-section {
            width: 100%;
            padding: 80px 0;
            background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .feature-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.85);
        }

        .feature-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .feature-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transform: translateX(-50px);
            opacity: 0;
            animation: slideInLeft 1s ease 0.3s forwards;
        }

        .feature-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .feature-image:hover img {
            transform: scale(1.05);
        }

        .feature-content {
            transform: translateX(50px);
            opacity: 0;
            animation: slideInRight 1s ease 0.3s forwards;
        }

        .feature-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #001b3d;
        }

        .feature-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 30px;
        }

        .feature-content .btn {
            color : #4a90e2;
            border-color: #4a90e2;
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Solutions Section */
        .solutions-section {
            width: 100%;
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .solutions-section2 {
            width: 100%;
            padding: 80px 0;
            background-color: #f9f9f9;
        }

         .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title2 {
            text-align: center;
            margin-bottom: 50px;
            margin-top: 80px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #001b3d;
            margin-bottom: 15px;
        }
         .section-title2 h2 {
            font-size: 2.5rem;
            color: #001b3d;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #777;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .section-title2 p {
            color: #777;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0; /* Remove gaps between cards */
        }

        .solution-card {
            background-color: white;
            padding: 30px;
            border-right: 1px solid #eee;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
            transform: translateY(30px);
            opacity: 0;
        }

        .solution-card:nth-child(3n) {
            border-right: none;
        }

        .solution-card:nth-child(1) { animation: fadeInUp 0.8s ease 0.2s forwards; }
        .solution-card:nth-child(2) { animation: fadeInUp 0.8s ease 0.4s forwards; }
        .solution-card:nth-child(3) { animation: fadeInUp 0.8s ease 0.6s forwards; }
        .solution-card:nth-child(4) { animation: fadeInUp 0.8s ease 0.8s forwards; }
        .solution-card:nth-child(5) { animation: fadeInUp 0.8s ease 1.0s forwards; }
        .solution-card:nth-child(6) { animation: fadeInUp 0.8s ease 1.2s forwards; }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .solution-icon {
            width: 100%;
            height: auto;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f0f7ff;
            border-radius: 5%;
            color: #4a90e2;
            font-size: 30px;
        }

        .solution-icon img {
            max-width: 100%;
            max-height: 280px;
            margin: 0 auto;
            display: block;
            border-radius: 5%;
            object-fit: contain;
        }

        .solution-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #001b3d;
            text-align: center;
        }

        .solution-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: center;
        }

        .learn-more {
            display: block;
            text-align: center;
            color: #4a90e2;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .learn-more:hover {
            color: #c2e9ff;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Partners Section */
        .partners-section {
            width: 100%;
            padding: 80px 0;
            background-color: white;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            align-items: center;
            justify-items: center;
            gap: 30px;
        }

        .partner-logo {
            max-width: 250px;
            height: auto;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Footer */
        footer {
            width: 100%;
            background-color: #506d8a;
            color: white;
            padding: 60px 0 0;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            display: inline-block;
            color: white;
            text-decoration: none;
        }

        .footer-logo img {
            max-width: 200px;
        }

         .footer-logo2 img {
            max-width: 400px;
            padding-top: 60px;
        }

        .footer-contact p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #ecf0f1;
        }

        .footer-contact p a {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #ecf0f1;
            text-decoration: none;
        }
    
        .footer-contact a:hover {
            color: #4a90e2;
        }    

        .social-links {
            display: flex;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: #4a90e2;
            transform: translateY(-3px);
        }

        .footer-sitemap h3 {
            font-size: 2.0rem;
            margin-bottom: 28px;
            color: white;
            margin-top: 20px;
            padding-left: 50px;
        }

        .sitemap-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            padding-left: 50px;
        }

        .sitemap-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .sitemap-links a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding: 20px 0;
            background-color: #1a252f;
            margin-top: 60px;
            color: #bdc3c7;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .header-container {
                grid-template-columns: 1fr 1fr;
            }

            .feature-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .feature-image {
                max-width: 80%;
                margin: 0 auto;
            }

            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .solution-card {
                border-right: 1px solid #eee;
            }
            
            .solution-card:nth-child(2n) {
                border-right: none;
            }
            
            .solution-card:nth-child(3) {
                grid-column: span 1;
                border-right: 1px solid #eee;
            }
            
            .solution-card:nth-child(4) {
                border-right: none;
            }
            
            /* Remove bottom border from second row */
            .solution-card:nth-child(n+5) {
                border-bottom: none;
            }

            .partners-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .slide-content h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                text-align: right;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                display: none;
                opacity: 1;
                transform: none;
            }

            .dropdown:hover .dropdown-content {
                display: none;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            

            .language-selector {
                margin-left: 0;
                margin-top: 15px;
                display: inline-block;
            }

            .slide-content h1 {
                font-size: 2.2rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .sitemap-links {
                grid-template-columns: 1fr;
            }

            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            .solution-card {
                padding: 20px;
            }
            
            .solution-card h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 576px) {
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            
            .solution-card {
                border-right: none;
                border-bottom: 1px solid #eee;
            }
            
            .solution-card:nth-child(n) {
                border-right: none;
                grid-column: span 1;
            }
            
            .solution-card:last-child {
                border-bottom: none;
            }
            
            .solutions-section {
                padding: 50px 0;
            }

            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .slide-content h1 {
                font-size: 1.8rem;
            }

            .slide-content p {
                font-size: 1rem;
            }
        }