
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            padding-top: 80px;
        }

		.whatsapp-float {
			position: fixed;
			right: 12px;
			bottom: 15px;
			width: 60px;
			height: 60px;
			display: grid;
			place-items: center;
			border-radius: 50%;
			color: var(--white);
			font-size: 30px;
			z-index: 998;
			box-shadow: 0 14px 35px rgba(37, 211, 102, 0.42);
			animation: pulse 1.8s infinite;
		}
		.whatsapp-float img{width:100%;}
		
		@keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
      70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }
        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 80px;
        }

        .header.scrolled {
            height: 60px;
            padding: 5px 0;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .logo {
            flex-shrink: 0;
        }

        .logo img {
            height: auto;
            width: 220px;
            transition: all 0.3s ease;
        }

        .header.scrolled .logo img {
            width:190px;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #0078d4;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #0078d4, #e74c3c);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            gap: 6px;
            z-index: 1001;
        }

        .hamburger-menu span {
            width: 25px;
            height: 3px;
            background: #0060cd;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu Panel */
        .mobile-menu {
            position: fixed;
            left: 0;
            top: 0;
            width: 75%;
            max-width: 350px;
            height: 100vh;
            background: white;
            box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 1002;
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-content {
            padding: 20px;
        }

        .mobile-menu-logo {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }

        .mobile-menu-logo img {
            height: auto;
            width: 200px;
        }

        .mobile-nav-menu {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .mobile-nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 15px 10px;
            display: block;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .mobile-nav-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(90deg, #0078d4, #e74c3c);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease;
        }

        .mobile-nav-link:hover {
            background: #f8f9fa;
            color: #0078d4;
        }

        .mobile-nav-link:hover::before {
            transform: scaleY(1);
        }

        /* Menu Overlay */
        .menu-overlay {
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px;
        }

        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            background: white;
            border-radius: 20px;
            padding: 60px 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content h1 span {
            display: inline;
        }

        .aal {
            color: #0066cc;
        }

        .maah {
            color: #00a86b;
        }

        .z {
            color: #ffa500;
        }

        .gradient-text {
            -webkit-text-fill-color: #0000;
    background: linear-gradient(90deg, #0056d2, #00a651, #ff7f00, #ed1c24);
    -webkit-background-clip: text;
    background-clip: text;
        }

        .tagline {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 40px;
            font-size: 1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(90deg, #199f48 0%, #0078d4 33%, #ff9500 75%, #e74c3c 100%);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 120, 212, 0.3);
        }

        .btn-secondary {
            background: white;
            color: #199f48;
            border: 2px solid #199f48;
        }

        .btn-secondary:hover {
            background: #f0f5ff;
            transform: translateY(-3px);
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
        }

        .stat-item:nth-child(1) .stat-number {
            color: #00a86b;
        }

        .stat-item:nth-child(2) .stat-number {
            color: #ff9500;
        }

        .stat-item:nth-child(3) .stat-number {
            color: #00a86b;
        }

        .stat-label {
            color: #666;
            font-size: 0.9rem;
            margin-top: 5px;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        /* Our Services Section */
        .our-services {
            background: #fff;
            padding: 80px 0;
            margin-top: 10px;
        }

        .services-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .services-header h2 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #000;
            font-weight: 700;
        }

        .services-title-highlight {
            background: linear-gradient(90deg, #0078d4 0%, #ff9500 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
			box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            
            transition: all 0.3s ease;
            display: grid;
            grid-template-columns: 50px 1fr;
            grid-template-rows: auto auto;
            gap: 20px;
            align-items: start;
        }

        .service-card:hover {
            transform: translateY(-5px);
			box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            
        }

        .service-icon {
            grid-column: 1;
            grid-row: 1 / 3;
            width: 50px;
            height: 50px;
            background: #e3f2fd;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon svg {
            width: 28px;
            height: 28px;
        }

        .service-card h3 {
            grid-column: 2;
            grid-row: 1;
            font-size: 1.3rem;
            color: #000;
            margin: 0;
            font-weight: 700;
        }

        .service-card p {
            grid-column: 2;
            grid-row: 2;
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        /* Countries We Cover Section */
        .countries-section {
            background: #eee;
            padding: 80px 0;
            margin-top: 10px;
        }

        .countries-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .countries-header h2 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #000;
            font-weight: 700;
        }

        .countries-highlight {
            color: #0078d4;
            font-weight: 700;
        }

        .countries-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .countries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .country-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .country-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 120, 212, 0.2);
        }

        .country-image-wrapper {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .country-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .country-card:hover .country-image-wrapper img {
            transform: scale(1.1);
        }

        .country-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 120, 212, 0.3) 0%, rgba(255, 149, 0, 0.3) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .country-card:hover .country-overlay {
            opacity: 1;
        }

        .country-info {
            padding: 25px 20px;
            text-align: center;
            background: #f9f9f9;
        }

        .country-code {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0078d4;
            margin: 0 0 8px 0;
            letter-spacing: 2px;
        }

        .country-name {
            font-size: 1.1rem;
            color: #000;
            font-weight: 600;
            margin: 0;
        }

        /* Why Choose Section */
        .why-choose {
            background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
            padding: 80px 0;
            margin-top: 60px;
        }

        .why-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .why-header h2 {
            font-size: 2.8rem;
            margin-bottom: 12px;
            color: #000;
            font-weight: 700;
        }

        .why-highlight {
            background: linear-gradient(90deg, #0078d4 0%, #ff9500 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .why-sub {
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            font-size: 1rem;
            line-height: 1.6;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 30px auto 0 auto;
        }

        .reason-card {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .reason-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(0,120,212,0.12);
        }

        .reason-icon {
            width: 56px;
            height: 56px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, rgba(0,120,212,0.08), rgba(231,76,60,0.04));
            flex-shrink: 0;
        }

        .reason-icon svg {
            width: 28px;
            height: 28px;
        }

        .reason-content h4 {
            margin: 0 0 6px 0;
            font-size: 1.05rem;
            color: #000;
            font-weight: 700;
        }

        .reason-content p {
            margin: 0;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Our Track Record Section */
        .track-record {
            background: linear-gradient(135deg, #f0f4ff 0%, #fef5f0 100%);
            padding: 80px 0;
            margin-top: 10px;
        }

        .track-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .track-header h2 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #000;
            font-weight: 700;
        }

        .track-track {
            color: #00b8a9;
            font-weight: 700;
        }

        .track-record-text {
            color: #f39c12;
            font-weight: 700;
        }

        .track-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .track-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .track-stat-card {
            background: white;
            padding: 35px 25px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
        }

        .track-stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 120, 212, 0.15);
        }

        .track-icon {
            width: 60px;
            height: 60px;
            background: #e3f2fd;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .track-icon svg {
            width: 32px;
            height: 32px;
        }

        .track-number {
            display: flex;
            align-items: baseline;
            justify-content: center;
            margin-bottom: 10px;
			font-size:3rem;
			font-weight:600;
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #00a86b;
        }

        .track-stat-card:nth-child(2) .stat-value {
            color: #00a86b;
        }

        .track-stat-card:nth-child(3) .stat-value {
            color: #f39c12;
        }

        .track-stat-card:nth-child(4) .stat-value {
            color: #00a86b;
        }

        .stat-plus {
            font-size: 1.8rem;
            color: #f39c12;
            margin-left: 4px;
            font-weight: 700;
        }

        .track-label {
            color: #666;
            font-size: 1rem;
            margin: 0;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hamburger-menu {
                display: flex;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 40px 30px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1.2rem;
            }

            .buttons {
                flex-direction: column;
            }

            .btn {
                justify-content: center;
                width: 100%;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 20px;
            }

            .hero {
                padding: 30px 20px;
            }

            .mobile-menu {
                width: 80%;
                max-width: 350px;
            }

            .services-header h2 {
                font-size: 2rem;
            }

            .services-subtitle {
                font-size: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 20px;
            }

            .service-card {
                padding: 20px;
            }

            .our-services {
                padding: 60px 0;
                margin-top: 40px;
            }

            .countries-section {
                padding: 60px 0;
                margin-top: 40px;
            }

            .countries-header h2 {
                font-size: 2rem;
                margin-bottom: 10px;
            }

            .countries-subtitle {
                font-size: 1rem;
            }

            .countries-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 0 10px;
            }

            .country-image-wrapper {
                height: 180px;
            }

            .country-code {
                font-size: 1.5rem;
            }

            .country-name {
                font-size: 1rem;
            }

            .why-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 0 12px;
            }

            .reason-card {
                padding: 16px;
            }

            .track-header h2 {
                font-size: 2rem;
                margin-bottom: 10px;
            }

            .track-subtitle {
                font-size: 1rem;
            }

            .track-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 0 10px;
            }

            .track-stat-card {
                padding: 25px 15px;
            }

            .stat-value {
                font-size: 2rem;
            }

            .stat-plus {
                font-size: 1.5rem;
            }

            .track-label {
                font-size: 0.9rem;
            }

            .track-record {
                padding: 60px 0;
                margin-top: 40px;
            }
        }
   

        /* About Us Section */
        .about-us {
            background: white;
            padding: 80px 0;
            margin-top: 10px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .about-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .about-text {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-name {
            font-size: 2.2rem;
            font-weight: 600;
            color: #000;
            margin: 0;
            background: linear-gradient(90deg, #08080a 0%, #000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-title {
            font-size: 1rem;
            color: #0078d4;
            font-weight: 600;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-description {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin: 0;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .about-stat-card {
            background: linear-gradient(135deg, #f0f4ff 0%, #fef5f0 100%);
            padding: 25px 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .about-stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 120, 212, 0.15);
        }

        .about-stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #00a86b;
            margin-bottom: 8px;
        }

        .about-stat-label {
            font-size: 0.95rem;
            color: #666;
            font-weight: 500;
            margin: 0;
        }

        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 20px;
            }

            .about-name {
                font-size: 2rem;
            }

            .about-title {
                font-size: 1rem;
            }

            .about-description {
                font-size: 0.95rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .about-us {
                padding: 60px 0;
            }
        }


        /* Get In Touch Section */
        .get-in-touch {
            background: linear-gradient(135deg, #eee 0%, #fff 100%);
            padding: 80px 0;
            margin-top: 10px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: #000;
            text-align: center;
            margin-bottom: 15px;
        }

        .highlight {
            background: linear-gradient(90deg, #0078d4 0%, #ff9500 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-tagline {
            font-size: 1.1rem;
            color: #666;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-info h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #000;
            margin: 0;
        }

        .contact-info > p {
            font-size: 1rem;
            color: #666;
            line-height: 1.8;
            margin: 0;
        }

        .info-card {
            display: flex;
            align-items: center;
            gap: 20px;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 120, 212, 0.15);
        }

        .info-card .icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e3f2fd 0%, #fff3e0 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-card .icon svg {
            width: 24px;
            height: 24px;
        }

        .info-card .details {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .info-card .details span {
            font-size: 0.9rem;
            color: #999;
            font-weight: 500;
        }

        .info-card .details p {
            font-size: 1.1rem;
            color: #333;
            font-weight: 600;
            margin: 0;
        }

        .online-process {
            background: linear-gradient(135deg, #e8f5e9 0%, #fff3e0 100%);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid #00a86b;
        }

        .online-process p {
            font-size: 0.95rem;
            color: #333;
            margin: 0;
            line-height: 1.6;
        }

        .online-process strong {
            color: #00a86b;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-size: 0.95rem;
            color: #333;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-wrapper svg {
            position: absolute;
            left: 15px;
            width: 20px;
            height: 20px;
            color: #0078d4;
            z-index: 1;
        }

        .input-wrapper input,
        .input-wrapper textarea {
            width: 100%;
            padding: 15px 15px 15px 50px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            outline: none;
        }

        .input-wrapper input:focus,
        .input-wrapper textarea:focus {
            border-color: #0078d4;
            box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
        }

        .input-wrapper textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px 40px;
            background: linear-gradient(90deg, #199f48 0%, #0078d4 33%, #ff9500 75%, #e74c3c 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 120, 212, 0.3);
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .section-tagline {
                font-size: 1rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 20px;
            }

            .contact-info h3 {
                font-size: 1.5rem;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .get-in-touch {
                padding: 60px 0;
            }
        }


        /* Footer */
        .footer {
            background: #000;
            color: #eee;
            padding: 60px 0 20px;
            margin-top: 10px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }

        .footer-tagline {
            font-size: 1rem;
            color: #999;
            margin: 0;
            font-style: italic;
        }

        .footer-description {
            font-size: 0.95rem;
            color: #ccc;
            line-height: 1.6;
            margin: 0;
        }

        .footer-heading {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links li a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-links li a:hover {
            color: #fff;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .contact-item span {
            font-size: 0.95rem;
            color: #ccc;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }

        .copyright {
            font-size: 0.9rem;
            color: #999;
            margin: 0;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }

            .footer {
                padding: 40px 0 20px;
            }
        }
