body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #f0f8f0;
    color: #2d4a2d;
    /* Add top padding to prevent content from being hidden behind navbar */
    padding-top: 64px;
}
header {
    background: #063366;
    padding: 0;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #063366;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
}
.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.3rem;
    color: #ffd600;
}
.logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 40px;
    object-fit: cover;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.nav-links a.active, .nav-links a:hover {
    background: #4b5d67;
    color: #ffd600;
}
.nav-links a.active {
    background: #3a5d1c;
    color: #ffd600;
}

/* Admin gear icon styling */
.admin-link {
    margin-left: 10px;
}

.admin-gear {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffd600;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.admin-gear:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffd600;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 214, 0, 0.3);
}

.admin-gear i {
    font-size: 1.1rem;
    animation: spin 3s linear infinite;
}

.admin-gear:hover i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Admin Login Modal */
.admin-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    /* Prepare centering (activated when .show is added) */
    align-items: center;
    justify-content: center;
    padding: 20px; /* spacing for very small screens */
    box-sizing: border-box;
}

.admin-modal.show {
    display: flex;
}

.admin-modal-content {
    background: #fff;
    margin: 0 auto;
    padding: 0;
    border-radius: 15px;
    width: 100%;
    max-width: 450px;
    max-height: calc(100vh - 40px);
    overflow: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: adminModalSlideIn 0.3s ease;
    border: 3px solid #063366;
}

@keyframes adminModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.admin-modal-header {
    background: linear-gradient(135deg, #063366 0%, #0056b3 100%);
    color: #fff;
    padding: 25px 30px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.admin-modal-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-close {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.admin-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.admin-modal-body {
    padding: 30px;
}

.admin-logo {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.admin-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.admin-logo h3 {
    margin: 0 0 5px 0;
    color: #063366;
    font-size: 1.5rem;
    font-weight: 700;
}

.admin-logo p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.admin-login-form {
    margin-bottom: 20px;
}

.admin-login-form .form-group {
    margin-bottom: 20px;
}

.admin-login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #063366;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-login-form input[type="text"],
.admin-login-form input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.admin-login-form input:focus {
    outline: none;
    border-color: #063366;
    box-shadow: 0 0 0 3px rgba(6, 51, 102, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #495057;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.admin-login-btn {
    width: 100%;
    background: linear-gradient(135deg, #063366 0%, #0056b3 100%);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 51, 102, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #063366 100%);
}

.admin-help {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.admin-help p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.admin-help i {
    color: #063366;
}

/* Responsive design for admin modal */
@media (max-width: 768px) {
    .admin-modal-content {
        width: 100%;
        max-width: 480px;
        max-height: calc(100vh - 30px);
        margin: 0 auto;
    }
    
    .admin-modal-header {
        padding: 20px 25px;
    }
    
    .admin-modal-body {
        padding: 25px;
    }
    
    .admin-gear span {
        display: none;
    }
    
    .admin-gear {
        padding: 8px 12px;
    }
}
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #222;
}
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0.85;
    background: #222;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(6,51,102,0.25) 0%, rgba(6,51,102,0.5) 50%, rgba(6,51,102,0.78) 100%);
    z-index: 2;
}
@media (max-width: 700px) {
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(6,51,102,0.35) 0%, rgba(6,51,102,0.55) 40%, rgba(6,51,102,0.85) 100%);
    }
}
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}
@media (max-width: 700px) {
    .hero-content {
        padding: 8px 8px;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        margin: 0 auto;
        max-width: 96vw;
    }
}
.slideshow-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 4;
    pointer-events: none;
}
.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(6, 51, 102, 0.7);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}
.arrow-btn:hover {
    background: rgba(6, 51, 102, 0.9);
    border-color: #ffd600;
    transform: scale(1.1);
}
.arrow-btn svg {
    width: 20px;
    height: 20px;
}
.arrow-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.7), 0 1px 0 #000;
}
.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 700px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content h2 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
    .hero-content p {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }
    .hero-buttons { gap: 12px; }
}
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}
@media (max-width: 700px) {
    .btn {
        min-width: 150px;
        box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    }
}
.btn-yellow {
    background: #ffd600;
    color: #222;
}
.btn-yellow:hover {
    background: #ffea70;
}
.btn-green {
    background: #3a5d1c;
    color: #fff;
}
.btn-green:hover {
    background: #4caf50;
}
footer {
    background: #0d407a;
    color: #fff;
    padding: 48px 0 0 0;
    margin-top: 0;
    width: 100%;
}
.footer-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 36px 60px;
    gap: 40px;
    border-radius: 0 0 10px 10px;
}
.footer-about, .footer-links, .footer-social {
    flex: 1 1 0;
    min-width: 220px;
    margin-bottom: 0;
}
.footer-about h3, .footer-links h4, .footer-social h4 {
    color: #ffd600;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.footer-about p, .footer-links ul, .footer-social ul {
    color: #e3eafc;
    font-size: 1.08rem;
    margin: 0 0 10px 0;
    font-weight: 400;
}
.footer-links ul, .footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links a, .footer-social a {
    color: #ffd600;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    transition: color 0.2s;
}
.footer-links a:hover, .footer-social a:hover {
    color: #4caf50;
    text-decoration: underline;
}
.footer-contact-icon {
    margin-right: 8px;
    font-size: 1.15rem;
    vertical-align: middle;
}
.footer-about p {
    margin-bottom: 8px;
}
.footer-bottom {
    background: #063366;
    color: #fff;
    text-align: center;
    padding: 18px 0 10px 0;
    font-size: 1.08rem;
}
.footer-bottom hr {
    border: 0;
    border-top: 2px solid #ffd600;
    margin-bottom: 12px;
    width: 92%;
}
.footer-tagline {
    color: #4caf50;
    font-size: 1.08rem;
    margin-top: 4px;
}
@media (max-width: 1000px) {
    .footer-content {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px 30px 20px;
        gap: 24px;
    }
    .footer-about, .footer-links, .footer-social {
        min-width: unset;
        margin-bottom: 18px;
    }
}
.about-section {
    background: #f7f8fa;
    padding: 48px 0 32px 0;
    text-align: center;
    color: #222; /* Ensure dark text on light background */
}

/* New: Info Cards Grid for Mission, Vision, etc. */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 32px;
    margin: 40px auto 0 auto;
    max-width: 1100px;
    padding: 0 16px;
}
.info-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(6,51,102,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
    padding: 32px 24px 28px 24px;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    border: 2px solid #e3eafc;
}
.info-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(6,51,102,0.16), 0 2px 8px rgba(0,0,0,0.08);
    border-color: #ffd600;
}
.info-card .info-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}
.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #063366;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.info-card p {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.08rem;
    color: #333;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

/* Add Google Fonts for Playfair Display and Inter */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500;600&display=swap');

.about-desc {
    color: #111;
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
}
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.service-bg {
    background: url('../../Pictures/services.jpg') center center/cover no-repeat;
    position: relative;
    color: #fff;
}
.ipa-bg {
    background: url('../../Pictures/IPA.jpg') center center/cover no-repeat;
    position: relative;
    color: #fff;
}
.reach-bg {
    background: url('../../Pictures/png reach.jfif') center center/cover no-repeat;
    position: relative;
    color: #fff;
}
.feature-card {
    min-width: 300px;
    max-width: 380px;
    height: 220px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-radius: 14px;
    margin-bottom: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(6,51,102,0.07);
    text-align: center;
    font-family: 'Inter', Arial, sans-serif;
    padding-bottom: 28px;
}
.feature-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(6, 51, 102, 0.55);
    z-index: 1;
}
.feature-card h3,
.feature-card p {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.feature-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0;
}
.feature-icon {
    margin-bottom: 18px;
}
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}
.feature-card p {
    font-size: 1rem;
    color: #e3f2fd;
    margin: 0;
}
.feature-img img {
    display: block;
    margin: 0 auto 18px auto;
    height: 70px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(6,51,102,0.07);
    max-width: 100%;
}
.feature-card h3 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
    margin-bottom: 10px;
    margin-top: 0;
    letter-spacing: 0.5px;
}
.feature-card p {
    color: #f3f3f3;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
    margin-top: 0;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        padding: 0 20px 30px 20px;
    }
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
    }
    .features {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .feature-card {
        width: 98%;
        min-width: unset;
        max-width: 500px;
        height: 180px;
    }
} 
.footer-social-icon {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
} 
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
.close-btn {
    display: none;
}

/* Responsive styles */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
@media (max-width: 1024px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 2000;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 16px;
        background: #063366;
        height: 64px;
    }
    
    .hamburger {
        display: flex;
        margin-left: auto;
        margin-right: 0;
        z-index: 2001;
        width: 40px;
        height: 40px;
        padding: 8px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .hamburger:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .hamburger span {
        height: 3px;
        width: 24px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .hamburger.menu-open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.menu-open span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.menu-open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .logo {
        justify-content: flex-start;
        flex: 1 1 auto;
        margin-right: 0;
        font-size: 1.1rem;
    }
    
    .logo img {
        height: 36px;
        width: 36px;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(6, 51, 102, 0.85);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        z-index: 1999;
        border-radius: 0 0 10px 10px;
        margin: 0;
        padding: 0 0 24px 0;
        min-height: calc(100vh - 64px);
        align-items: stretch;
        animation: slideDown 0.3s ease;
        padding-top: 12px;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: left;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        width: 100%;
        display: block;
        padding: 16px 24px;
        border-radius: 0;
        font-size: 1.1rem;
        font-weight: 500;
        min-height: 56px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.1);
        color: #ffd600;
    }
    
    .close-btn {
        display: block;
        width: 100%;
        padding: 8px 24px 0 0;
        text-align: right;
        border-bottom: none;
    }
    
    .close-btn button {
        background: none;
        border: none;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .close-btn button:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffd600;
    }
    
    /* Dropdown styling for mobile */
    .dropdown-menu {
        position: static;
        background: rgba(6, 51, 102, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border-radius: 0;
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 0;
        max-height: none;
        overflow: visible;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 12px 32px;
        font-size: 1rem;
        background: transparent;
        border-left: none;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-left: none;
    }
    
    /* Admin link styling for mobile */
    .admin-link {
        margin-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .admin-gear {
        width: 100%;
        justify-content: flex-start;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0;
        padding: 16px 24px;
        font-size: 1.1rem;
    }
    
    .admin-gear:hover {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        transform: none;
        box-shadow: none;
    }
    
    body {
        padding-top: 64px;
    }
    
    @keyframes slideDown {
        from { 
            transform: translateY(-20px); 
            opacity: 0; 
        }
        to { 
            transform: translateY(0); 
            opacity: 1; 
        }
    }
} 
.footer-social iframe {
    width: 100%;
    max-width: 230px;
    height: 160px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    margin-top: 16px;
    border: 0;
}
@media (max-width: 800px) {
    .footer-social iframe {
        max-width: 100%;
        height: 120px;
    }
}

/* Additional mobile improvements for smaller screens */
@media (max-width: 768px) {
    .navbar {
        padding: 0 12px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo img {
        height: 32px;
        width: 32px;
    }
    
    .hamburger {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .nav-links a {
        padding: 14px 20px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .dropdown-menu a {
        padding: 10px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 8px;
    }
    
    .logo {
        font-size: 0.9rem;
    }
    
    .logo img {
        height: 28px;
        width: 28px;
    }
    
    .hamburger {
        width: 32px;
        height: 32px;
        padding: 4px;
    }
    
    .hamburger span {
        width: 18px;
        height: 2px;
    }
    
    .nav-links a {
        padding: 12px 16px;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .dropdown-menu a {
        padding: 8px 24px;
        font-size: 0.9rem;
    }
} 
.home-briefs {
    background: #fff;
    color: #222;
    padding: 40px 0 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.brief-card {
    background: #f7f8fa;
    color: #222;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(6,51,102,0.07);
    padding: 32px 24px 28px 24px;
    margin-bottom: 24px;
    max-width: 370px;
    min-width: 260px;
    flex: 1 1 300px;
    text-align: left;
    font-family: 'Inter', Arial, sans-serif;
}
.brief-card h2 {
    color: #063366;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.brief-card p {
    color: #333;
    font-size: 1.08rem;
    font-weight: 400;
    margin-bottom: 18px;
}
.brief-link {
    color: #3a5d1c;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.brief-link:hover {
    color: #ffd600;
    text-decoration: underline;
}
/* Ensure footer and nav remain white text on dark backgrounds */
footer, .navbar, .footer-bottom {
    color: #fff;
} 
/* Font families for modern, appealing look */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
p, li, a, .brief-card, .about-desc, .footer-about p, .footer-links ul, .footer-social ul, .feature-card p {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
}
/* Headings sizes for hierarchy */
h1 {
    font-size: 2.7rem;
    margin-bottom: 0.5rem;
}
h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}
h4, h5, h6 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
/* Enhance nav and footer links */
.nav-links a, .footer-links a, .footer-social a, .brief-link {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
}
/* Improve button font */
.btn {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.3px;
}
/* About section description italic, but with Inter */
.about-desc {
    font-family: 'Inter', Arial, sans-serif;
    font-style: italic;
    font-size: 1.15rem;
    color: #222;
}
/* Feature card headings */
.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
/* Responsive font scaling */
@media (max-width: 700px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    .about-desc, .brief-card p { font-size: 1rem; }
} 
/* Successful Clients Section */
.successful-clients {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px 0;
    text-align: center;
}

.clients-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.clients-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #063366;
    margin-bottom: 16px;
}

.clients-header p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.client-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(6, 51, 102, 0.1);
    border: 2px solid #f0f4f8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd600, #3a5d1c);
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(6, 51, 102, 0.15);
    border-color: #ffd600;
}

.client-image {
    width: 100%;
    height: 180px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    position: relative;
    flex-shrink: 0;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Static client images - no slideshow functionality */

.client-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.client-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #063366;
    margin-bottom: 8px;
}

.client-business {
    font-size: 1rem;
    color: #3a5d1c;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-achievement {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.client-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: #063366;
}

.stat strong {
    display: block;
    font-size: 1rem;
    color: #3a5d1c;
    margin-bottom: 4px;
}

.client-quote {
    font-style: italic;
    color: #063366;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 12px;
    background: linear-gradient(135deg, #f0f4f8, #e3eafc);
    border-radius: 12px;
    border-left: 4px solid #ffd600;
    position: relative;
    margin-top: auto;
}

.client-quote::before {
    content: '"';
    font-size: 3rem;
    color: #ffd600;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: serif;
}

.clients-cta {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.clients-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #063366;
    margin-bottom: 16px;
}

.clients-cta p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Clients Section */
@media (max-width: 768px) {
    .successful-clients {
        padding: 60px 0 40px 0;
    }
    
    .clients-header h2 {
        font-size: 2rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .client-card {
        min-height: 400px;
    }
    
    .client-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .clients-header h2 {
        font-size: 1.8rem;
    }
    
    .client-card {
        min-height: 380px;
    }
    
    .client-image {
        height: 140px;
    }
    
    /* Removed achievement styling - no longer using text and icons */
    
    /* Slideshow controls removed - using static images */
    
    .clients-cta h3 {
        font-size: 1.6rem;
    }
} 
/* Footer Map Styles - Removed */ 

/* Dropdown Menu Styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #063366;
    border: 1px solid #4b5d67;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 8px 0;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #063366;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-radius: 0;
    background: transparent;
}

.dropdown-menu a:hover {
    background: #4b5d67;
    color: #ffd600;
    transform: translateX(5px);
}

.dropdown-menu a:active {
    background: #3a5d1c;
    color: #ffd600;
}

/* Dropdown arrow indicator */
.dropdown > a::after {
    content: '▾';
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Mobile dropdown styling */
@media (max-width: 1024px) {
    .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin: 0;
        min-width: auto;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 200px;
        padding: 8px 0;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu a {
        padding: 12px 20px 12px 50px;
        font-size: 0.95rem;
        border-radius: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        position: relative;
        transition: all 0.2s ease;
    }
    
    .dropdown-menu a::before {
        content: '→';
        position: absolute;
        left: 30px;
        color: #ffd600;
        font-weight: bold;
        opacity: 0.7;
        transition: all 0.2s ease;
    }
    
    .dropdown-menu a:hover {
        transform: none;
        background: #4b5d67;
        color: #ffd600;
        padding-left: 55px;
    }
    
    .dropdown-menu a:hover::before {
        opacity: 1;
        transform: translateX(3px);
    }
    
    .dropdown > a {
        position: relative;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .dropdown > a::after {
        float: none;
        margin-top: 0;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    /* Improve touch targets for mobile */
    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Better spacing for mobile menu */
    .nav-links {
        padding: 16px 0 24px 0;
        min-height: auto;
    }
    
    .nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    /* Close button improvements */
    .close-btn {
        padding: 12px 20px 16px 0;
        border-bottom: 2px solid #ffd600;
        margin-bottom: 8px;
    }
    
    .close-btn button {
        font-size: 1.5rem;
        padding: 8px;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .close-btn button:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.1);
    }
}

/* Additional mobile optimizations for smaller screens */
@media (max-width: 768px) {
    .dropdown-menu a {
        padding: 14px 20px 14px 55px;
        font-size: 1rem;
    }
    
    .nav-links a {
        padding: 14px 20px;
        font-size: 1.05rem;
    }
    
    .dropdown > a::after {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dropdown-menu a {
        padding: 16px 20px 16px 60px;
        font-size: 1.05rem;
    }
    
    .nav-links a {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
    
    .dropdown-menu a::before {
        left: 35px;
        font-size: 1.1rem;
    }
    
    .close-btn button {
        font-size: 1.8rem;
        padding: 10px;
    }
}

/* Ensure dropdown works on touch devices */
@media (hover: none) and (pointer: coarse) {
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown > a::after {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > a::after {
        transform: rotate(180deg);
    }
} 

/* Accessibility improvements for mobile dropdowns */
@media (max-width: 1024px) {
    /* Focus styles for keyboard navigation */
    .dropdown > a:focus,
    .dropdown-menu a:focus {
        outline: 2px solid #ffd600;
        outline-offset: 2px;
        background: #4b5d67;
        color: #ffd600;
    }
    
    /* High contrast mode support */
    @media (prefers-contrast: high) {
        .dropdown-menu a {
            border: 1px solid #fff;
            margin: 1px 0;
        }
        
        .dropdown-menu a:hover,
        .dropdown-menu a:focus {
            background: #fff;
            color: #063366;
        }
    }
    
    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        .dropdown-menu,
        .dropdown > a::after,
        .dropdown-menu a,
        .dropdown-menu a::before {
            transition: none;
        }
        
        .dropdown-menu a:hover::before {
            transform: none;
        }
    }
    
    /* Better touch targets for accessibility */
    .dropdown > a,
    .dropdown-menu a {
        min-height: 48px;
        min-width: 48px;
    }
    
    /* Visual feedback for active states */
    .dropdown.active > a {
        background: #4b5d67;
        color: #ffd600;
    }
    
    /* Improved spacing for better readability */
    .dropdown-menu {
        margin: 4px 0;
    }
    
    .dropdown-menu a {
        margin: 2px 0;
        border-radius: 4px;
    }
    
    /* Better visual hierarchy */
    .dropdown-menu a::before {
        font-weight: 900;
        font-size: 1.1em;
    }
    
    /* Loading state for dropdowns */
    .dropdown.loading > a::after {
        content: '⟳';
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 1024px) {
        .dropdown-menu {
            -webkit-overflow-scrolling: touch;
        }
        
        .dropdown > a,
        .dropdown-menu a {
            -webkit-tap-highlight-color: rgba(255, 214, 0, 0.3);
        }
        
        .dropdown-menu a:active {
            -webkit-tap-highlight-color: rgba(255, 214, 0, 0.5);
        }
    }
}

/* Android Chrome specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    @media (max-width: 1024px) {
        .dropdown-menu {
            transform: translateZ(0);
            backface-visibility: hidden;
        }
        
        .dropdown > a,
        .dropdown-menu a {
            -webkit-tap-highlight-color: rgba(255, 214, 0, 0.3);
        }
    }
}

/* Landscape orientation improvements */
@media (max-width: 1024px) and (orientation: landscape) {
    .dropdown-menu {
        max-height: 150px;
        overflow-y: auto;
    }
    
    .dropdown-menu a {
        padding: 10px 20px 10px 50px;
        min-height: 40px;
    }
    
    .nav-links {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    @media (max-width: 1024px) {
        .dropdown-menu a:hover,
        .dropdown-menu a:focus {
            background: #2c3e50;
            color: #ffd600;
        }
        
        .dropdown.active > a {
            background: #2c3e50;
            color: #ffd600;
        }
    }
} 

/* Responsive font sizes for headings and text */
h1 {
  font-size: clamp(1.7rem, 5vw, 2.7rem);
}
h2 {
  font-size: clamp(1.3rem, 4vw, 2rem);
}
h3 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
}
p, li, a, .brief-card, .about-desc, .footer-about p, .footer-links ul, .footer-social ul, .feature-card p {
  font-size: clamp(0.98rem, 2.5vw, 1.08rem);
}

/* Responsive nav links */
.nav-links a {
  font-size: clamp(1rem, 2.5vw, 1.08rem);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Hero background improvements */
.hero, .hero-bg {
  background-size: cover !important;
  background-position: center !important;
  min-height: 320px;
}
.hero {
  min-height: 380px;
  text-align: center;
  padding: 0 10px;
}
@media (max-width: 700px) {
  .hero-slide,
  .hero-bg {
    background-size: cover !important;
    background-position: center center !important;
    min-height: 220px;
    height: 60vw;
    max-height: 60vw;
  }
  .hero {
    min-height: 220px;
    height: auto;
    padding: 0 4vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .slideshow-arrows {
    position: static;
    margin: 12px auto 0 auto;
    width: 100%;
    justify-content: center;
    gap: 24px;
    transform: none;
    padding: 0;
    top: unset;
    left: unset;
    right: unset;
  }
  .arrow-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .arrow-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* Section padding/margin for mobile */
@media (max-width: 700px) {
  .about-section, .features, .home-briefs, .successful-clients {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .footer-content {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

/* Responsive buttons */
.btn, .btn-yellow, .btn-green {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 8px;
}
@media (max-width: 700px) {
  .btn, .btn-yellow, .btn-green {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

/* Prevent text overflow */
.hero-content, .about-section, .features, .home-briefs, .footer-content {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Ensure all section headings are centered on mobile */
@media (max-width: 700px) {
  h1, h2, h3, h4, h5, h6 {
    text-align: center;
  }
}

/* Ensure nav links and buttons are touch-friendly */
@media (max-width: 700px) {
  .nav-links a, .btn, .btn-yellow, .btn-green {
    min-height: 48px;
    font-size: clamp(1rem, 3vw, 1.15rem);
    padding: 14px 18px;
  }
} 
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 8px 18px 8px !important;
    gap: 12px !important;
    text-align: center !important;
  }
  .footer-about, .footer-links, .footer-social {
    min-width: unset !important;
    margin-bottom: 12px !important;
    width: 100% !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex;
    flex-direction: column;
  }
  .footer-links ul, .footer-social ul {
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .footer-links a, .footer-social a {
    font-size: 1.08rem;
    padding: 2px 0;
    display: inline-block;
  }
  .footer-social-icon {
    margin-right: 4px;
    font-size: 1.1rem;
  }
  .footer-bottom {
    padding: 10px 0 6px 0;
    font-size: 0.98rem;
  }
  .footer-bottom hr {
    width: 80%;
    margin: 8px auto 8px auto;
  }
} 