
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}/* STOP HORIZONTAL SCROLL */
body {
    overflow-x: hidden;
}

/* NAVIGATION (DESKTOP) */
.navigation {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* HAMBURGER BUTTON (MOBILE) */
.menu-toggle {
    display: none;
    width: 32px;
    height: 26px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 4px;
    background: #0077cc;
    border-radius: 4px;
    transition: 0.3s ease;
}

/* MOBILE MENU (HIDDEN BY DEFAULT) */
#mobile-menu {
    display: flex;
    flex-direction: row;
    transition: transform 0.3s ease-out;
}

/* MOBILE RULES */
@media (max-width: 768px) {

    .navigation {
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 15px 0;

        /* hide initially */
        transform: translateY(-300px);
        opacity: 0;
        pointer-events: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .navigation.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Show Hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Animated Hamburger */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }
}

/* ABOUT SECTION */
.about {
    padding: 80px 0;
    background: #f9f9f9;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 22px;
    margin-top: 20px;
    color: #003366;
}

.about-text p {
    margin-top: 10px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    min-width: 230px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 310px;  
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}
.container {
    max-width: 1000px;
    width: 100%;        /* ensures container shrinks on smaller screens */
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden; /* prevents any accidental scroll */
}


/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;


    
}

header .logo-img {
    width: 60px !important;
    height: auto !important;
    object-fit: contain !important;
}
.logo-img {
    width: 60px;          /* adjust size */
    height: auto;         /* keeps proportions */
    object-fit: contain;  /* ensures logo stays sharp */
    border-radius: 8px;   /* optional rounded corners */
}

.logo-link {
    display: flex;
    align-items: center;
}

.top-bar {
    background: #1e3a8a;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.main-header {
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.company-info h1 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.company-info p {
    font-size: 14px;
    color: #6b7280;
}

.navigation {
    display: flex;
    gap: 30px;
}

.navigation a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.navigation a:hover {
    color: #3b82f6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #10b981 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    margin-top: 75PX;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.service-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.badge {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #10b981;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); /* allow shrinking */
    gap: 30px;
    margin-bottom: 60px;
    overflow-x: hidden; /* prevents horizontal scroll */
}

.service-card {
    background: linear-gradient(135deg, #dbeafe 0%, #dcfce7 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    width: 100%;  /* ensures card stays inside grid column */
    box-sizing: border-box; /* includes padding in width */
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* single column on mobile */
    }
}


.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 5px 0;
    color: #374151;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: "•";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.additional-services {
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
}

.additional-services h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.additional-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-weight: 500;
    color: #374151;
}

/* Countries Section */
.countries {
    padding: 80px 0;
    background: #f9fafb;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.country-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    border-left: 4px solid #3b82f6;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.country-flag {
    font-size: 40px;
    margin-bottom: 15px;
}

.country-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.country-card p {
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 14px;
}

.apply-btn {
    background: #3b82f6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.apply-btn:hover {
    background: #2563eb;
}

.worldwide-banner {
    background: #10b981;
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.worldwide-banner h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 15px;  /* add horizontal padding */
    background: linear-gradient(135deg, #1e3a8a 0%, #10b981 100%);
    color: white;
    overflow-x: hidden;   /* prevent horizontal scroll */
    box-sizing: border-box;
}

.container {
    max-width: 1000px;
    width: 100%;          /* full width on small screens */
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr; /* stack vertically on mobile */
    }
}


.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two columns on large screens */
    gap: 50px;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr; /* single column on tablets/mobile */
    }
}
.info-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item .icon {
    font-size: 24px;
}

.info-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-item p {
    opacity: 0.9;
}

.why-choose {
    background: rgba(16,185,129,0.2);
    padding: 25px;
    border-radius: 12px;
}

.why-choose h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-choose ul {
    list-style: none;
}

.why-choose li {
    padding: 5px 0;
    opacity: 0.9;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16,185,129,0.2);
}

.submit-btn {
    background: #10b981;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #059669;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
}

.footer-logo p {
    font-size: 14px;
    color: #9ca3af;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons span {
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

.social-icons span:hover {
    transform: scale(1.2);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .navigation {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
}
