/* GLOBAL STYLES */
/**{*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    box-sizing: border-box;*/
/*    font-family: 'Poppins', sans-serif;*/
/*}*/
body{
    background: #f7faff;
    overflow-x: hidden;
}

/* HERO SECTION */
.hero{
    margin-top:-100px;
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(135deg, #051329, #1A315B);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}
.circle{
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    animation: float 8s infinite ease-in-out;
}
.one{ width: 500px; height: 500px; top: -200px; right: -150px; }
.two{ width: 350px; height: 350px; bottom: -150px; left: -100px; }

.hero-content{
    max-width: 850px;
    color: #ffffff; /* Explicitly forced white */
    z-index: 10;
}
.hero span{
    background: #ffffff;
    color: #1E3561;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}
.hero h1{
    font-size: 48px;
    color: #ffffff !important; /* Force visibility */
    margin: 20px 0;
    line-height: 1.25;
    font-weight: 700;
}
.hero p{
    font-size: 18px;
    color: #e2e8f0 !important; /* Bright light grey text */
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}
.btn{
    display: inline-block;
    padding: 15px 38px;
    background: #f4b400; /* Matching contact form gold */
    color: #ffffff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: transform .3s standard, box-shadow .3s;
    box-shadow: 0 4px 15px rgba(244,180,0,0.3);
}
.btn:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(244,180,0,0.5);
}

/* ABOUT SECTION */
.about{
   
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img img{
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.about-content h2{
    font-size: 40px;
    color: #081b33;
    margin-bottom: 20px;
    font-weight: 700;
}
.about-content p{
    line-height: 1.9;
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
}
.about-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.about-list div {
    font-weight: 500;
    color: #2d3748;
    display: flex;
    align-items: center;
}
.about-list i{
    color: #1E3561;
    margin-right: 12px;
    font-size: 18px;
}

/* STATS SECTION SECTION */
.stats-wrapper {
    background-color: #081b33;
    padding: 80px 8%;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
}
.stats{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.stat-card, .stat-card2{
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: transform .4s;
}
.stat-card:hover, .stat-card2:hover{
    transform: translateY(-10px);
}
.stat-card i, .stat-card2 i{
    font-size: 32px;
    color: #1E3561;
    margin-bottom: 15px;
    display: inline-block;
}
.stat-card h3, .stat-card2 h3{
    font-size: 34px;
    color: #081b33;
    font-weight: 700;
    margin-bottom: 8px;
}
.stat-card p, .stat-card2 p{
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* JOURNEY SECTION */
.journey{
    padding: 0px 8%;
}
.section-title{
        margin-top: -100px;
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2{
    font-size: 38px;
    color: #081b33;
    font-weight: 700;
}
.section-title p{
    color: #718096;
    margin-top: 10px;
}
.timeline{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.timeline-item{
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,.04);
}
.timeline-item h3{
    color: #1E3561;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.timeline-item p{
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

/* VISION SECTION */
.vision{
    
    padding: 60px 8% 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.vision-card{
    background: #1E3561;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    color: #ffffff;
}
.vision-card i{
    font-size: 34px;
    color: #f4b400;
    margin-bottom: 20px;
    display: inline-block;
}
.vision-card h3{
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}
.vision-card p{
    color: #e2e8f0;
    line-height: 1.7;
}

/* WHY CHOOSE US */
.why{
    padding: 0 8% 120px;
}
.why-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.why-card{
    background: #ffffff;
    padding: 35px 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
    transition: transform .3s;
}
.why-card:hover{
    transform: translateY(-5px);
}
.why-card i{
    font-size: 32px;
    color: #1565D8;
    margin-bottom: 18px;
}
.why-card h3{
    font-size: 16px;
    color: #081b33;
    font-weight: 600;
}

/* CONTACT SECTION */
.contact-section{
    background: linear-gradient(135deg, #051329, #0d2c54);
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
}
.contact-section::before{
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.02);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}
.contact-container{
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 5;
}
.left-contact{
    color: white;
}
.left-contact h2{
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}
.name p{
    font-size: 18px;
    font-weight: 600;
    color: #f4b400;
    line-height: 1.6;
    margin-bottom: 35px;
}
.contact-info{
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.contact-info i{
    color: #f4b400;
    font-size: 20px;
    margin-top: 4px;
}
.contact-info p{
    font-size: 15px;
    line-height: 1.7;
    color: #e2e8f0;
}
.social-icons{
    margin-top: 35px;
    display: flex;
    gap: 15px;
}
.social-icons a{
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: .3s;
}
.social-icons a:hover{
    background: #f4b400;
    transform: translateY(-5px);
}

/* FORM GRID AND DROPDOWNS */
.contact-form{
    background: rgba(255,255,255,.08);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,0.1);
}
.form-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* UNIQUE AVS ABOUT SECTION */
.avs-about {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #f7faff; /* Page layout background match */
}

.avs-about-img img {
    width: 100%;
    max-width: 550px;
    display: block;
    margin: 0 auto;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.avs-about-content h2 {
    font-size: 40px;
    color: #081b33;
    margin-bottom: 20px;
    font-weight: 700;
}

.avs-about-content p {
    line-height: 1.9;
    color: #555555;
    font-size: 16px;
    margin-bottom: 25px;
}

.avs-about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.avs-about-list div {
    font-weight: 500;
    color: #2d3748;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.avs-about-list i {
    color: #1E3561;
    margin-right: 12px;
    font-size: 18px;
}

/* RESPONSIVE RESPONSIVENESS FOR NEW CLASSES */
@media (max-width: 992px) {
    .avs-about {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 5%;
    }
    .avs-about-content h2 {
        font-size: 32px;
        text-align: center;
    }
    .avs-about-content p {
        text-align: center;
    }
    .avs-about-list {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .avs-about-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    outline: none;
    border-radius: 10px;
    background: #ffffff;
    font-size: 14px;
    color: #2d3748;
    font-family: inherit;
}
.contact-form select {
    cursor: pointer;
    color: #4a5568;
}
.contact-form textarea{
    grid-column: span 2;
    resize: none;
    height: 130px;
}
.submit-btn{
    margin-top: 25px;
    background: #f4b400;
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: .3s;
    width: 100%;
}
.submit-btn:hover{
    background: #e0a300;
    box-shadow: 0 10px 25px rgba(244,180,0,.35);
}

/* ANIMATIONS */
@keyframes float{
    50%{ transform: translateY(25px); }
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px){
    .about, .vision, .contact-container{
        grid-template-columns: 1fr;
    }
    .stats, .timeline, .why-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1{
        font-size: 38px;
    }
}
@media (max-width: 600px){
    .stats, .timeline, .why-grid, .form-grid{
        grid-template-columns: 1fr;
    }
    .contact-form textarea{
        grid-column: span 1;
    }
    .hero h1{
        font-size: 32px;
    }
    .about, .stats-wrapper, .journey, .contact-section {
        padding: 60px 20px;
    }
}