/* Section */
.success-story{
    padding:0px 5%;
    background:linear-gradient(135deg,#f8fbff,#edf4ff);
}

/* Title */
.section-title{
    text-align:center;
    margin-bottom:60px;
    animation:fadeDown 1s ease;
}

.section-title span{
    color:#0B274C;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h1{
    font-size:50px;
    color:#0A264B;
    margin:15px 0;
    font-weight:800;
}

.section-title p{
    font-size:20px;
    color:#666;
}

/* Overview */
.overview{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:80px;
}

.overview-content{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    animation:slideLeft 1s ease;
}

.overview-content h2{
    color:#0A264B;
    margin-bottom:20px;
    font-size:32px;
}

.overview-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

.highlight-card{
    background:linear-gradient(135deg,#0A264B,#0A264B);
    color:white;
    padding:50px 25px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,82,204,0.3);
    animation:float 3s infinite;
}

.highlight-card h2{
    font-size:60px;
    margin-bottom:10px;
}

.highlight-card p{
    font-size:20px;
}

/* Achievement Cards */
.achievement-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:80px;
}

.achievement-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
}

.achievement-card:hover{
    transform:translateY(-10px);
}

.achievement-card i{
    font-size:45px;
    color:#0A264B;
    margin-bottom:15px;
}

.achievement-card h3{
    color:#0A264B;
    margin-bottom:10px;
}

/* Section Heading */
.section-heading{
    text-align:center;
    font-size:38px;
    color:#0A264B;
    margin-bottom:50px;
    font-weight:700;
}

/* Sector Cards */
.sector-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-bottom:80px;
}

.sector-card{
    background:white;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.sector-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#0A264B;
}

.sector-card:hover{
    transform:translateY(-10px);
}

.sector-card i{
    font-size:45px;
    color:white;
    margin-bottom:20px;
}

.sector-card h3{
    color:#0A264B;
    margin-bottom:15px;
}

.sector-card p{
    color:#666;
    line-height:1.8;
}

/* Value Delivered */
.value-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-bottom:80px;
}

.value-card{
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.value-card:hover{
    transform:scale(1.04);
}

.value-card i{
    color:#0A264B;
    font-size:30px;
    margin-bottom:15px;
}

.value-card p{
    color:#555;
    line-height:1.8;
}

/* Why Trust Us */
.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-bottom:80px;
}

.trust-card{
    background:white;
    text-align:center;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.trust-card:hover{
    transform:translateY(-10px);
}

.trust-card i{
    font-size:40px;
    color:#0A264B;
    margin-bottom:15px;
}

/* Quote */
.outcome{
    background:linear-gradient(135deg,#0A264B,#0A264B);
    color:white;
    padding:50px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.outcome i{
    font-size:40px;
    margin-bottom:20px;
}

.outcome p{
    font-size:20px;
    line-height:1.9;
}

/* Animations */
@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

/* Responsive */
@media(max-width:992px){

    .overview{
        grid-template-columns:1fr;
    }

    .achievement-grid{
        grid-template-columns:1fr;
    }

    .section-title h1{
        font-size:38px;
    }
}

@media(max-width:768px){

    .success-story{
        padding:60px 20px;
    }

    .section-title h1{
        font-size:32px;
    }

    .section-heading{
        font-size:30px;
    }

    .highlight-card h2{
        font-size:45px;
    }

    .outcome p{
        font-size:17px;
    }
}
/* =========================
 CONTACT SECTION
========================= */

.contact-section{
background:linear-gradient(135deg,#0A264B,#0A264B);
padding:80px 8%;
position:relative;
overflow:hidden;
}

.contact-section::before{
content:'';
position:absolute;
width:400px;
height:400px;
background:rgba(255,255,255,.05);
border-radius:50%;
top:-120px;
right:-120px;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:40px;
align-items:center;
}

.left-contact{
color:white;
}

.left-contact h2{
font-size:34px;
margin-bottom:30px;
}

.contact-info{
margin-bottom:25px;
display:flex;
gap:15px;
align-items:flex-start;
transition:.4s;
}

.contact-info:hover{
transform:translateX(10px);
}

.contact-info i{
color:#f4b400;
font-size:20px;
margin-top:5px;
}

.contact-info p{
font-size:14px;
line-height:1.8;
}

.social-icons{
margin-top:30px;
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;
transition:.4s;
backdrop-filter:blur(10px);
}

.social-icons a:hover{
background:#f4b400;
transform:translateY(-8px);
}
/* FORM */

.contact-form{
background:rgba(255,255,255,.12);
padding:35px;
border-radius:20px;
backdrop-filter:blur(20px);
box-shadow:0 15px 40px rgba(0,0,0,.2);
animation:fadeUp 1s ease;
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:14px;
border:none;
outline:none;
border-radius:10px;
background:rgba(255,255,255,.95);
font-size:14px;
}

.contact-form textarea{
grid-column:span 2;
resize:none;
height:120px;
}

.submit-btn{
margin-top:20px;
background:#f4b400;
color:white;
border:none;
padding:14px 35px;
font-weight:600;
border-radius:50px;
cursor:pointer;
transition:.4s;
}

.submit-btn:hover{
transform:translateY(-5px);
box-shadow:0 15px 25px rgba(244,180,0,.4);
}
.name{
    margin-left: 40px;
}
/* Section Title */

.section-title{
    text-align:center;
    margin-bottom:70px;
}
.section-title h2{
    color:#0A264B;
    font-size:48px;
    font-weight:800;
    text-transform:uppercase;
    position:relative;
    display:inline-block;
}
.section-title h2::before,
.section-title h2::after{
    content:'';
    position:absolute;
    top:50%;
    width:130px;
    height:4px;
    border-radius:20px;
    background:linear-gradient(90deg,#0d6efd,#ffc107);
}

.section-title h2::before{
    right:110%;
}
.section-title h2::after{
    left:110%;
}
.container{
    max-width:1400px;
    margin-top: 90px;
}
/* Grid */
.sector-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
/* Cards */
.sector-card{
    position:relative;
    background:rgba(255,255,255,0.95);
    border-radius:25px;
    padding:35px 25px;
    text-align:center;
    overflow:hidden;
    transition:0.6s;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    opacity:0;
    transform:translateY(50px);
}

.sector-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:25px;
    padding:2px;
    background:linear-gradient(
    45deg,
    #0A264B,
    #00c6ff,
    #ffc107,
    #0A264B);
    background-size:300% 300%;
    animation:borderAnimation 5s linear infinite;

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
}

@keyframes borderAnimation{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

.sector-card:hover{
    transform:translateY(-15px) scale(1.03);
    box-shadow:0 20px 50px rgba(13,110,253,.25);
}

/* Icon */

.icon-box{
    width:100px;
    height:100px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#0A264B,#00c6ff);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    margin-bottom:25px;
    animation:float 3s ease-in-out infinite;
}

.icon-box::after{
    content:'';
    position:absolute;
    width:118px;
    height:118px;
    border:2px dashed #0A264B;
    border-radius:50%;
    animation:spin 12s linear infinite;
}
.icon-box i{
    color:white;
    font-size:42px;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

@keyframes float{
    50%{
        transform:translateY(-10px);
    }
}

.sector-card:hover .icon-box{
    transform:scale(1.1);
}

.sector-card h3{
    color:#0A264B;
    font-size:22px;
    margin-top:72px;
    margin-bottom:15px;
    font-weight:700;
}

.sector-card:hover h3{
    color:#0A264B;
}

.sector-card p{
    color:#666;
    line-height:1.8;
    font-size:14px;
}

/* Educational Card */

.education-card{
    margin-top:40px;
    background:white;
    border-radius:30px;
    padding:40px;
    display:flex;
    align-items:center;
    gap:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
    transition:.5s;
    opacity:0;
    transform:translateY(50px);
}

.education-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:8px;
    height:100%;
    background:linear-gradient(#0A264B,#0A264B,#ffc107);
}

.education-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(13,110,253,.2);
}

.edu-icon{
    min-width:120px;
    height:120px;
    border-radius:50%;
    background:linear-gradient(135deg,#0A264B,#0A264B);
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}
.edu-icon::after{
    content:'';
    position:absolute;
    width:138px;
    height:138px;
    border:2px dashed #0A264B;
    border-radius:50%;
    animation:spin 12s linear infinite;
}
.edu-icon i{
    color:white;
    font-size:50px;
}
.edu-content h3{
    color:#0A264B;
    font-size:28px;
    margin-bottom:10px;
}

.edu-content p{
    color:#666;
    line-height:1.9;
}

/* Responsive */

@media(max-width:991px){

.section-title h2{
    font-size:35px;
}

.section-title h2::before,
.section-title h2::after{
    display:none;
}

.education-card{
    flex-direction:column;
    text-align:center;
}

}

@media(max-width:576px){

.section-title h2{
    font-size:28px;
}

.sector-card{
    padding:30px 20px;
}

}
/* Header */

.header-section{
background:#fff;
padding:10px 0;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.navbar-brand img{
height:80px;
margin-right: 20;
}
.nav-link{
font-weight:200;
color:#0A264B;
margin:0 10px;
}
.nav-link:hover{
color:#c89b2d;
}
.contact-btn{
background:#0A264B;
color:#fff;
padding:10px 20px;
border-radius:8px;
}
