/* Start custom CSS for html, class: .elementor-element-537965a */*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    background:#f4f9ff;
    color:#2d2d2d;
    line-height:1.7;
}

.container{
    width:85%;
    margin:auto;
}

.section-spacing{
    padding:110px 0;
}

/* HERO */
.hero{
    position:relative;
    height:100vh;
    background:url('https://images.unsplash.com/photo-1509062522246-3755977927d7') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(0,50,130,0.9), rgba(0,160,255,0.8));
}

.hero-content{
    position:relative;
    max-width:750px;
    z-index:2;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    margin-bottom:30px;
}

.btn-primary{
    padding:14px 35px;
    background:white;
    color:#003d99;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#e6f2ff;
    transform:translateY(-3px);
}

/* ABOUT SECTION - PROFESSIONAL STYLE */
.about {
    background: #ffffff;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT SIDE */
.section-tag {
    font-size: 13px;
    font-weight: 600;
    color: #0056b3;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-left h2 {
    font-size: 34px;
    color: #002b80;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-left .lead {
    font-weight: 500;
    margin-bottom: 20px;
    color: #444;
}

.about-left p {
    margin-bottom: 15px;
    color: #555;
}

/* POINTS */
.about-points {
    margin-top: 25px;
}

.about-points div {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.about-points i {
    color: #007bff;
    margin-right: 10px;
}

/* RIGHT SIDE IMAGE CARD */
.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.15);
}

.image-card img {
    width: 100%;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 43, 128, 0.85), transparent);
    color: white;
}

.image-overlay h3 {
    font-size: 20px;
}

/* SUBTLE BACKGROUND ACCENT SHAPE */
.about::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,86,179,0.08), transparent 70%);
    top: 50px;
    right: 50px;
    z-index: 0;
}

.about-wrapper > div {
    position: relative;
    z-index: 2;
}

/* RESPONSIVE */
@media(max-width:900px){
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-left h2 {
        font-size: 26px;
    }
}


/* MISSION */
.mission{
    background:radial-gradient(circle at top left, #eaf5ff, #ffffff);
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.mission-card{
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,86,179,0.08);
    text-align:center;
    transition:.3s;
}

.mission-card i{
    font-size:35px;
    color:#007bff;
    margin-bottom:15px;
}

.mission-card:hover{
    transform:translateY(-10px);
}

/* WHY CHOOSE US SECTION */
.why-choose {
    padding: 110px 0;
    background: linear-gradient(to bottom, #f4f9ff, #eaf5ff);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #003d99;
    margin-bottom: 15px;
}

.section-header p {
    color: #555;
    font-size: 16px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD DESIGN */
.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 86, 179, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #0056b3, #00aaff);
    top: 0;
    left: 0;
}

.why-card i {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #002b80;
}

.why-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.18);
}

.why-card:hover i {
    transform: scale(1.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/* CTA */
.cta{
    background:linear-gradient(135deg,#003d99,#00aaff);
    padding:100px 0;
    text-align:center;
    color:white;
}

.btn-secondary{
    display:inline-block;
    margin-top:25px;
    padding:14px 40px;
    background:white;
    color:#003d99;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:#e6f2ff;
    transform:translateY(-3px);
}

/* RESPONSIVE */
@media(max-width:900px){
    .about-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:32px;
    }
}/* End custom CSS */