@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f9;
    color: #333;
    scroll-padding-top: 80px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
@media (max-width: 968px) {
    body {
        /* Set a larger padding to clear the fixed mobile header */
        scroll-padding-top: 110px; 
    	font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f9;
    color: #333;
    }
}
*::-webkit-scrollbar {
    display: none;
}
h1, h2, h3, .logo a {
    font-family: 'Montserrat', sans-serif;
}

/* ========== IMPROVED HEADER & NAVIGATION ========== */
header {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 55px;
    margin-right: 1rem;
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.1));
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}
.tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: #45d145;
    font-family: cursive;
    font-weight: bolder;
}
/* Desktop Navigation - Improved */
.nav-desktop {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-desktop li {
    margin: 0;
}

.nav-desktop li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

/* Animated underline effect */
.nav-desktop li a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #4364F7, #6FB1FC);
    transition: transform 0.3s ease;
}

.nav-desktop li a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-desktop li a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-desktop li a.active {
    background: rgba(67, 100, 247, 0.3);
    color: white;
}

/* CTA Button in Navigation */
.nav-desktop li:last-child a {
    background: linear-gradient(135deg, #4364F7, #6FB1FC);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(67, 100, 247, 0.3);
}

.nav-desktop li:last-child a::before {
    display: none;
}

.nav-desktop li:last-child a:hover {
    background: linear-gradient(135deg, #6FB1FC, #4364F7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 100, 247, 0.4);
}

/* Hamburger Menu - Improved */
.hamburger {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Mobile Navigation - Improved */
.nav-mobile {
    display: none;
    flex-direction: column;
    background: linear-gradient(180deg, #001f3f 0%, #003366 100%);
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-mobile a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 1.2rem 2rem;
    text-align: left;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #4364F7;
    color: white;
    padding-left: 2.5rem;
}

.nav-mobile.open {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== END OF NAVIGATION STYLES ========== */

/* Main Content */


/* ========== FULL SCREEN SWIPER STYLES ========== */
/* ADD/REPLACE these styles in your style.css */

/* Remove default section padding for home */
/* Remove default main padding */
main {
    margin: 0;
    padding: 0;
}

/* Remove default section padding for home */
section#home {
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    position: relative;
}

/* --- HERO SLIDER: GLIDE.JS INTEGRATION --- */

/* Full screen hero slider - FIXED */
/* The .hero-slider class remains, now applied to the .glide element */
.hero-slider {
    width: 100vw;
    height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
    /* Full width fix (to handle content wider than container) */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Make glide container full screen */
/* .glide is the top-level container now */
.glide {
    width: 100%;
    height: 100%;
}

/* Full screen slides */
/* .glide__slide replaces .swiper-slide */
.glide__slide {
    /* CRITICAL: Allows .hero-text to be positioned absolutely inside it */
    position: relative; 
    
    /* Center the contents (which is just the hero-text block) */
    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    text-align: center;
    width: 100%;
    height: 100vh;
}

/* Full screen background images */
/* The image is inside the glide__slide <li> */
.glide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute; /* CRITICAL: Position absolutely */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1; /* Send behind the text */
}

/* Hero text responsive sizing (Remains the same as this is content-specific) */
.hero-text {
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 10px;
    max-width: 90%;
    backdrop-filter: blur(5px);
}

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

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Glide Pagination Dots (using your existing Swiper class name for visual consistency) */
/* .glide__bullets contains the pagination */
.swiper-pagination { 
    /* The main fix is here: */
    position: absolute; /* CRITICAL: Takes the bullets out of the flow */
    left: 50%;
    transform: translateX(-50%); /* Centers the bullets horizontally */
    
    /* Ensure this bottom value works for you: */
    bottom: 30px !important;
    z-index: 10;
}

.glide__bullet { /* Target the actual Glide bullet element */
    background: white; /* Base color */
    opacity: 0.7;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
    padding: 0;
    border: none;
    cursor: pointer;
}

.glide__bullet--active { /* Glide's active class */
    opacity: 1;
}
/* --- ARROW POSITIONING (Replaces previous attempts) --- */
.glide__arrows {
    position: absolute; 
    top: 50%; 
    left: 0;
    width: 100%; 
    display: flex;
    justify-content: space-between; 
    transform: translateY(-50%); 
    z-index: 10;
    pointer-events: none; /* Allows clicks to pass through the container */
}

/* --- ARROW BUTTON STYLING & ICON INJECTION (CRITICAL) --- */

/* Base styling for the buttons (using your custom classes for style retention) */
.swiper-button-next, 
.swiper-button-prev { 
    color: white !important;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; 
    z-index: 10;
    pointer-events: auto; /* Re-enable clicks on the button area */
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 2.5rem; /* Determines size of the icon */
    padding: 0 20px; /* Space off the edge */
}

/* Hover State: Show arrows when hovering over the parent slider */
.hero-slider:hover .swiper-button-next,
.hero-slider:hover .swiper-button-prev {
    opacity: 0.8; 
    visibility: visible;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
    opacity: 1;
}

/* --- GLIDE ICON INJECTION (THE FIX) --- */
/* Target the buttons using Glide's specific arrow classes for content */
.glide__arrow::before {
    font-family: 'Font Awesome 6 Free'; 
    font-weight: 900; 
    content: '';
    display: inline-block;
}

.glide__arrow--left::before {
    content: '\f053'; /* Unicode for solid left chevron */
}

.glide__arrow--right::before {
    content: '\f054'; /* Unicode for solid right chevron */
}
/* CTA Button in hero (No change needed) */
.cta-button {
    background-color: white;
    color: #0052D4;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: inline-block;
}

.cta-button:hover {
    background-color: #f4f7f9;
    color: #0041ab;
    transform: scale(1.05);
}

/* ========== RESPONSIVE DESIGN ========== */
/* All Media Queries only require updating the selector targets */

/* Desktop/Laptop screens (1366x768, 1920x1080, etc.) */
@media (min-width: 1025px) {
    .hero-slider {
        height: 100vh;
    }
    
    .glide__slide { /* Updated selector */
        height: 100vh;
    }
}

/* Tablets (portrait and landscape) */
@media (max-width: 1024px) {
    .hero-text {
        padding: 2.5rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.15rem;
    }
}

/* Tablets (portrait) */
@media (max-width: 768px) {
    .hero-text {
        padding: 2rem;
        max-width: 85%;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .swiper-button-next, 
    .swiper-button-prev {
        display: none; /* Hide arrows on tablets for cleaner look */
    }
    
    .swiper-pagination {
        bottom: 20px !important;
    }
}

/* Mobile devices */
@media (max-width: 640px) {
    .hero-slider {
        height: 100vh; /* Ensures full height on mobile */
        min-height: -webkit-fill-available; /* iOS Safari fix */
    }
    
    .glide__slide { /* Updated selector */
        height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    .hero-text {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .glide__bullet { /* Updated selector */
        width: 10px;
        height: 10px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .hero-text {
        padding: 1.2rem;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
}

/* Landscape laptop/desktop (like 1366x768) */
@media (max-height: 800px) and (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.15rem;
    }
    
    .hero-text {
        padding: 2.5rem;
    }
}

/* Landscape mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-text {
        padding: 1rem 2rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .swiper-pagination {
        bottom: 15px !important;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero-slider,
    .glide__slide { /* Updated selector */
        height: -webkit-fill-available;
    }
}
/* Ensure sections after hero start properly */
section#services {
    margin-top: 0;
    padding: 5rem 2rem;
}

h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #0052D4;
}

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

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.service-card i {
    font-size: 3rem;
    color: #4364F7;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0052D4;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

#about, #why-choose-us {
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

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

.why-choose-us-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-choose-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.why-choose-us-card i {
    font-size: 2.5rem;
    color: #4364F7;
    margin-bottom: 1rem;
}

.why-choose-us-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0052D4;
}

.why-choose-us-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

#contact {
    text-align: center;
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
}

#contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
}

#contact-form button {
    background-color: #0052D4;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

#contact-form button:hover {
    background-color: #0041ab;
}

#form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

#form-status.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

#form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.honeypot {
   position: absolute;
    left: -9999px;
    height: 1px;
    width: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none; 
    z-index: -1;
}

footer {
    padding: 1rem 0;
    background-color: #001f3f;
    color: white;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-nav {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #6FB1FC;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
    color: #6FB1FC;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    nav {
        padding: 1rem 2rem;
    }

    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .logo img {
        height: 45px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}
#about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 2rem;
    margin-top: 0;
    margin-bottom: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-hero h2 {
    font-size: 3.5rem;
    color: #001f3f;
    margin-bottom: 1rem;
}

.about-tagline {
    font-size: 1.4rem;
    color: #4364F7;
    font-weight: 500;
    font-style: italic;
}

/* Story Section */
.about-story {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.story-content h3 {
    font-size: 2rem;
    color: #001f3f;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4364F7, #6FB1FC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    color: #001f3f;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Core Values */
.values-section {
    margin-bottom: 4rem;
}

.values-section h3 {
    font-size: 2.5rem;
    color: #001f3f;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(67, 100, 247, 0.15);
}

.value-item i {
    font-size: 3rem;
    color: #4364F7;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Expertise Section */
.expertise-section {
    background: linear-gradient(135deg, #001f3f, #003366);
    padding: 4rem 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    color: white;
}

.expertise-section h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

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

.expertise-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.expertise-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #6FB1FC;
    margin-bottom: 0.5rem;
}

.expertise-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Technology Stack */
.tech-stack-section {
    margin-bottom: 4rem;
}

.tech-stack-section h3 {
    font-size: 2.5rem;
    color: #001f3f;
    text-align: center;
    margin-bottom: 1rem;
}

.tech-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 3rem;
}

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

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.tech-category h4 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-category h4 i {
    color: #4364F7;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-tags span {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #0052D4;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Team Section */
.team-intro {
    margin-bottom: 4rem;
}

.team-intro h3 {
    font-size: 2.5rem;
    color: #001f3f;
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro > p {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar i {
    font-size: 3rem;
    color: #4364F7;
}

.team-member h4 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 0.8rem;
}

.team-member p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, #4364F7, #6FB1FC);
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.about-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #4364F7;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-story {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h2 {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 640px) {
    .about-hero h2 {
        font-size: 2rem;
    }
    
    .expertise-number {
        font-size: 2.5rem;
    }
    
    .about-cta h3 {
        font-size: 1.8rem;
    }
}