        /* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Segoe UI', Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #2d2d2d;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* San Francisco Font Classes */
.sf-display-bold {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
    font-weight: 700;
}

.sf-text-semibold {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    font-weight: 600;
}

.sf-text-medium {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    font-weight: 500;
}

.sf-text-regular {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    font-weight: 400;
}
        
        /* Header Styles */
        .header {
            background: #ffffff;
            padding: 16px 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: #1f3bb3;
}

.logo-image {
    height: 42px;
    width: auto;
    margin-right: 12px;
}
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 32px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #2d2d2d;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .nav-menu a:hover {
            color: #1f3bb3;
        }
        
        .language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
}

.nav-menu a.active,
.footer-column ul li a.active {
    color: #1f3bb3 !important;
}

 /* Flag Icons */
.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    position: relative;
}

.flag-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid 
#E5E7EB;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: none;
}

.language-selector.open .language-dropdown {
    display: block;
}

.language-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.language-option:hover {
    background: 
#F3F4F6;
}

/* Country Flag Variations */
.flag-uk { 
        background: 
        linear-gradient(90deg, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%),
        linear-gradient(0deg, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%),
        #ffffff
}
.flag-portugal { background: linear-gradient(to right, 
#006600 40%, 
#FF0000 40%); }
.flag-germany { background: linear-gradient(to bottom, #000 33%, 
#FF0000 33%, 
#FF0000 66%, 
#FFCC00 66%); }
.flag-spain { background: linear-gradient(to bottom, 
#AA151B 25%, 
#F1BF00 25%, 
#F1BF00 75%, 
#AA151B 75%); }
.flag-belgium { background: linear-gradient(to right, #000 33%, 
#FFD700 33%, 
#FFD700 66%, 
#FF0000 66%); }

/* Hero Section */
.hero {
    position: relative;
    color: rgb(255, 255, 255);
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 500px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image-asset.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1); /* This flips the image horizontally */
    z-index: 1;
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(58, 58, 58, 0.55);
   /* Remove mix-blend-mode: multiply; */
   z-index: 2;
}

.hero-overlay::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, #1f3bb3 0%, rgba(0, 0, 0, 0) 60%);
   opacity: 0.8;
   z-index: 3;
}

.hero-content {
   position: relative;
   z-index: 4;
   max-width: 700px;
   position: absolute;
    top: 50%;
    left: 50px; /* Adjust horizontal position as needed */
    transform: translateY(-50%);
}

.hero h1 {
    font-size: 54px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero h1 .bold-text {
    font-weight: 700; 
}
.hero h1 span {
    font-weight: 700; 
}

 /* Social Icons Fixed */
        .social-fixed {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 50;
        }
        
        .social-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: transform 0.2s;
        }
        
        .social-icon:hover {
            transform: scale(1.1);
        }
        
        .social-icon.linkedin {
            background: #0077B5;
        }
        
        .social-icon.instagram {
            background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
        }
        
        .social-icon.facebook {
            background: #1877F2;
        }
        .social-icon.tiktok {
            background: #000000;
        }

/* Why Work with Us Section */
.why-work-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.why-work-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.why-work-section h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-work-section h2 .highlight {
    color: #1f3bb3;
    font-weight: 700;
}
.why-work-section h2 span {
    color: #1f3bb3;
    font-weight: 700;
}

.why-work-section p {
    font-size: 16px;
    color: #595959;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;

   
}
.why-work-section > .container > p{
   opacity: 0;
   transform: translateY(80px);
    transition: all 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
    will-change: transform, opacity;
}
.why-work-section p.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: transparent;
    border-radius: 0;
    padding: 30px 30px;
    box-shadow: none;
    text-align: center;
    border-right: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    opacity: 0.4; /* Faded by default */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth transition for all properties */
    will-change: transform, opacity; /* Optimize for animations */
}

.service-card:hover {
    opacity: 1; /* Full opacity on hover */
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 16px;
    text-align: left;
}

.service-card p {
    font-size: 14px;
    color: #595959;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

.service-card:hover h3,
.service-card:hover p {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.06); /* Scale text on hover */
    will-change: transform, opacity; /* Optimize for animations */
}


/* Service card heading colors */
.service-card:nth-child(1) h3 { color: #FF4444; } /* Red */
.service-card:nth-child(2) h3 { color: #FF9800; } /* Orange */
.service-card:nth-child(3) h3 { color: #2196F3; } /* Blue */
.service-card:nth-child(4) h3 { color: #9C27B0; } /* Purple */
.service-card:nth-child(5) h3 { color: #4CAF50; } /* Green */
.service-card:nth-child(6) h3 { color: #FF4444; } /* Red */

/* Decorative circles for Why Work section */
.why-work-section {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.decorative-circle-1 {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #E5E7EB;
    border-radius: 50%;
    top: 493px;
    left: 84px;
    opacity: 0.6;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.decorative-circle-2 {
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    bottom: 580px;
    right: 50px;
    opacity: 0.8;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.decorative-circle-3 {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #E5E7EB;
    border-radius: 50%;
    bottom: 590px;
    left: 390px;
    opacity: 0.6;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.decorative-circle-4 {
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    top: 643px;
    right: 84px;
    opacity: 0.6;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Let's Build Your Dream Team Section */
.dream-team-section {
    position: relative;
    color: white;
    padding: 80px 0;
    overflow: hidden;
    min-height: 600px;
}


.dream-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 58, 58, 0.8);
    z-index: 2;
}

.dream-team-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1f3bb3 0%, rgba(0, 0, 0, 0) 80%);
    opacity: 0.8;
    z-index: 3;
}

.dream-team-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.dream-team-section h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.dream-team-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px; 
}

/* Remove margin from form-groups inside form-rows */
.form-row .form-group {
    margin-bottom: 0;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 25px;
    font-size: 16px;
    color: #2d2d2d;
    background: white;
}

.form-input::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.phone-group {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.country-select {
    padding: 16px 12px;
    border: 2px solid #E5E7EB;
    border-right: none;
    border-radius: 25px 0 0 25px;
    background: white;
    color: #2d2d2d;
    cursor: pointer;
    min-width: 180px;
}

.phone-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-left: none;
    border-radius: 0 25px 25px 0;
    font-size: 16px;
    color: #2d2d2d;
    background: white;
}

.submit-btn {
    background: #1f3bb3;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #1a328a;
}

/* Footer */
.footer {
    background: #1f3bb3;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 1;
    margin-left: -20px; /* Move more to the left */
}

.footer-logo {
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start */
    gap: 2px;
    margin-bottom: 12px;
    margin-top: -20px; /* Move up to align with headers */
}

.logo-img {
    width: 280px;
    height: 120px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
}

.say-hello-btn {
    display: inline-block;
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    margin-left: 25px;
}

.footer-tagline {
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    margin-left: 25px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #B5BDDB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;  
}

.footer-newsletter {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

 .footer-newsletter input {
    padding: 8px 12px;
    border: 1px solid 
#B5BDDB;
    border-radius: 4px 0 0 4px;
    background: white;
    color: 
#2d2d2d;
    font-size: 12px;
}

.footer-newsletter input::placeholder {
    color: 
#9CA3AF;  /* Light gray placeholder text */
}

.footer-newsletter button {
    background: 
#1f3bb3;
    color: white;
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 0 4px 4px 0;  /* Only right side rounded */
    font-size: 12px;
    font-weight: 500;
}

.footer-help h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-help p {
    font-size: 12px;
    color: #B5BDDB;
    font-weight: 700;
}
/* Footer Logos Section */
.footer-logos-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
    margin-top: -20px;
}

.footer-separator-vertical {
    width: 1px;
    height: 120px;
    background-color: #ffffff;
}

.footer-unicef-section {
    text-align: center;
}

.footer-unicef-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    margin-top: 10px;
}
.footer-unicef-logo {
    max-width: 120px;
    height: auto;
}
.logo-img {
    width: 250px;
    height: 100px;
}
.contact-form .form-group{text-align:left;}
label.error{margin-left: 5px; text-align:left;}
.phone-group{flex-wrap: wrap;}
/*newsletter message alignments*/
.newsletter-form .ajax-newsletter{flex-wrap:wrap;}
.newsletter-form .ajax-newsletter .alert-success, .newsletter-form .ajax-newsletter .alert-danger{padding:10px; font-size:14px; width:100%; text-align:left;}
.footer-newsletter .ajax-newsletter{flex-wrap:wrap;}
.footer-newsletter .ajax-newsletter .alert-success, .footer-newsletter .ajax-newsletter .alert-danger{margin-top:10px; padding:10px; font-size:14px;}

@media (max-width: 430px) {
    .footer-logos-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    .footer-separator-vertical {
        display: none;
    }
}

#home .hero-content{left:auto; margin-left:55px;}
/* Mobile Responsive Design */
/* Large Mobile Devices (430px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .nav {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        border-radius: 0 0 8px 8px;
        gap: 0;
    }
    
    .nav-menu.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #E5E7EB;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 16px 20px;
        display: block;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo-image {
        height: 30px;
        margin-right: 8px;
    }
    
    .language-selector {
        padding: 6px 8px;
        font-size: 14px;
    }

        .language-dropdown {
        left: auto;
        right: 0;
        min-width: 120px;
    }
    
    .language-option {
        padding: 6px 8px;
        font-size: 13px;
    }
    
    .flag-icon {
        width: 16px;
        height: 12px;
    }

    /* Social Icons */
        .social-fixed {
        display: flex !important;
        position: fixed;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 10px;
        z-index: 100;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: white;
        transition: transform 0.2s ease;
        font-size: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .social-icon:hover {
        transform: scale(1.1);
    }
    
    .social-icon.linkedin {
        background: #0077B5;
    }
    
    .social-icon.instagram {
        background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    }
    
    .social-icon.facebook {
        background: #1877F2;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0 80px;
        min-height: 250px;
    }
    
    .hero-background {
        /* Keep the flipped background image */
        transform: scaleX(-1);
    }
    
    .hero-overlay {
        background: rgba(58, 58, 58, 0.65); /* Slightly darker for mobile readability */
    }
    
    .hero-overlay::after {
        background: linear-gradient(90deg, #1f3bb3 0%, rgba(0, 0, 0, 0) 80%); /* Extend gradient more */
        opacity: 0.9;
    }
    
    .hero-content {
        max-width: 100%;
        left: 20px;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        padding: 0 15px;
        position: absolute;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

/* Why Work with Us Section */
    .why-work-section {
        padding: 60px 0;
    }
    
    .why-work-section h2 {
        font-size: 24px;
        margin-bottom: 12px;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    .why-work-section p,
    .why-work-section > .container > p {
        font-size: 15px;
        margin-bottom: 40px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Services Grid - Mobile Layout */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
        margin: 0 15px;
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .service-card {
        padding: 24px 20px;
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
        opacity: 1; /* All cards visible on mobile */
        transition: all 0.3s ease;
    }
    
    .service-card:last-child {
        border-bottom: none;
    }
    
    .service-card:hover {
        opacity: 1;
        background: #f9fafb;
        transform: translateY(-3px); /* Keep hover animation */
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
        text-align: center;
        transition: transform 0.3s ease;
    }
    
    .service-card p {
        font-size: 13px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 0;
        transition: transform 0.3s ease;
    }
    
    .service-card:hover h3,
    .service-card:hover p {
        transform: scale(1.03); /* Keep text scaling animation */
    }
    
    /* Decorative Circles - Mobile Positioned */
    .decorative-circle-1 {
        width: 20px;
        height: 20px;
        top: 120px;
        left: 30px;
    }
    
    .decorative-circle-2 {
        width: 20px;
        height: 20px;
        top: 80px;
        right: 25px;
        bottom: auto;
    }
    
    .decorative-circle-3 {
        width: 20px;
        height: 20px;
        bottom: 120px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .decorative-circle-4 {
        width: 20px;
        height: 20px;
        bottom: 80px;
        right: 30px;
        top: auto;
    }
    
    /* Dream Team Section */
    .dream-team-section {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .dream-team-overlay {
        background: rgba(58, 58, 58, 0.85); /* Darker for mobile readability */
    }
    
    .dream-team-overlay::after {
        background: linear-gradient(180deg, #1f3bb3 0%, rgba(0, 0, 0, 0) 70%);
        opacity: 0.9;
    }
    
    .dream-team-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .dream-team-section h2 {
        font-size: 28px;
        margin-bottom: 18px;
        line-height: 1.2;
    }
    
    .dream-team-section p {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
        max-width: 100%;
    }
    
    /* Contact Form - Mobile */
    .contact-form {
        padding: 30px 20px;
        margin: 0 15px;
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-input {
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 20px;
    }
    
    .phone-group {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .country-select {
        border-radius: 20px;
        border-right: 2px solid #E5E7EB;
        min-width: auto;
        width: 100%;
    }
    
    .phone-input {
        border-radius: 20px;
        border-left: 2px solid #E5E7EB;
    }
    
    .submit-btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 15px;
        border-radius: 20px;
        margin-top: 16px;
    }
    /* Footer */
    .footer {
        padding: 35px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        align-items: center;
    }
    
    .footer-left {
        margin-left: 0;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 15px;
        margin-top: 0;
    }
    
    .logo-img {
        width: 220px;
        height: 95px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .say-hello-btn {
        font-size: 12px;
        padding: 8px 20px;
        margin-left: 0;
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .footer-tagline {
        font-size: 18px;
        margin-left: 0;
        margin-bottom: 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        width: 100%;
        align-items: center;
    }
    
    .footer-column {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 15px;
        color: white;
    }
    
    .footer-column ul li {
        margin-bottom: 8px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .footer-newsletter {
        flex-direction: column;
        gap: 10px;
        max-width: 280px;
        margin: 0 auto 18px;
    }
    
    .footer-newsletter input {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 13px;
        border: 1px solid #B5BDDB;
    }
    
    .footer-newsletter button {
        width: 100%;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 13px;
        background: #ffffff;
        color: #1f3bb3;
        border: 2px solid #ffffff;
        font-weight: 600;
    }
    
    .footer-help {
        text-align: center;
    }
    
    .footer-help h5 {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .footer-help p {
        font-size: 11px;
    }
  .footer-newsletter .ajax-newsletter{
        display:flex;
        flex-direction: column;
        gap: 10px;
        max-width: 280px;
        margin: 0;
    }
     #home .hero-content {
    left: 20px;
    margin-left: 0;
   }
  .footer-newsletter .ajax-newsletter {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
}
/* Large Mobile Devices (430px and below) */
@media (max-width: 430px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
.mobile-menu-btn {
    display: block !important;
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
}

.nav-menu.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-menu li {
    border-bottom: 1px solid #E5E7EB;
}

.nav-menu a {
    padding: 16px 20px;
    display: block;
}
    
    .logo {
        font-size: 16px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .logo-tagline {
        display: none;
    }
 /* Social Icons */
    .social-fixed {
        display: none;
    }
   .hero-content {
        position: relative;
        left: auto !important;
        right: auto;
        top: auto;
        transform: none;
        margin: 0 auto !important;
        text-align: center;
        padding-top: 60px;
        max-width: 350px;
    }
  .footer-newsletter .ajax-newsletter{
	 display: flex;
	flex-direction: row;
	max-width: 300px;
	gap: 10px;
}

.footer-newsletter #newsletter-email {
	margin-bottom: 0px;
	flex: 1;
}
.footer-newsletter input{margin-bottom:0;}
.footer-newsletter button {
	width: auto !important;
}
}

/* Medium Mobile Devices (414px and below) */
@media (max-width: 414px) {

    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-left {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 8px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .footer-tagline {
        font-size: 13px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .footer-column ul li {
        margin-bottom: 6px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .footer-newsletter {
        flex-direction: column;
        max-width: 250px;
        margin: 0 auto 15px;
    }
    
    .footer-newsletter input {
        width: 100%;
        margin-bottom: 8px;
        padding: 10px 12px;
    }
    
    .footer-newsletter button {
        width: 100%;
        padding: 10px 16px;
    }
    
    .footer-help h5 {
        font-size: 11px;
    }
    
    .footer-help p {
        font-size: 11px;
    }
}

/* Small Mobile Devices (375px and below) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
}

/* Extra Small Mobile Devices (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
}

/*pagenation start*/
 #paginationControls {
    display: flex;
    gap: 8px; /* space between buttons */
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

#paginationControls button {
    border: none;
    background: none;
    font-size: 16px;
    padding: 4px 8px;
    cursor: pointer;
    color: #888;
}

#paginationControls button:hover {
    color: #0056b3;
}

#paginationControls button.active {
    color: #0033cc;
    font-weight: bold;
}

.pagination-arrow {
    font-size: 16px;
    color: #888;
}

.pagination-arrow:disabled {
    color: #ccc;
    cursor: default;
}


#paginationControls {
    display: flex;
    gap: 4px;
}

.pagination-arrow, 
.pagination-page {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 4px;
}

.pagination-arrow:hover:not(:disabled),
.pagination-page:hover:not(.active) {
    background: #f0f0f0;
}

.pagination-arrow:disabled {
    opacity: 0.5;
    cursor: default;
}

.pagination-page.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}
/*end*/

.emply-banner-hed{left:150px;}
.footer-help a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
}