/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    width: 100%;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    /* justify-content: center; */
    padding: 0 0px;
}

.navbar {
    padding: 0 0;
    width: 100vw;
    padding: 0 0px;
    /* background-color: blue; */
}

.navbar .container {
    width: 100%;
    display: flex;
    background-color: red;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25px 0.5px;
    /* background-color: yellow; */
    margin-right: 1.5rem;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    /* gap: 12px; */
    /* margin-right: 5px ; */
    flex-shrink: 0;
    min-width: 0;
    background-color: red;
}

.nav-brand a {
    background-color: gray;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 80px;
    margin: auto;
    width: auto;
    /* max-width: 200px; */
    /* object-fit: contain; */
}

.brand-text {
    display: none; /* Hide text since logo already shows company name */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-menu li::before {
    display: none; /* Remove bullet points */
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0.7rem;
    margin-right: 2px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5aa0;
    background: rgba(44, 90, 160, 0.08);
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2c5aa0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2c5aa0;
    color: white;
    border: 1px solid white;
}

/* .btn-primary:hover {
    background: #1e3f73;
    transform: translateY(-2px);
} */
.btn-primary:hover,
.btn-outline:hover {
    /* background: #2c5aa0; */
    background: #fff;
    /* color: #fff; */
    color: #2c5aa0;
    /* border-color: #2c5aa0; */
    border: 1px solid #2c5aa0;
}

.btn-secondary,
.btn-outline {
    background: #f4f8fd;
    color: #2c5aa0;
    border: 1px solid #2c5aa0;
    opacity: 1;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(44,90,160,0.07);
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: #2c5aa0;
    color: #fff;
    /* border-color: #fff; */
    border: 1px solid #fff;
}

.btn[disabled],
.btn:disabled,
.btn[aria-disabled="true"] {
    background: #eaf1fa !important;
    color: #b0b8c9 !important;
    border: 2px solid #b0b8c9 !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><polygon fill="%23ffffff" fill-opacity="0.1" points="0,100 1000,0 1000,100"/></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* background: rgba(40, 69, 91, 0.9); */
    padding: 20px;
    width: fit-content;
    border-radius: 10px;
    height: 100%;
}

.hero-content .container{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero-text h1 {
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}
.hero-text {
    /* text-align: center; */
    /* text-align: left; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background-color: rgba(37, 52, 83, 0.9);
    text-align: left;    /* align-items: center; */
    padding: 2rem 6rem;
    border-radius: 10px;
    /* width: 2/3; */
    /* background: gray; */
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    /* background: yellow; */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    top: 50px;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    /* background-color: blue; */
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: blue; */
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.slide .hero-content {
    /* position: absolute;
    top: 50%;
    left: 50%; */
    /* transform: translate(-50%, -50%); */
    color: white;
    text-align: center;
    width: 80%;
    /* z-index: 2; */
    /* background-color: blue; */
}

.slide .hero-content h1,
.slide .hero-content .hero-subtitle,
.slide .hero-content .hero-description {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Sponsors Section */
.sponsors {
    padding: 80px 0;
    background: #f8f9fa;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.sponsors-grid img {
    max-width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.sponsors-grid img:hover {
    filter: grayscale(0);
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* About Home Section */
.about-home {
    padding: 100px 0;
}

.about-home h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.about-home p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.value-item i {
    font-size: 2rem;
    color: #2c5aa0;
    margin-top: 0.5rem;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.value-item p {
    color: #666;
}

/* Services Overview */
.services-overview {
    /* background: #f8f9fa; */
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    background: linear-gradient(135deg, #2c5aa0, #1e3f73);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
}

.feature-list h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5aa0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-icon {
    background: linear-gradient(135deg, #2c5aa0, #1e3f73);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-content p {
    color: #666;
}

.tagline-box {
    background: linear-gradient(135deg, #2c5aa0, #1e3f73);
    color: white;
    padding: 3rem;
    border-radius: 15px;
}

.tagline-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.tagline-box p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.achievement-list {
    list-style: none;
}

.achievement-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.achievement-list i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #2c5aa0;
    font-weight: 600;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c5aa0, #1e3f73);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    /* height: 40px; */
    width: 200px;
    /* width: auto; */
}

.footer-brand h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #2c5aa0;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contact-info i {
    color: #2c5aa0;
    margin-top: 0.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.6;
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #2c5aa0, #1e3f73);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.page-header h1 {
    font-size: 3rem;
    /* margin-bottom: 1rem; */
}

.page-header .container {
    background: rgba(40, 69, 91, 0.9);
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-content {
    padding: 80px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.leader-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-image {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s;
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-info {
    padding: 2rem;
}

.leader-info h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.leader-info .title {
    color: #666;
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-info p {
    color: #666;
    line-height: 1.6;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1000px) {
    .nav-menu {
        gap: 0;
    }
    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        width: 90%;
        margin: 0 auto 0.5rem;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Mobile layout improvements */
    .container {
        padding: 0 20px;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col-md-6 {
        flex: none;
        max-width: 100%;
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-text{
        padding: 1rem;
        border-radius: 10px;
        width: 100%;
        min-height: 80%;
    }
    .hero-content {
        padding: 0;
    }
    .hero-content .container {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .hero-buttons {
        justify-content: center;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-content {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-home {
        padding: 80px 0;
    }
    
    .about-home h2 {
        font-size: 2rem;
    }
    
    .services-overview {
        padding: 80px 0;
    }
    
    .why-choose-us {
        padding: 80px 0;
    }
    
    .stats {
        padding: 60px 0;
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .mission-values {
        gap: 1.5rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .tagline-box {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 45px;
        max-width: 100px;
    }
    
    .container {
        padding: 0 15px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }

    .footer-logo {
        width: 200px;
        margin: auto;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .about-home h2 {
        font-size: 1.7rem;
    }
    
    .feature-list h2 {
        font-size: 1.7rem;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 0.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .leader-card {
        margin-bottom: 1rem;
    }
    
    .leader-image {
        height: 280px;
    }
    
    .leader-info {
        padding: 1.5rem;
    }
    
    .leader-info h3 {
        font-size: 1.3rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .tagline-box {
        padding: 1.5rem;
    }
    
    .tagline-box h3 {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 40px 0 20px;
        text-align: left;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}

/* Additional mobile-specific optimizations */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .stat-item:hover,
    .testimonial-card:hover,
    .leader-card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .nav-menu a:hover {
        transform: none;
    }
    
    /* Touch active states */
    .service-card.touch-active,
    .stat-item.touch-active,
    .testimonial-card.touch-active,
    .leader-card.touch-active {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .btn.touch-active {
        transform: translateY(-1px);
    }
}

/* iOS specific fixes */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="search"],
input[type="time"],
input[type="week"],
textarea,
select {
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    border-radius: 5px;
}

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Better tap targets for mobile */
@media (max-width: 768px) {
    .btn,
    .nav-menu a,
    .hamburger {
        min-height: 44px;
        min-width: 44px;
    }
    
    .hamburger {
        padding: 8px;
    }
}
