        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background-color: #fff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            color: #1a5276;
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #e74c3c;
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #1a5276;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-family: 'Poppins', sans-serif;
        }

        .btn:hover {
            background-color: #13405c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .btn-secondary {
            background-color: #e74c3c;
        }

        .btn-secondary:hover {
            background-color: #c0392b;
        }

        .btn-accent {
            background-color: #f39c12;
            color: #2c3e50;
        }

        .btn-accent:hover {
            background-color: #e67e22;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid #1a5276;
            color: #1a5276;
        }

        .btn-outline:hover {
            background-color: #1a5276;
            color: white;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 60px;
            margin-right: 15px;
        }

        .logo-text h1 {
            font-size: 1.8rem;
            margin-bottom: 0;
            line-height: 1.2;
        }

        .logo-text span {
            color: #1a5276;
        }

        .logo-text .tagline {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 400;
        }

        .nav-menu {
            display: flex;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            padding: 10px 15px;
            font-weight: 500;
            color: #2c3e50;
        }

        .nav-menu a:hover {
            color: #1a5276;
        }

        .nav-menu .active a {
            color: #1a5276;
            font-weight: 600;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 220px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            border-radius: 8px;
            overflow: hidden;
        }

        .dropdown-menu li a {
            padding: 12px 20px;
            border-bottom: 1px solid #e9ecef;
        }

        .dropdown-menu li:last-child a {
            border-bottom: none;
        }

        .dropdown-menu li a:hover {
            background-color: #f8f9fa;
            color: #1a5276;
        }

        .nav-menu li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .header-actions {
            display: flex;
            align-items: center;
        }

        .contact-btn {
            margin-left: 15px;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #1a5276;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 82, 118, 0.85), rgba(19, 64, 92, 0.1)), url('images/image.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            margin-bottom: 100px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 2rem;
        }

        /* Hero Slider */
        .hero-slider1 {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .slider-container1 {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide1 {
            position: absolute;
            top:0; left:0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .slide1.active1 { opacity: 1; }

        .slide1::before {
            content:"";
            position:absolute;
            top:0; left:0;
            width:100%; height:100%;
            background: rgba(0,0,0,0.5);
            z-index:1;
        }

        .slide-content1 {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            padding: 30px 50px;
            border-radius: 15px;
        }

        .slide-content1 h2 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #fff;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .slide-content1 p {
            font-size: 1.2rem;
            color: #f0f0f0;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .btn-secondary1 {
            display: inline-block;
            padding: 12px 30px;
            background: #ff4d4d;
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
        }

        .btn-secondary1:hover {
            background: #e60000;
            transform: scale(1.05);
        }

        .slider-nav1 {
            position: absolute;
            bottom: 20px;
            width: 100%;
            text-align: center;
            z-index: 2;
        }

        .slider-dot1 {
            display: inline-block;
            width: 14px; height:14px;
            margin: 0 7px;
            background: rgba(255,255,255,0.6);
            border-radius:50%;
            cursor:pointer;
            transition:0.3s;
        }

        .slider-dot1.active1 {
            background: #ff4d4d;
            transform: scale(1.3);
        }

        .slider-arrows1 .slider-arrow {
            position: absolute;
            top:50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            padding:12px;
            background: rgba(0,0,0,0.3);
            border-radius: 50%;
            transition:0.3s;
            z-index:2;
        }

        .slider-arrows1 .slider-arrow:hover { background: rgba(0,0,0,0.6); }
        .prev1 { left:20px; }
        .next1 { right:20px; }

        .scroll-text1 {
            max-width: 900px;
            margin: 80px auto;
            padding: 40px 20px;
            background: linear-gradient(135deg, #f9f9f9, #e0f7fa);
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            text-align: center;
            font-family: 'Poppins', sans-serif;
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
        }

        .scroll-text1 h2 {
            font-size: 2.4rem;
            color: #00796b;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .scroll-text1 p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
        }

        .scroll-text1 .btn1 {
            display: inline-block;
            padding: 12px 30px;
            background-color: #00796b;
            color: #fff;
            font-weight: 500;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .scroll-text1 .btn1:hover {
            background-color: #004d40;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Services Section */
        .services {
            background-color: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .service-icon {
            height: 80px;
            width: 80px;
            background-color: #1a5276;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        .service-content {
            padding: 30px;
            text-align: center;
        }

        .service-content h3 {
            color: #1a5276;
            margin-bottom: 15px;
        }

        .service-content p {
            color: #6c757d;
            margin-bottom: 20px;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h2 {
            color: #1a5276;
            margin-bottom: 20px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
        }

        .feature-icon {
            background-color: #f8f9fa;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #1a5276;
            flex-shrink: 0;
        }

        .about-img {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .about-img:before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            border: 3px solid #f39c12;
            border-radius: 8px;
            z-index: -1;
        }

        /* Why Choose Us Section - ADDED MISSING CSS */
        .why-us {
            background-color: #f8f9fa;
            width: 100%;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-card i {
            font-size: 2.5rem;
            color: #1a5276;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            color: #1a5276;
            margin-bottom: 15px;
        }

        /* Testimonials Section */
        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-item {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            margin: 0 15px;
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            color: #6c757d;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-info h4 {
            margin-bottom: 5px;
            color: #1a5276;
        }

        .author-info p {
            margin-bottom: 0;
            color: #6c757d;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-section {
            width: 100%;
            max-width: 1500px;
        }

        .contact-container {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
        }

        .contact-info {
            background: linear-gradient(135deg, #1a5276 0%, #13405c 100%);
            color: white;
            padding: 50px 40px;
            margin: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .contact-info:before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .contact-info:after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .contact-info h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .contact-info p {
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .contact-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateX(10px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background: #f39c12;
            transform: scale(1.1);
        }

        .contact-details h3 {
            color: white;
            margin-bottom: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
        }

        .contact-details p {
            margin-bottom: 0;
            opacity: 0.9;
            font-size: 1rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            position: relative;
            z-index: 2;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: #f39c12;
            transform: translateY(-5px);
        }

        .contact-form-container {
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-header {
            margin-bottom: 30px;
        }

        .form-header h3 {
            color: #1a5276;
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .form-header p {
            color: #6c757d;
            font-size: 1rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: #2c3e50;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-family: 'Roboto', sans-serif;
            transition: all 0.3s ease;
            font-size: 1rem;
            background: white;
        }

        .form-control:focus {
            outline: none;
            border-color: #1a5276;
            box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
            transform: translateY(-2px);
        }

        textarea.form-control {
            min-height: 140px;
            resize: vertical;
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
        }

        .contact-form .btn {
            display: inline-block;
            padding: 18px 30px;
            background: linear-gradient(135deg, #1a5276 0%, #13405c 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .contact-form .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 82, 118, 0.3);
        }

        .contact-form .btn:active {
            transform: translateY(-1px);
        }

        .contact-form .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .contact-form .btn:hover:before {
            left: 100%;
        }

        .map-container {
            margin-top: 40px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .map-placeholder {
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .map-placeholder i {
            margin-right: 10px;
            font-size: 1.5rem;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(26, 82, 118, 0.9), rgba(26, 82, 118, 0.6)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 0;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background-color: #2c3e50;
            color: #bbb;
            padding: 70px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #f39c12;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #f39c12;
            padding-left: 5px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .footer-contact i {
            margin-right: 12px;
            color: #f39c12;
            margin-top: 5px;
            font-size: 1.1rem;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .footer-social .social-icon:hover {
            background-color: #f39c12;
            color: #2c3e50;
            transform: translateY(-3px);
        }

        .footer-bottom {
            background-color: rgba(0,0,0,0.2);
            padding: 25px 0;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* Process Section */
        .process-section {
            background-color: #f8f9fa;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .process-step {
            text-align: center;
            padding: 30px 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-5px);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #1a5276;
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* Careers Section */
        .careers-section {
            background-color: #f8f9fa;
        }

        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .job-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .job-card:hover {
            transform: translateY(-5px);
        }

        .job-card h3 {
            color: #1a5276;
            margin-bottom: 15px;
        }

        .job-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            color: #6c757d;
            font-size: 0.9rem;
        }

        .job-meta i {
            margin-right: 5px;
        }

        /* Contact Section Styles */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 50px;
        }

        .contact-info-section {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            background-color: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #1a5276;
            flex-shrink: 0;
        }

        .contact-form-section {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-group-section {
            margin-bottom: 20px;
        }

        .form-group-section label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #2c3e50;
        }

        .form-control-section {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            font-family: 'Roboto', sans-serif;
            transition: all 0.3s ease;
        }

        .form-control-section:focus {
            outline: none;
            border-color: #1a5276;
            box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
        }

        textarea.form-control-section {
            min-height: 150px;
            resize: vertical;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-img {
                order: -1;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                transition: all 0.3s ease;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                padding: 20px;
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                margin-left: 20px;
            }
            
            .nav-menu li:hover .dropdown-menu {
                display: block;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .slide-content1 h2 {
                font-size: 2rem;
            }
            
            .slide-content1 p {
                font-size: 1rem;
            }
            
            .btn-secondary1 {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .logo-text h1 {
                font-size: 1.5rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .contact-info, .contact-form-container {
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .contact-info h2 {
                font-size: 1.8rem;
            }
            
            .form-header h3 {
                font-size: 1.5rem;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }