<style>
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
   font-family:'Poppins',sans-serif;
}

body{
font-family:'Inter',sans-serif;
}

h1,h2,h3,h4,h5,h6{
font-family:'Plus Jakarta Sans',sans-serif;
}
html{
    scroll-behavior:smooth;
}

/* =========================
   TOP HEADER
========================= */

.top-header{
    width:100%;
    background:#0b8f4d;
    color:#fff;
    padding:10px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-left{
    display:flex;
    gap:25px;
    align-items:center;
    flex-wrap:wrap;
}

.top-left span{
    font-size:14px;
}

.top-left i{
    margin-right:8px;
}

.social-icons{
    display:flex;
    gap:12px;
	margin-right:70px;
}

.social-icons a{
    width:35px;
    height:35px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:0.4s;
}

.social-icons a:hover{
    background:#fff;
    color:#0b8f4d;
    transform:translateY(-3px);
}

/* =========================
   MAIN HEADER
========================= */

.main-header{
    width:100%;
    background:#fff;
    padding:12px 2%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#0b8f4d;
    flex-shrink:0;
}
.logo span{
    color:#222;
}
.logo img{
    max-height:70px;
    width:auto;
    display:block;
}

nav{
    flex:1;
    display:flex;
    justify-content:flex-start;
    margin-left:40px;
}
.menu{
    list-style:none;
    display:flex;
    gap:2px;
    align-items:center;
}

.menu li{
    position:relative;
}

.menu li a{
    text-decoration:none;
    color:#222;
    padding:12px 14px;
    display:block;
    font-size:14px;
    font-weight:500;
    transition:0.4s;
    border-radius:8px;
    white-space:nowrap;
}

.menu li a:hover{
    background:#0b8f4d;
    color:#fff;
}

/* Dropdown */

.dropdown{
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    background:#ff7b00;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    border-radius:10px;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.4s;
    z-index:999;
}

.dropdown li{
    width:100%;
}

.dropdown li a{
    padding:12px 18px;
    border-bottom:1px solid #f1f1f1;
}

.menu li:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#0b8f4d;
}

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:100%;
        right:-100%;
        width:300px;
        background:#fff;
        height:100vh;
        transition:0.5s;
        box-shadow:-5px 0 20px rgba(0,0,0,0.08);
        padding:30px 20px;
    }

    nav.active{
        right:0;
    }

    .menu{
        flex-direction:column;
    }

    .menu li{
        width:100%;
    }

    .dropdown{
        position:relative;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        display:none;
        margin-left:15px;
    }

    .menu li:hover .dropdown{
        display:block;
    }

}

/* =========================
   HERO SLIDER
========================= */

.hero-slider{
    position:relative;
    width:100%;
    height:45vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s ease-in-out;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.slide-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    color:#fff;
    max-width:650px;
    z-index:2;
}

.slide-content h1{
    font-size:55px;
    line-height:1.2;
    margin-bottom:20px;
}

.slide-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.banner-btn{
    display:inline-block;
    background:#0b8f4d;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:0.4s;
    font-weight:600;
}

.banner-btn:hover{
    background:#fff;
    color:#0b8f4d;
    transform:translateY(-3px);
}

/* Slider Buttons */

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,0.2);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:10;
    transition:0.4s;
}

.slider-btn:hover{
    background:#0b8f4d;
}

.prev{
    left:25px;
}

.next{
    right:25px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .top-header{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .slide-content{
        left:5%;
        right:5%;
    }

    .slide-content h1{
        font-size:34px;
    }

    .slide-content p{
        font-size:15px;
    }

    .hero-slider{
        height:35vh;
    }

}



body{
    font-family:'Inter',sans-serif;
    background:#f7faf8;
    color:#222;
    overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Plus Jakarta Sans',sans-serif;
}

img{
    width:100%;
    display:block;
}

img_NJ{
    width:40%;
    display:block;
}


.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:90px 0;
}

.light-bg{
    background:#ffffff;
}

.sub-heading{
    display:inline-block;
    background:#e6f7ee;
    color:#0b8f4d;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:46px;
    margin-bottom:20px;
    color:#0b8f4d;
}

.section-title p{
    max-width:800px;
    margin:auto;
    line-height:1.9;
    color:#666;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    background:linear-gradient(135deg,#0b8f4d,#065f36);
    min-height:60vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    top:-120px;
    right:-100px;
}

.hero::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:#ff9f1c;
    opacity:0.15;
    bottom:-100px;
    left:-80px;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-content{
    color:#fff;
}

.hero-content h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:25px;
	 margin-top:20px;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
    color:#ecfdf3;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
	
}

.btn{
    padding:16px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
	margin-bottom:20;
}

.btn-primary{
    background:#ff9f1c;
    color:#fff;
}

.btn-primary:hover{
    background:#fff;
    color:#0b8f4d;
    transform:translateY(-4px);
}

.btn-secondary{
    background:#fff;
    color:#0b8f4d;
}

.btn-secondary:hover{
    background:#ff9f1c;
    color:#fff;
    transform:translateY(-4px);
}

.hero-image img{
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
    animation:float 4s ease-in-out infinite;
}

/* =========================
   GRID SECTION
========================= */

.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.content-box h3{
    font-size:38px;
    margin-bottom:25px;
    color:#0b8f4d;
}

.content-box p{
    line-height:2;
    color:#555;
    margin-bottom:20px;
}

.image-box img{
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    transition:0.4s;
}

.image-box img:hover{
    transform:scale(1.03);
}

/* =========================
   FEATURE CARDS
========================= */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.feature-card{
    background:#fff;
    padding:35px 30px;
    border-radius:25px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.4s;
    border-top:5px solid #ff9f1c;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card i{
    width:70px;
    height:70px;
    background:#0b8f4d;
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.feature-card h4{
    margin-bottom:15px;
    font-size:22px;
}

.feature-card p{
    line-height:1.9;
    color:#666;
}

/* =========================
   PLAN CARDS
========================= */

.plan-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.plan-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.4s;
}

.plan-card:hover{
    transform:translateY(-10px);
}

.plan-card img{
    height:220px;
    object-fit:cover;
}

.plan-content{
    padding:30px;
}

.plan-content h3{
    color:#0b8f4d;
    margin-bottom:15px;
}

.plan-content p{
    line-height:1.9;
    color:#666;
    margin-bottom:15px;
}

.plan-content ul{
    padding-left:18px;
}

.plan-content ul li{
    margin-bottom:10px;
    color:#444;
}

/* =========================
   ANIMATION
========================= */

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* =========================
   MOBILE RESPONSIVE
========================= */

/* =========================
MOBILE MENU
========================= */

@media(max-width:991px){

    /* NAVBAR */

    #navbar{

        position:fixed;

        top:0;
        right:-100%;

        width:300px;

        height:100vh;

        background:#0f7b46;

        z-index:9999;

        transition:0.4s ease;

        overflow-y:auto;

        padding-top:90px;

        box-shadow:-5px 0 25px rgba(0,0,0,0.15);
    }

    /* ACTIVE MENU */

    #navbar.active{

        right:0;
    }

    /* MENU */

    #navbar .menu{

        flex-direction:column;

        width:100%;
    }

    #navbar .menu li{

        width:100%;

        border-bottom:1px solid rgba(255,255,255,0.08);
    }

    #navbar .menu li a{

        display:block;

        padding:18px 25px;

        color:#fff;

        font-size:16px;
    }

    /* DROPDOWN */

    #navbar .dropdown{

        position:static;

        width:100%;

        display:none;

        background:#146f44;

        box-shadow:none;
    }

    #navbar .menu li:hover .dropdown{

        display:block;
    }

    #navbar .dropdown li a{

        padding-left:45px;

        font-size:15px;
    }

    /* HAMBURGER */

    .menu-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

        width:45px;
        height:45px;

        background:#ff7a00;

        color:#fff;

        border-radius:10px;

        cursor:pointer;

        font-size:22px;

        z-index:10000;
    }

    /* CLOSE BUTTON */

    .close-menu{

        position:absolute;

        top:20px;
        right:20px;

        width:40px;
        height:40px;

        background:#ff7a00;

        color:#fff;

        border-radius:10px;

        display:flex;

        align-items:center;
        justify-content:center;

        font-size:20px;

        cursor:pointer;
    }

    /* OVERLAY */

    .menu-overlay{

        position:fixed;

        top:0;
        left:0;

        width:100%;
        height:100%;

        background:rgba(0,0,0,0.45);

        opacity:0;

        visibility:hidden;

        transition:0.4s ease;

        z-index:999;
    }

    .menu-overlay.active{

        opacity:1;

        visibility:visible;
    }

}
/* =========================
MENU TOGGLE
========================= */

.menu-toggle{

    display:none;

    width:48px;
    height:48px;

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    border-radius:12px;

    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    position:relative;

    z-index:10001;

    box-shadow:0 10px 25px rgba(255,122,0,0.25);
}

/* =========================
MOBILE VIEW
========================= */

@media(max-width:991px){

    .menu-toggle{

        display:flex;
    }

}.close-menu{

    display:none;
}

/* =========================
   LIC VS PRIVATE SECTION
========================= */

.compare-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.compare-card{
    background:#fff;
    border-radius:25px;
    padding:40px 35px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

.compare-card:hover{
    transform:translateY(-10px);
}

.lic-card{
    border-top:6px solid #0b8f4d;
}

.private-card{
    border-top:6px solid #ff9f1c;
}

.compare-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.compare-header i{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
}

.lic-card .compare-header i{
    background:#0b8f4d;
}

.private-card .compare-header i{
    background:#ff9f1c;
}

.compare-header h3{
    font-size:30px;
    color:#222;
}

.compare-text{
    line-height:1.9;
    color:#555;
    margin-bottom:30px;
}

.compare-card h4{
    font-size:20px;
    margin-bottom:20px;
    color:#0b8f4d;
}

.compare-list{
    list-style:none;
    margin-bottom:30px;
}

.compare-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:15px;
    line-height:1.8;
    color:#555;
}

.compare-list li::before{
    content:'✓';
    position:absolute;
    left:0;
    top:0;
    color:#ff9f1c;
    font-weight:700;
}

.tag-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.tag-wrapper span{
    background:#f3f7f5;
    padding:10px 16px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    color:#0b8f4d;
    transition:0.3s;
}

.tag-wrapper span:hover{
    background:#ff9f1c;
    color:#fff;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.compare-card{
    padding:30px 25px;
}

.compare-header h3{
    font-size:24px;
}

.compare-header i{
    width:60px;
    height:60px;
    font-size:24px;
}

}

/* =========================
PRODUCT INSIGHTS SECTION
========================= */

.product-section{
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(to bottom, #f4fff7, #ffffff);
    font-family: 'Poppins', sans-serif;
}

/* TITLE */

.section-title{
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 65px;
}

.section-title h2{
    font-size: 42px;
    color: #0f7b46;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* ORANGE LINE BELOW HEADING */

.section-title h2::after{
    content: '';
    width: 80px;
    height: 4px;
    background: #ff7a00;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-radius: 10px;
}

.section-title p{
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-top: 20px;
}

/* GRID */

.product-grid{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* PRODUCT BOX */

.product-box{
    background: #fff;
    padding: 35px 28px;
    border-radius: 22px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 5px solid #ff7a00;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */

.product-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(15, 123, 70, 0.25);
    border-top: 5px solid #0f7b46;
}

/* IMAGE */

.product-box img{
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 22px;
    transition: 0.4s;
}

.product-box:hover img{
    transform: scale(1.08);
}

/* HEADING */

.product-box h3{
    font-size: 24px;
    color: #0f7b46;
    margin-bottom: 15px;
    font-weight: 600;
}

/* DESCRIPTION */

.product-box p{
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* TABLET RESPONSIVE */

@media(max-width: 992px){

    .product-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2{
        font-size: 34px;
    }

}

/* MOBILE RESPONSIVE */

@media(max-width: 768px){

    .product-section{
        padding: 70px 15px;
    }

    .product-grid{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-title{
        margin-bottom: 45px;
    }

    .section-title h2{
        font-size: 30px;
    }

    .section-title p{
        font-size: 15px;
        line-height: 1.7;
    }

    .product-box{
        padding: 30px 20px;
    }

    .product-box h3{
        font-size: 22px;
    }

    .product-box p{
        font-size: 14px;
    }

    .product-box img{
        width: 100%;
        
    }

}
/* =========================
GENERAL INSURANCE SECTION
========================= */

.general-insurance{
    width: 100%;
    padding: 90px 30px;
    background: linear-gradient(to bottom, #f4fff7, #ffffff);
    font-family: 'Poppins', sans-serif;
}

/* MAIN CONTAINER */

.insurance-container{
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 70px;
}

/* IMAGE SECTION */

.insurance-image{
    flex: 1;
}

.insurance-image img{
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* CONTENT SECTION */

.insurance-content{
    flex: 1;
}

.insurance-content h2{
    font-size: 50px;
    color: #0f7b46;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

/* ORANGE UNDERLINE */

.insurance-content h2::after{
    content: '';
    width: 90px;
    height: 4px;
    background: #ff7a00;
    position: absolute;
    left: 0;
    bottom: -12px;
    border-radius: 10px;
}

.insurance-content p{
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-top: 20px;
}

/* =========================
SERVICE BOXES
========================= */

.insurance-services{
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* SINGLE BOX */

.service-box{
    background: #fff;
    padding: 40px 30px;
    border-radius: 28px;
    text-align: center;
    transition: 0.4s ease;
    border-top: 5px solid #ff7a00;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* HOVER */

.service-box:hover{
    transform: translateY(-10px);
    border-top: 5px solid #0f7b46;
    box-shadow: 0 15px 35px rgba(15, 123, 70, 0.22);
}

/* ICON */

.service-icon{
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #0f7b46, #17a35a);
    color: #fff;
    font-size: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

/* HEADING */

.service-box h3{
    font-size: 28px;
    color: #0f7b46;
    margin-bottom: 15px;
    font-weight: 600;
}

/* DESCRIPTION */

.service-box p{
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* =========================
TABLET RESPONSIVE
========================= */

@media(max-width: 992px){

    .insurance-container{
        flex-direction: column;
        gap: 50px;
    }

    .insurance-content h2{
        font-size: 40px;
    }

    .insurance-services{
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width: 768px){

    .general-insurance{
        padding: 70px 18px;
    }

    .insurance-content h2{
        font-size: 32px;
    }

    .insurance-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .insurance-services{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-box{
        padding: 35px 22px;
    }

    .service-box h3{
        font-size: 24px;
    }

    .service-box p{
        font-size: 14px;
    }

    .service-icon{
        width: 75px;
        height: 75px;
        font-size: 30px;
    }

}
/* =========================
ABOUT SECTION
========================= */

/* ================= ADVISOR SECTION ================= */

.advisor-section{
    width:100%;
    padding:90px 20px;
    background:#f5f8f6;
    position:relative;
    overflow:hidden;
}

.advisor-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,122,0,0.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.advisor-section::after{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(11,122,75,0.08);
    border-radius:50%;
    bottom:-120px;
    left:-100px;
}

.advisor-container{
    max-width:1250px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* TITLE */

.advisor-title{
    text-align:center;
    margin-bottom:60px;
}

.advisor-title h2{
    font-size:48px;
    color:#0b7a4b;
    margin-bottom:15px;
    font-weight:700;
}

.advisor-title h2 span{
    color:#ff7a00;
}

.advisor-title p{
    max-width:780px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/* GRID */

.advisor-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

/* CARD */

.advisor-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.5s;
    position:relative;
}

.advisor-card:hover{
    transform:translateY(-10px);
}

.advisor-image{
    position:relative;
    height:360px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f5f8f6;
    overflow:hidden;
    padding:20px;
}

.advisor-image img{
    width:50%;
    height:auto;
    object-fit:contain;
    transition:0.5s;
    border-radius:0px; /* square image */
}

.advisor-card:hover .advisor-image img{
    transform:scale(1.05);
}

/* BADGE */

.advisor-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#0b7a4b;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.advisor-badge.orange{
    background:#ff7a00;
}

/* CONTENT */

.advisor-content{
    padding:35px;
}

.advisor-content span{
    color:#ff7a00;
    font-weight:600;
    font-size:14px;
    display:inline-block;
    margin-bottom:12px;
}

.advisor-content h3{
    font-size:30px;
    color:#222;
    margin-bottom:18px;
}

.advisor-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
    font-size:15px;
}

/* LIST */

.advisor-content ul{
    list-style:none;
    margin-bottom:30px;
}

.advisor-content ul li{
    margin-bottom:12px;
    color:#444;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:10px;
}

.advisor-content ul li i{
    color:#0b7a4b;
}

/* BUTTON */

.advisor-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border-radius:50px;
    background:linear-gradient(135deg,#0b7a4b,#12a162);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.advisor-btn:hover{
    background:linear-gradient(135deg,#ff7a00,#ff9a3d);
    transform:translateY(-4px);
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .advisor-grid{
        grid-template-columns:1fr;
    }

    .advisor-title h2{
        font-size:38px;
    }

}

@media(max-width:768px){

    .advisor-section{
        padding:70px 15px;
    }

    .advisor-title h2{
        font-size:30px;
    }

    .advisor-title p{
        font-size:14px;
    }

    .advisor-image{
        height:280px;
    }

    .advisor-content{
        padding:25px;
    }
.advisor-image{
    height:250px;
}

.advisor-image img{
    width:65%;
}
    .advisor-content h3{
        font-size:24px;
    }

    .advisor-content p{
        font-size:14px;
    }

}

/* ================= NJ LOGO RIGHT SIDE ================= */

.header-menu{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
}

/* MENU */

.navbar{
    display:flex;
    align-items:center;
    gap:25px;
}

/* NJ LOGO */

.nj-logo{
    margin-left:25px;
    display:flex;
    align-items:center;
}

.nj-logo img{
    height:45px;
    width:auto;
    display:block;
}

/* MOBILE */

@media(max-width:768px){

    .nj-logo{
        margin-left:10px;
    }

    .nj-logo img{
        height:35px;
    }

}
/* CONTENT */

.about-content{
    flex: 1;
}

.about-content h2{
    font-size: 48px;
    color: #0f7b46;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

/* ORANGE LINE */

.about-content h2::after{
    content: '';
    width: 80px;
    height: 4px;
    background: #ff7a00;
    position: absolute;
    left: 0;
    bottom: -12px;
    border-radius: 10px;
}

.about-content p{
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-top: 20px;
}

/* BUTTON */

.about-btn{
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    background: linear-gradient(135deg, #ff7a00, #ff9d2f);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

.about-btn:hover{
    background: linear-gradient(135deg, #0f7b46, #17a35a);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15,123,70,0.25);
}

/* =========================
TABLET RESPONSIVE
========================= */

@media(max-width: 992px){

    .about-container{
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .about-content h2{
        font-size: 38px;
    }

    .about-content h2::after{
        left: 50%;
        transform: translateX(-50%);
    }

    .about-image{
        flex: unset;
        max-width: 320px;
    }

}

/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width: 768px){

    .about-section{
        padding: 70px 18px;
    }

    .about-container{
        padding: 30px 20px;
        border-radius: 22px;
        gap: 35px;
    }

    .about-content h2{
        font-size: 30px;
    }

    .about-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .about-btn{
        padding: 13px 28px;
        font-size: 14px;
    }

}
@media(max-width:768px){

    .about-image img{

        width:220px;

        max-width:100%;

        height:auto;

        display:block;

        margin:auto;

        border-radius:20px;
    }

}
/* =========================
TESTIMONIAL SLIDER
========================= */

.testimonial-slider-section{
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(to bottom, #f4fff7, #ffffff);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* HEADING */

.testimonial-heading{
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 60px;
}

.testimonial-heading h2{
    font-size: 46px;
    color: #0f7b46;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

/* ORANGE LINE */

.testimonial-heading h2::after{
    content: '';
    width: 85px;
    height: 4px;
    background: #ff7a00;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-radius: 10px;
}

.testimonial-heading p{
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* SLIDER */

.testimonial-slider{
    max-width: 950px;
    margin: auto;
    position: relative;
    height: 340px;
}

/* SINGLE SLIDE */

.testimonial-slide{
    position: absolute;
    width: 100%;
    background: #fff;
    padding: 50px 45px;
    border-radius: 30px;
    text-align: center;
    border-top: 6px solid #ff7a00;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);

    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease;
}

/* ACTIVE SLIDE */

.testimonial-slide.active{
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

/* QUOTE */

.quote{
    font-size: 65px;
    color: rgba(255,122,0,0.20);
    margin-bottom: 10px;
}

/* TEXT */

.testimonial-slide p{
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 28px;
}

/* NAME */

.testimonial-slide h3{
    font-size: 28px;
    color: #0f7b46;
    margin-bottom: 8px;
}

/* DESIGNATION */

.testimonial-slide span{
    font-size: 15px;
    color: #777;
}

/* BUTTONS */

.slider-buttons{
    margin-top: 40px;
    text-align: center;
}

.slider-buttons button{
    width: 55px;
    height: 55px;
    border: none;
    margin: 0 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a00, #ff9d2f);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

.slider-buttons button:hover{
    background: linear-gradient(135deg, #0f7b46, #17a35a);
    transform: translateY(-4px);
}

/* =========================
TABLET RESPONSIVE
========================= */

@media(max-width: 992px){

    .testimonial-heading h2{
        font-size: 38px;
    }

}

/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width: 768px){

    .testimonial-slider-section{
        padding: 70px 15px;
    }

    .testimonial-heading{
        margin-bottom: 45px;
    }

    .testimonial-heading h2{
        font-size: 30px;
    }

    .testimonial-heading p{
        font-size: 15px;
    }

    .testimonial-slider{
        height: 420px;
    }

    .testimonial-slide{
        padding: 35px 22px;
        border-radius: 22px;
    }

    .testimonial-slide p{
        font-size: 15px;
        line-height: 1.8;
    }

    .testimonial-slide h3{
        font-size: 23px;
    }

    .quote{
        font-size: 50px;
    }

    .slider-buttons button{
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

}
/* =========================
TESTIMONIAL SECTION
========================= */

.testimonial-section{
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(to bottom, #f4fff7, #ffffff);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* HEADING */

.testimonial-heading{
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 60px;
}

.testimonial-heading h2{
    font-size: 46px;
    color: #0f7b46;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.testimonial-heading h2::after{
    content: '';
    width: 85px;
    height: 4px;
    background: #ff7a00;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-radius: 10px;
}

.testimonial-heading p{
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* SLIDER */

.slider-container{
    max-width: 950px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider-track{
    display: flex;
    transition: transform 0.6s ease;
}

/* CARD */

.testimonial-card{
    min-width: 100%;
    background: #fff;
    padding: 50px 45px;
    border-radius: 30px;
    text-align: center;
    border-top: 6px solid #ff7a00;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

/* QUOTE */

.quote{
    font-size: 65px;
    color: rgba(255,122,0,0.18);
    margin-bottom: 10px;
}

/* TEXT */

.testimonial-card p{
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 28px;
}

/* NAME */

.testimonial-card h3{
    font-size: 28px;
    color: #0f7b46;
    margin-bottom: 8px;
}

/* ROLE */

.testimonial-card span{
    font-size: 15px;
    color: #777;
}

/* BUTTONS */

.slider-buttons{
    text-align: center;
    margin-top: 35px;
}

.slider-buttons button{
    width: 55px;
    height: 55px;
    border: none;
    margin: 0 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a00, #ff9d2f);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

.slider-buttons button:hover{
    background: linear-gradient(135deg, #0f7b46, #17a35a);
    transform: translateY(-4px);
}

/* =========================
TABLET RESPONSIVE
========================= */

@media(max-width: 992px){

    .testimonial-heading h2{
        font-size: 38px;
    }

}

/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width: 768px){

    .testimonial-section{
        padding: 70px 15px;
    }

    .testimonial-heading{
        margin-bottom: 45px;
    }

    .testimonial-heading h2{
        font-size: 30px;
    }

    .testimonial-heading p{
        font-size: 15px;
    }

    .testimonial-card{
        padding: 35px 22px;
        border-radius: 22px;
    }

    .testimonial-card p{
        font-size: 15px;
        line-height: 1.8;
    }

    .testimonial-card h3{
        font-size: 22px;
    }

    .quote{
        font-size: 50px;
    }

    .slider-buttons button{
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

}
/* =========================
FOOTER SECTION
========================= */

.footer{
    width: 100%;
    background: linear-gradient(135deg, #0b5d36, #0f7b46);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* TOP SECTION */

.footer-container{
    max-width: 1400px;
    margin: auto;
    padding: 80px 30px 50px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

/* LOGO */

.footer-logo{
    width: 180px;
    margin-bottom: 20px;
}

/* ABOUT */

.footer-about p{
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
}

/* HEADING */

.footer-box h3{
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    color: #fff;
}

/* ORANGE LINE */

.footer-box h3::after{
    content: '';
    width: 55px;
    height: 3px;
    background: #ff7a00;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 10px;
}

/* MENU */

.footer-box ul{
    list-style: none;
    padding: 0;
}

.footer-box ul li{
    margin-bottom: 14px;
}

.footer-box ul li a{
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: 0.4s;
    font-size: 15px;
}

.footer-box ul li a:hover{
    color: #ffb15a;
    padding-left: 6px;
}

/* SOCIAL */

.footer-social{
    display: flex;
    gap: 15px;
}

.footer-social a{
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: 0.4s;
    text-decoration: none;
}

.footer-social a:hover{
    background: #ff7a00;
    transform: translateY(-5px);
}

/* DISCLAIMER */

.footer-disclaimer{
    background: rgba(0,0,0,0.12);
    padding: 18px 20px;
    text-align: center;
}

.footer-disclaimer p{
    max-width: 1200px;
    margin: auto;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.90);
}

/* BOTTOM */

.footer-bottom{
    max-width: 1400px;
    margin: auto;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.12);
}

/* COPYRIGHT */

.footer-bottom p{
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* POLICY */

.footer-policy{
    display: flex;
    gap: 25px;
}

.footer-policy a{
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    transition: 0.4s;
}

.footer-policy a:hover{
    color: #ffb15a;
}

/* =========================
TABLET
========================= */

@media(max-width: 992px){

    .footer-container{
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom{
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width: 768px){

    .footer-container{
        grid-template-columns: 1fr;
        padding: 70px 20px 40px;
        gap: 35px;
    }

    .footer-box h3{
        font-size: 22px;
    }

    .footer-about p,
    .footer-box ul li a{
        font-size: 14px;
    }

    .footer-policy{
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom{
        padding: 20px;
    }

    .footer-bottom p{
        font-size: 13px;
    }

}

.privacy-popup{
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);

    justify-content: center;
    align-items: center;

    padding: 20px;
}

/* POPUP BOX */

.privacy-content{
    background: #fff;
    width: 100%;
    max-width: 750px;

    padding: 45px 35px;

    border-radius: 25px;

    position: relative;

    animation: popupFade 0.4s ease;

    box-shadow: 0 20px 45px rgba(0,0,0,0.25);

    border-top: 6px solid #ff7a00;

    max-height: 85vh;
    overflow-y: auto;
}

/* ANIMATION */

@keyframes popupFade{

    from{
        transform: scale(0.8);
        opacity: 0;
    }

    to{
        transform: scale(1);
        opacity: 1;
    }

}

/* HEADING */

.privacy-content h2{
    font-size: 38px;
    color: #0f7b46;
    margin-bottom: 25px;
    position: relative;
}

/* ORANGE LINE */

.privacy-content h2::after{
    content: '';
    width: 70px;
    height: 4px;
    background: #ff7a00;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 10px;
}

/* TEXT */

.privacy-content p{
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

/* CLOSE BUTTON */

.close-popup{
    position: absolute;
    top: 15px;
    right: 20px;

    font-size: 34px;
    cursor: pointer;

    color: #ff7a00;

    transition: 0.3s;
}

.close-popup:hover{
    color: #0f7b46;
    transform: rotate(90deg);
}

/* MOBILE */

@media(max-width:768px){

    .privacy-content{
        padding: 35px 22px;
        border-radius: 18px;
    }

    .privacy-content h2{
        font-size: 28px;
    }

    .privacy-content p{
        font-size: 14px;
        line-height: 1.8;
    }

}

/* =========================
GO TO TOP BUTTON
========================= */

#topBtn{
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 58px;
    height: 58px;

    border: none;
    outline: none;

    background: linear-gradient(135deg, #ff7a00, #ff9d2f);

    color: #fff;

    font-size: 24px;
    font-weight: bold;

    border-radius: 50%;

    cursor: pointer;

    z-index: 9999;

    display: none;

    transition: all 0.4s ease;

    box-shadow: 0 10px 25px rgba(255,122,0,0.35);

    animation: pulse 2s infinite;
}

/* HOVER EFFECT */

#topBtn:hover{
    background: linear-gradient(135deg, #0f7b46, #17a35a);

    transform: translateY(-6px) scale(1.08);

    box-shadow: 0 15px 35px rgba(15,123,70,0.35);
}

/* PULSE ANIMATION */

@keyframes pulse{

    0%{
        box-shadow: 0 0 0 0 rgba(255,122,0,0.5);
    }

    70%{
        box-shadow: 0 0 0 18px rgba(255,122,0,0);
    }

    100%{
        box-shadow: 0 0 0 0 rgba(255,122,0,0);
    }

}

/* MOBILE */

@media(max-width:768px){

    #topBtn{
        width: 50px;
        height: 50px;
        font-size: 20px;

        bottom: 20px;
        right: 20px;
    }

}

/* =========================
WHATSAPP BUTTON
========================= */

.whatsapp-btn{
    position: fixed;

    bottom: 105px;
    right: 30px;

    width: 62px;
    height: 62px;

    background: linear-gradient(135deg, #25D366, #128C7E);

    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 34px;

    z-index: 9999;

    box-shadow: 0 12px 28px rgba(37,211,102,0.35);

    transition: all 0.4s ease;

    animation: whatsappPulse 2s infinite;
}

/* HOVER EFFECT */

.whatsapp-btn:hover{

    transform: translateY(-6px) scale(1.08);

    box-shadow: 0 18px 35px rgba(37,211,102,0.45);

}

/* PULSE ANIMATION */

@keyframes whatsappPulse{

    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
    }

    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }

}

/* MOBILE */

@media(max-width:768px){

    .whatsapp-btn{

        width: 54px;
        height: 54px;

        font-size: 30px;

        right: 20px;
        bottom: 90px;
    }

}
/* =========================
PORTFOLIO POPUP
========================= */

.portfolio-popup{

    position: fixed;

    left: 30px;
    bottom: -400px;

    width: 360px;

    background: #fff;

    border-radius: 28px;

    padding: 35px 28px;

    z-index: 99999;

    box-shadow: 0 18px 45px rgba(0,0,0,0.18);

    border-top: 6px solid #ff7a00;

    transition: bottom 0.8s ease;

    overflow: hidden;
}

/* SHOW POPUP */

.portfolio-popup.show{

    bottom: 30px;
}

/* CLOSE BUTTON */

.portfolio-close{

    position: absolute;

    top: 12px;
    right: 18px;

    font-size: 32px;

    color: #ff7a00;

    cursor: pointer;

    transition: 0.3s;
}

.portfolio-close:hover{

    color: #0f7b46;

    transform: rotate(90deg);
}

/* ICON */

.portfolio-icon{

    width: 100%;
    height: 85px;

    margin: auto;
    margin-bottom: 22px;

    

    

    font-size: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    

    box-shadow: 0 10px 25px rgba(15,123,70,0.22);
	
	
}
.portfolio-icon img{
    width:60%;
    height:auto;
    display:block;
    margin:auto;
}

/* CONTENT */

.portfolio-content{

    text-align: center;
}

.portfolio-content h3{

    font-size: 30px;

    color: #0f7b46;

    margin-bottom: 15px;
}

.portfolio-content p{

    font-size: 15px;

    color: #666;

    line-height: 1.8;

    margin-bottom: 28px;
}

/* BUTTON */

.portfolio-btn{

    display: inline-block;

    padding: 14px 30px;

    background: linear-gradient(135deg, #ff7a00, #ff9d2f);

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    transition: 0.4s ease;

    box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

/* HOVER */

.portfolio-btn:hover{

    background: linear-gradient(135deg, #0f7b46, #17a35a);

    transform: translateY(-4px);

    box-shadow: 0 14px 30px rgba(15,123,70,0.25);
}

/* MOBILE */

@media(max-width:768px){

    .portfolio-popup{

        width: calc(100% - 30px);

        left: 15px;

        padding: 30px 22px;
    }

    .portfolio-content h3{

        font-size: 24px;
    }

    .portfolio-content p{

        font-size: 14px;
    }

}
@media(max-width:768px){

    .portfolio-popup{

        display:none !important;
    }

}

/* =========================
UNDER CONSTRUCTION DIV
========================= */

.construction-section{

    width: 100%;

    padding: 120px 20px;

    background: linear-gradient(135deg, #0f7b46, #0b5d36);

    position: relative;

    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================
BACKGROUND SHAPES
========================= */

.shape{
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.shape1{

    width: 300px;
    height: 300px;

    top: -100px;
    left: -100px;

    animation: float 6s ease-in-out infinite;
}

.shape2{

    width: 220px;
    height: 220px;

    bottom: -80px;
    right: -80px;

    animation: float 8s ease-in-out infinite;
}

/* FLOAT */

@keyframes float{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(18px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* =========================
MAIN BOX
========================= */

.construction-box{

    width: 100%;
    max-width: 750px;

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(10px);

    border-radius: 35px;

    padding: 70px 50px;

    text-align: center;

    border: 1px solid rgba(255,255,255,0.12);

    box-shadow: 0 20px 50px rgba(0,0,0,0.20);

    position: relative;

    z-index: 2;
}

/* =========================
ICON
========================= */

.construction-icon{

    width: 110px;
    height: 110px;

    margin: auto;
    margin-bottom: 35px;

    border-radius: 28px;

    background: linear-gradient(135deg, #ff7a00, #ff9d2f);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 15px 35px rgba(255,122,0,0.28);

    animation: pulse 2s infinite;
}

.construction-icon i{

    font-size: 48px;

    color: #fff;
}

/* PULSE */

@keyframes pulse{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.08);
    }

    100%{
        transform: scale(1);
    }

}

/* =========================
HEADING
========================= */

.construction-box h2{

    font-size: 46px;

    color: #fff;

    margin-bottom: 25px;
}

/* =========================
TEXT
========================= */

.construction-box p{

    font-size: 17px;

    color: rgba(255,255,255,0.92);

    line-height: 1.9;

    max-width: 600px;

    margin: auto;
    margin-bottom: 40px;
}

/* =========================
BUTTON
========================= */

.construction-btn{

    display: inline-block;

    padding: 16px 38px;

    background: linear-gradient(135deg, #ff7a00, #ff9d2f);

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    font-size: 16px;
    font-weight: 600;

    transition: 0.4s ease;

    box-shadow: 0 12px 30px rgba(255,122,0,0.30);
}

/* HOVER */

.construction-btn:hover{

    transform: translateY(-5px);

    background: linear-gradient(135deg, #ffffff, #f4f4f4);

    color: #0f7b46;
}

/* =========================
TABLET
========================= */

@media(max-width:992px){

    .construction-box h2{

        font-size: 38px;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .construction-section{

        padding: 80px 15px;
    }

    .construction-box{

        padding: 50px 25px;

        border-radius: 25px;
    }

    .construction-icon{

        width: 90px;
        height: 90px;

        border-radius: 22px;
    }

    .construction-icon i{

        font-size: 40px;
    }

    .construction-box h2{

        font-size: 30px;
    }

    .construction-box p{

        font-size: 15px;

        line-height: 1.8;
    }

    .construction-btn{

        padding: 14px 30px;

        font-size: 15px;
    }

}
/* =========================
CONTACT SECTION
========================= */

.contact-section{

    width: 100%;

    padding: 100px 20px;

    background: linear-gradient(to bottom, #f4fff7, #ffffff);

    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */

.contact-container{

    max-width: 1350px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

/* =========================
LEFT SIDE
========================= */

.contact-tag{

    display: inline-block;

    background: rgba(255,122,0,0.12);

    color: #ff7a00;

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 22px;
}

/* HEADING */

.contact-left h2{

    font-size: 54px;

    color: #0f7b46;

    margin-bottom: 25px;
}

/* TEXT */

.contact-left p{

    font-size: 17px;

    color: #555;

    line-height: 1.9;

    margin-bottom: 40px;
}

/* INFO */

.contact-info{

    display: flex;
    flex-direction: column;

    gap: 22px;
}

/* BOX */

.info-box{

    display: flex;
    align-items: center;

    gap: 18px;

    background: #fff;

    padding: 18px 22px;

    border-radius: 18px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);

    transition: 0.4s ease;
}

/* HOVER */

.info-box:hover{

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(15,123,70,0.12);
}

/* ICON */

.info-box i{

    width: 58px;
    height: 58px;

    background: linear-gradient(135deg, #ff7a00, #ff9d2f);

    color: #fff;

    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

/* TEXT */

.info-box h4{

    font-size: 19px;

    color: #0f7b46;

    margin-bottom: 5px;
}

.info-box span{

    font-size: 15px;

    color: #666;
}

/* =========================
FORM BOX
========================= */

.contact-form-box{

    background: #fff;

    padding: 50px 40px;

    border-radius: 30px;

    border-top: 6px solid #ff7a00;

    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* INPUT */

.input-box{

    margin-bottom: 22px;
}

.input-box input,
.input-box textarea{

    width: 100%;

    padding: 18px 20px;

    border: 1px solid #ddd;

    border-radius: 16px;

    outline: none;

    font-size: 15px;

    transition: 0.3s;

    font-family: 'Poppins', sans-serif;
}

/* FOCUS */

.input-box input:focus,
.input-box textarea:focus{

    border-color: #0f7b46;

    box-shadow: 0 0 0 4px rgba(15,123,70,0.10);
}

/* BUTTON */

.contact-btn{

    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 50px;

    background: linear-gradient(135deg, #ff7a00, #ff9d2f);

    color: #fff;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.4s ease;

    box-shadow: 0 12px 30px rgba(255,122,0,0.25);
}

/* HOVER */

.contact-btn:hover{

    transform: translateY(-4px);

    background: linear-gradient(135deg, #0f7b46, #17a35a);
}

/* =========================
TABLET
========================= */

@media(max-width:992px){

    .contact-container{

        grid-template-columns: 1fr;
    }

    .contact-left h2{

        font-size: 42px;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .contact-section{

        padding: 80px 15px;
    }

    .contact-left h2{

        font-size: 32px;
    }

    .contact-left p{

        font-size: 15px;
    }

    .contact-form-box{

        padding: 35px 22px;

        border-radius: 22px;
    }

    .input-box input,
    .input-box textarea{

        padding: 15px 18px;
    }

}
@media(max-width:991px){

    .header-top,
    .top-bar,
    .contact-info,
    .header-contact{

        display:none !important;
    }

}
@media(max-width:991px){

    .top-bar{

        display:none !important;
    }

}

/* =========================
HEADER lic product
========================= */

.products-header{

    width:100%;

    background:linear-gradient(135deg,#0f7b46,#0b5d36);

    padding:80px 20px;

    text-align:center;

    color:#fff;
}

.products-header h1{

    font-size:60px;

    margin-bottom:20px;
}

.products-header p{

    max-width:900px;

    margin:auto;

    font-size:17px;

    line-height:1.9;

    color:rgba(255,255,255,0.92);
}

/* =========================
LAYOUT
========================= */

.products-layout{

    display:flex;
}

/* =========================
SIDEBAR
========================= */

.sidebar{

    width:320px;

    min-height:100vh;

    background:#fff;

    position:sticky;

    top:0;

    padding:40px 25px;

    border-right:1px solid #eee;

    overflow-y:auto;
}

.sidebar h3{

    font-size:28px;

    color:#0f7b46;

    margin-bottom:35px;
}

/* CATEGORY BUTTON */

.category-btn{

    width:100%;

    padding:16px 20px;

    margin-bottom:15px;

    border:none;

    border-radius:16px;

    background:#f4fff7;

    color:#333;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    text-align:left;

    transition:0.4s;
}

.category-btn:hover,
.category-btn.active{

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    color:#fff;

    transform:translateX(5px);
}

/* =========================
CONTENT
========================= */

.products-content{

    flex:1;

    padding:50px 40px;
}

/* CATEGORY */

.category-section{

    display:none;
}

.category-section.active{

    display:block;
}

/* TITLE */

.category-title{

    font-size:42px;

    color:#0f7b46;

    margin-bottom:35px;

    position:relative;

    padding-left:20px;
}

.category-title::before{

    content:'';

    width:6px;
    height:48px;

    background:#ff7a00;

    position:absolute;

    left:0;
    top:8px;

    border-radius:10px;
}

/* =========================
PLAN TABS
========================= */

.plan-tabs{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:35px;
}

/* PLAN BUTTON */

.plan-btn-tab{

    padding:14px 22px;

    border:none;

    border-radius:50px;

    background:#fff;

    color:#333;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,0.06);

    transition:0.4s;
}

.plan-btn-tab:hover,
.plan-btn-tab.active{

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    color:#fff;

    transform:translateY(-4px);
}

/* =========================
PLAN DETAILS
========================= */

.plan-details{

    display:none;
}

.plan-details.active{

    display:block;
}

/* CARD */

.plan-card{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,0.07);

    border-top:6px solid #ff7a00;

    display:grid;

    grid-template-columns:340px 1fr;
}

/* IMAGE */

.plan-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* CONTENT */

.plan-content{

    padding:35px;
}

/* TITLE */

.plan-content h3{

    font-size:34px;

    color:#0f7b46;

    margin-bottom:20px;
}

/* TEXT */

.plan-content p{

    font-size:15px;

    line-height:1.9;

    color:#555;

    margin-bottom:30px;
}

/* GRID */

.plan-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;
}

/* BOX */

.plan-box{

    background:#f8fff9;

    padding:25px;

    border-radius:20px;

    border-left:5px solid #ff7a00;
}

.plan-box h4{

    font-size:20px;

    color:#0f7b46;

    margin-bottom:15px;
}

.plan-box ul{

    padding-left:18px;
}

.plan-box ul li{

    margin-bottom:10px;

    font-size:14px;

    color:#555;

    line-height:1.7;
}

/* BUTTON */

.know-btn{

    display:inline-block;

    margin-top:30px;

    padding:15px 34px;

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:15px;
    font-weight:600;

    transition:0.4s;
}

.know-btn:hover{

    background:linear-gradient(135deg,#0f7b46,#17a35a);

    transform:translateY(-4px);
}

/* =========================
TABLET
========================= */

@media(max-width:1100px){

    .products-layout{

        flex-direction:column;
    }

    .sidebar{

        width:100%;

        min-height:auto;

        position:relative;

        border-right:none;

        border-bottom:1px solid #eee;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .products-header{

        padding:60px 20px;
    }

    .products-header h1{

        font-size:38px;
    }

    .products-header p{

        font-size:15px;
    }

    .products-content{

        padding:30px 15px;
    }

    .category-title{

        font-size:30px;
    }

    .plan-card{

        grid-template-columns:1fr;
    }

    .plan-image img{

        height:250px;
    }

    .plan-content{

        padding:25px 20px;
    }

    .plan-content h3{

        font-size:26px;
    }

    .plan-grid{

        grid-template-columns:1fr;
    }

    .plan-tabs{

        flex-direction:column;
    }

    .plan-btn-tab{

        width:100%;
        text-align:center;
    }

}/* =========================
HERO SECTION
========================= */

.health-hero{

    width:100%;

    min-height:35vh;

    background:
    linear-gradient(rgba(15,123,70,0.88),
    rgba(11,93,54,0.88)),
    url('images/health-banner.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:30px 20px;

    position:relative;
}

/* CONTENT */

.hero-content{

    max-width:950px;

    color:#fff;
}

.hero-tag{

    display:inline-block;

    padding:12px 28px;

    background:rgba(255,255,255,0.12);

    border:1px solid rgba(255,255,255,0.25);

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:25px;

    backdrop-filter:blur(8px);
}

.hero-content h1{

    font-size:68px;

    line-height:1.2;

    margin-bottom:25px;
}

.hero-content p{

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,0.92);

    margin-bottom:40px;
}

/* BUTTON */

.hero-btn{

    display:inline-block;

    padding:18px 40px;

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    transition:0.4s ease;

    box-shadow:0 15px 35px rgba(255,122,0,0.30);
}

.hero-btn:hover{

    transform:translateY(-5px);

    background:linear-gradient(135deg,#ffffff,#ffffff);

    color:#0f7b46;
}

/* =========================
SECTION
========================= */

.health-section{

    width:100%;

    padding:90px 20px;
}

/* CONTAINER */

.container{

    max-width:1300px;

    margin:auto;
}

/* TITLE */

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title span{

    display:inline-block;

    padding:10px 24px;

    background:rgba(255,122,0,0.10);

    color:#ff7a00;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:18px;
}

.section-title h2{

    font-size:48px;

    color:#0f7b46;

    margin-bottom:20px;
}

.section-title p{

    max-width:850px;

    margin:auto;

    line-height:1.9;

    color:#666;

    font-size:16px;
}

/* =========================
GRID
========================= */

.health-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

/* CARD */

.health-card{

    background:#fff;

    padding:35px 30px;

    border-radius:28px;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    transition:0.4s ease;

    border-top:5px solid #ff7a00;

    position:relative;

    overflow:hidden;
}

/* HOVER */

.health-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(15,123,70,0.12);
}

/* ICON */

.health-icon{

    width:75px;
    height:75px;

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    color:#fff;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    margin-bottom:25px;
}

/* TITLE */

.health-card h3{

    font-size:24px;

    color:#0f7b46;

    margin-bottom:18px;
}

/* TEXT */

.health-card p{

    font-size:15px;

    line-height:1.9;

    color:#666;
}

/* =========================
WHY SECTION
========================= */

.why-section{

    background:#ffffff;
}

/* FLEX */

.why-flex{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

/* IMAGE */

.why-image img{

    width:100%;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* CONTENT */

.why-content h2{

    font-size:46px;

    color:#0f7b46;

    margin-bottom:25px;
}

.why-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;
}

/* LIST */

.why-list{

    display:flex;
    flex-direction:column;

    gap:18px;
}

/* ITEM */

.why-item{

    display:flex;
    align-items:flex-start;

    gap:15px;

    background:#f8fff9;

    padding:18px 20px;

    border-radius:18px;
}

/* ICON */

.why-item i{

    color:#ff7a00;

    font-size:22px;

    margin-top:3px;
}

/* TEXT */

.why-item span{

    color:#444;

    line-height:1.7;
}

/* =========================
CTA SECTION
========================= */

.cta-section{

    background:
    linear-gradient(135deg,#0f7b46,#0b5d36);

    padding:90px 20px;

    text-align:center;

    color:#fff;
}

.cta-section h2{

    font-size:50px;

    margin-bottom:20px;
}

.cta-section p{

    max-width:850px;

    margin:auto;

    line-height:1.9;

    color:rgba(255,255,255,0.92);

    margin-bottom:35px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .health-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .why-flex{

        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero-content h1{

        font-size:42px;
    }

    .hero-content p{

        font-size:15px;
    }

    .section-title h2{

        font-size:34px;
    }

    .health-grid{

        grid-template-columns:1fr;
    }

    .why-content h2{

        font-size:34px;
    }

    .cta-section h2{

        font-size:36px;
    }

    .health-section{

        padding:70px 15px;
    }

}
/* =========================
HERO SECTION
========================= */

.accident-hero{

    width:100%;
    min-height:35vh;

    background:
    linear-gradient(rgba(15,123,70,0.88),
    rgba(11,93,54,0.88)),
    url('images/accident-banner.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:80px 20px;
}

/* HERO CONTENT */

.hero-content{

    max-width:950px;

    color:#fff;
}

.hero-tag{

    display:inline-block;

    padding:12px 28px;

    background:rgba(255,255,255,0.12);

    border:1px solid rgba(255,255,255,0.25);

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:25px;

    backdrop-filter:blur(8px);
}

.hero-content h1{

    font-size:68px;

    margin-bottom:25px;

    line-height:1.2;
}

.hero-content p{

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,0.92);

    margin-bottom:40px;
}

/* BUTTON */

.hero-btn{

    display:inline-block;

    padding:18px 40px;

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    transition:0.4s ease;

    box-shadow:0 15px 35px rgba(255,122,0,0.30);
}

.hero-btn:hover{

    transform:translateY(-5px);

    background:#fff;

    color:#0f7b46;
}

/* =========================
COMMON SECTION
========================= */

.section{

    width:100%;

    padding:90px 20px;
}

.container{

    max-width:1300px;

    margin:auto;
}

/* TITLE */

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title span{

    display:inline-block;

    padding:10px 24px;

    background:rgba(255,122,0,0.12);

    color:#ff7a00;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:18px;
}

.section-title h2{

    font-size:48px;

    color:#0f7b46;

    margin-bottom:20px;
}

.section-title p{

    max-width:900px;

    margin:auto;

    line-height:1.9;

    color:#666;

    font-size:16px;
}

/* =========================
GRID
========================= */

.grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

/* CARD */

.card{

    background:#fff;

    padding:35px 30px;

    border-radius:28px;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    transition:0.4s ease;

    border-top:5px solid #ff7a00;
}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(15,123,70,0.12);
}

/* ICON */

.card-icon{

    width:75px;
    height:75px;

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:32px;

    margin-bottom:25px;
}

/* TITLE */

.card h3{

    font-size:24px;

    color:#0f7b46;

    margin-bottom:18px;
}

/* TEXT */

.card p{

    color:#666;

    line-height:1.9;

    font-size:15px;
}

/* =========================
WHY SECTION
========================= */

.why-section{

    background:#fff;
}

.why-flex{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

/* IMAGE */

.why-image img{

    width:100%;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* CONTENT */

.why-content h2{

    font-size:46px;

    color:#0f7b46;

    margin-bottom:25px;
}

.why-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;
}

/* LIST */

.why-list{

    display:flex;
    flex-direction:column;

    gap:18px;
}

.why-item{

    display:flex;
    align-items:flex-start;

    gap:15px;

    background:#f8fff9;

    padding:18px 20px;

    border-radius:18px;
}

.why-item i{

    color:#ff7a00;

    font-size:22px;

    margin-top:3px;
}

.why-item span{

    color:#444;

    line-height:1.7;
}

/* =========================
CTA
========================= */

.cta{

    background:
    linear-gradient(135deg,#0f7b46,#0b5d36);

    padding:90px 20px;

    text-align:center;

    color:#fff;
}

.cta h2{

    font-size:50px;

    margin-bottom:20px;
}

.cta p{

    max-width:850px;

    margin:auto;

    line-height:1.9;

    margin-bottom:35px;

    color:rgba(255,255,255,0.92);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .grid{

        grid-template-columns:repeat(2,1fr);
    }

    .why-flex{

        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero-content h1{

        font-size:42px;
    }

    .hero-content p{

        font-size:15px;
    }

    .section-title h2{

        font-size:34px;
    }

    .grid{

        grid-template-columns:1fr;
    }

    .why-content h2{

        font-size:34px;
    }

    .cta h2{

        font-size:36px;
    }

    .section{

        padding:70px 15px;
    }

}

/* =========================
EXTRA INFO SECTION
========================= */

.extra-info-section{

    width:100%;

    padding:90px 20px;

    background:#f7fff9;
}

/* GRID */

.extra-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

/* CARD */

.extra-card{

    background:#fff;

    padding:35px 30px;

    border-radius:28px;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    border-top:5px solid #ff7a00;

    transition:0.4s ease;
}

/* HOVER */

.extra-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(15,123,70,0.12);
}

/* ICON */

.extra-icon{

    width:75px;
    height:75px;

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    color:#fff;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    margin-bottom:25px;
}

/* HEADING */

.extra-card h3{

    font-size:24px;

    color:#0f7b46;

    margin-bottom:20px;
}

/* LIST */

.extra-card ul{

    padding-left:18px;

    margin-bottom:20px;
}

.extra-card ul li{

    margin-bottom:12px;

    color:#555;

    line-height:1.7;

    font-size:15px;
}

/* PARAGRAPH */

.extra-card p{

    color:#666;

    line-height:1.9;

    font-size:15px;

    margin-bottom:12px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .extra-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .extra-grid{

        grid-template-columns:1fr;
    }

    .extra-info-section{

        padding:70px 15px;
    }

}
/* Theme Button */
.explore-btn {
    display: inline-block;
    background: #c89b3c; /* Change to your theme color */
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.explore-btn:hover {
    background: #a97d25; /* Darker shade of theme color */
    transform: scale(1.05);
}
/* =========================
HERO SECTION
========================= */

.motor-hero{

    width:100%;
    min-height:35vh;

    background:
    linear-gradient(rgba(15,123,70,0.88),
    rgba(11,93,54,0.88)),
    url('images/motor-banner.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:80px 20px;
}

/* HERO CONTENT */

.hero-content{

    max-width:950px;

    color:#fff;
}

.hero-tag{

    display:inline-block;

    padding:12px 28px;

    background:rgba(255,255,255,0.12);

    border:1px solid rgba(255,255,255,0.25);

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:25px;

    backdrop-filter:blur(8px);
}

.hero-content h1{

    font-size:68px;

    margin-bottom:25px;

    line-height:1.2;
}

.hero-content p{

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,0.92);

    margin-bottom:40px;
}

/* BUTTON */

.hero-btn{

    display:inline-block;

    padding:18px 40px;

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    transition:0.4s ease;

    box-shadow:0 15px 35px rgba(255,122,0,0.30);
}

.hero-btn:hover{

    transform:translateY(-5px);

    background:#fff;

    color:#0f7b46;
}

/* =========================
COMMON SECTION
========================= */

.section{

    width:100%;

    padding:90px 20px;
}

.container{

    max-width:1300px;

    margin:auto;
}

/* TITLE */

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title span{

    display:inline-block;

    padding:10px 24px;

    background:rgba(255,122,0,0.12);

    color:#ff7a00;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:18px;
}

.section-title h2{

    font-size:48px;

    color:#0f7b46;

    margin-bottom:20px;
}

.section-title p{

    max-width:900px;

    margin:auto;

    line-height:1.9;

    color:#666;

    font-size:16px;
}

/* =========================
GRID
========================= */

.grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

/* CARD */

.card{

    background:#fff;

    padding:35px 30px;

    border-radius:28px;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    transition:0.4s ease;

    border-top:5px solid #ff7a00;
}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(15,123,70,0.12);
}

/* ICON */

.card-icon{

    width:75px;
    height:75px;

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:32px;

    margin-bottom:25px;
}

/* TITLE */

.card h3{

    font-size:24px;

    color:#0f7b46;

    margin-bottom:18px;
}

/* TEXT */

.card p{

    color:#666;

    line-height:1.9;

    font-size:15px;
}

/* =========================
WHY SECTION
========================= */

.why-section{

    background:#fff;
}

.why-flex{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

/* IMAGE */

.why-image img{

    width:100%;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* CONTENT */

.why-content h2{

    font-size:46px;

    color:#0f7b46;

    margin-bottom:25px;
}

.why-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;
}

/* LIST */

.why-list{

    display:flex;
    flex-direction:column;

    gap:18px;
}

.why-item{

    display:flex;
    align-items:flex-start;

    gap:15px;

    background:#f8fff9;

    padding:18px 20px;

    border-radius:18px;
}

.why-item i{

    color:#ff7a00;

    font-size:22px;

    margin-top:3px;
}

.why-item span{

    color:#444;

    line-height:1.7;
}

/* =========================
CTA
========================= */

.cta{

    background:
    linear-gradient(135deg,#0f7b46,#0b5d36);

    padding:90px 20px;

    text-align:center;

    color:#fff;
}

.cta h2{

    font-size:50px;

    margin-bottom:20px;
}

.cta p{

    max-width:850px;

    margin:auto;

    line-height:1.9;

    margin-bottom:35px;

    color:rgba(255,255,255,0.92);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .grid{

        grid-template-columns:repeat(2,1fr);
    }

    .why-flex{

        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero-content h1{

        font-size:42px;
    }

    .hero-content p{

        font-size:15px;
    }

    .section-title h2{

        font-size:34px;
    }

    .grid{

        grid-template-columns:1fr;
    }

    .why-content h2{

        font-size:34px;
    }

    .cta h2{

        font-size:36px;
    }

    .section{

        padding:70px 15px;
    }

}
/* =========================
MOTOR TYPES SECTION
========================= */

.motor-types-section{

    width:100%;

    padding:100px 20px;

    background:
    linear-gradient(to bottom,#ffffff,#f7fff9);
}

/* CONTAINER */

.container{

    max-width:1300px;

    margin:auto;
}

/* =========================
TITLE
========================= */

.motor-title{

    text-align:center;

    margin-bottom:70px;
}

.motor-title span{

    display:inline-block;

    padding:12px 28px;

    background:rgba(255,122,0,0.12);

    color:#ff7a00;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:22px;
}

.motor-title h2{

    font-size:50px;

    color:#0f7b46;

    margin-bottom:22px;

    line-height:1.2;
}

.motor-title p{

    max-width:850px;

    margin:auto;

    color:#666;

    line-height:1.9;

    font-size:16px;
}

/* =========================
GRID
========================= */

.motor-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

/* =========================
CARD
========================= */

.motor-card{

    background:#fff;

    padding:40px 35px;

    border-radius:30px;

    transition:0.4s ease;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    border-top:5px solid #ff7a00;

    position:relative;

    overflow:hidden;
}

/* HOVER */

.motor-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(15,123,70,0.14);
}

/* ICON */

.motor-icon{

    width:85px;
    height:85px;

    border-radius:24px;

    background:
    linear-gradient(135deg,#ff7a00,#ff9d2f);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:34px;

    margin-bottom:28px;

    box-shadow:0 15px 35px rgba(255,122,0,0.25);
}

/* TITLE */

.motor-card h3{

    font-size:26px;

    color:#0f7b46;

    margin-bottom:18px;

    line-height:1.4;
}

/* TEXT */

.motor-card p{

    color:#666;

    line-height:1.9;

    font-size:15px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .motor-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .motor-title h2{

        font-size:36px;
    }

    .motor-grid{

        grid-template-columns:1fr;
    }

    .motor-types-section{

        padding:70px 15px;
    }

    .motor-card{

        padding:35px 28px;
    }

}
/* =========================
MOTOR CATEGORY STRIP
========================= */

.motor-category-strip{

    width:100%;

    padding:40px 20px;

    background:#ffffff;

    margin-top:-70px;

    position:relative;

    z-index:10;
}

/* CONTAINER */

.motor-category-container{

    max-width:1250px;

    margin:auto;

    background:#fff;

    border-radius:30px;

    padding:35px 25px;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* ITEM */

.motor-category-item{

    text-align:center;

    padding:25px 15px;

    border-radius:25px;

    transition:0.4s ease;

    cursor:pointer;

    background:#f7fff9;
}

/* HOVER */

.motor-category-item:hover{

    transform:translateY(-8px);

    background:linear-gradient(135deg,#0f7b46,#0b5d36);
}

/* IMAGE */

.motor-category-item img{
    width:100%;
    max-width:100%;
    
    object-fit:contain;
    margin-bottom:18px;
    transition:0.4s ease;
}

/* HEADING */

.motor-category-item h3{
    font-size:20px;
    color:#0f7b46;
    font-weight:600;
    transition:0.4s ease;
}

/* HOVER TEXT */

.motor-category-item:hover h3{
    color:#fff;
}

/* IMAGE HOVER */

.motor-category-item:hover img{

    transform:scale(1.08);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .motor-category-container{

        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .motor-category-container{

        grid-template-columns:repeat(2,1fr);

        padding:25px 15px;
    }

    .motor-category-item{

        padding:20px 12px;
    }

    .motor-category-item img{

        max-width:90px;

        height:70px;
    }

    .motor-category-item h3{

        font-size:16px;
    }

}

@media(max-width:480px){

    .motor-category-container{

        grid-template-columns:1fr;
    }

}
/* =========================
TRAVEL TYPES SECTION
========================= */

.travel-types-section{

    width:100%;

    padding:100px 20px;

    background:
    linear-gradient(to bottom,#ffffff,#f7fff9);
}

/* CONTAINER */

.container{

    max-width:1300px;

    margin:auto;
}

/* =========================
TITLE
========================= */

.travel-title{

    text-align:center;

    margin-bottom:70px;
}

/* TAG */

.travel-title span{

    display:inline-block;

    padding:12px 28px;

    background:rgba(255,122,0,0.12);

    color:#ff7a00;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:22px;
}

/* HEADING */

.travel-title h2{

    font-size:52px;

    color:#0f7b46;

    margin-bottom:22px;

    line-height:1.2;
}

/* PARAGRAPH */

.travel-title p{

    max-width:850px;

    margin:auto;

    color:#666;

    line-height:1.9;

    font-size:16px;
}

/* =========================
GRID
========================= */

.travel-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

/* =========================
CARD
========================= */

.travel-card{

    background:#fff;

    padding:40px 35px;

    border-radius:30px;

    position:relative;

    overflow:hidden;

    transition:0.4s ease;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    border-top:5px solid #ff7a00;
}

/* HOVER */

.travel-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,123,70,0.14);
}

/* NUMBER */

.travel-number{

    position:absolute;

    top:20px;
    right:25px;

    font-size:55px;

    font-weight:700;

    color:rgba(15,123,70,0.07);
}

/* ICON */

.travel-icon{

    width:85px;
    height:85px;

    background:
    linear-gradient(135deg,#ff7a00,#ff9d2f);

    border-radius:22px;

    display:flex;

    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:34px;

    margin-bottom:30px;

    box-shadow:0 15px 35px rgba(255,122,0,0.22);
}

/* TITLE */

.travel-card h3{

    font-size:26px;

    color:#0f7b46;

    margin-bottom:18px;

    line-height:1.4;
}

/* TEXT */

.travel-card p{

    color:#666;

    line-height:1.9;

    font-size:15px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .travel-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .travel-types-section{

        padding:70px 15px;
    }

    .travel-title h2{

        font-size:36px;
    }

    .travel-grid{

        grid-template-columns:1fr;
    }

    .travel-card{

        padding:35px 28px;
    }

}/* =========================
HERO SECTION
========================= */

.travel-hero{

    width:100%;
    min-height:35vh;

    background:
    linear-gradient(rgba(15,123,70,0.88),
    rgba(11,93,54,0.88)),
    url('images/travel-banner.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:80px 20px;
}

/* HERO CONTENT */

.hero-content{

    max-width:950px;

    color:#fff;
}

.hero-tag{

    display:inline-block;

    padding:12px 28px;

    background:rgba(255,255,255,0.12);

    border:1px solid rgba(255,255,255,0.25);

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:25px;

    backdrop-filter:blur(8px);
}

.hero-content h1{

    font-size:68px;

    margin-bottom:25px;

    line-height:1.2;
}

.hero-content p{

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,0.92);

    margin-bottom:40px;
}

/* BUTTON */

.hero-btn{

    display:inline-block;

    padding:18px 40px;

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    transition:0.4s ease;

    box-shadow:0 15px 35px rgba(255,122,0,0.30);
}

.hero-btn:hover{

    transform:translateY(-5px);

    background:#fff;

    color:#0f7b46;
}

/* =========================
COMMON SECTION
========================= */

.section{

    width:100%;

    padding:90px 20px;
}

.container{

    max-width:1300px;

    margin:auto;
}

/* TITLE */

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title span{

    display:inline-block;

    padding:10px 24px;

    background:rgba(255,122,0,0.12);

    color:#ff7a00;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:18px;
}

.section-title h2{

    font-size:48px;

    color:#0f7b46;

    margin-bottom:20px;
}

.section-title p{

    max-width:900px;

    margin:auto;

    line-height:1.9;

    color:#666;

    font-size:16px;
}

/* =========================
GRID
========================= */

.grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

/* CARD */

.card{

    background:#fff;

    padding:35px 30px;

    border-radius:28px;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    transition:0.4s ease;

    border-top:5px solid #ff7a00;
}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(15,123,70,0.12);
}

/* ICON */

.card-icon{

    width:75px;
    height:75px;

    background:linear-gradient(135deg,#ff7a00,#ff9d2f);

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:32px;

    margin-bottom:25px;
}

/* TITLE */

.card h3{

    font-size:24px;

    color:#0f7b46;

    margin-bottom:18px;
}

/* TEXT */

.card p{

    color:#666;

    line-height:1.9;

    font-size:15px;
}

/* =========================
WHY SECTION
========================= */

.why-section{

    background:#fff;
}

.why-flex{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

/* IMAGE */

.why-image img{

    width:100%;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* CONTENT */

.why-content h2{

    font-size:46px;

    color:#0f7b46;

    margin-bottom:25px;
}

.why-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;
}

/* LIST */

.why-list{

    display:flex;
    flex-direction:column;

    gap:18px;
}

.why-item{

    display:flex;
    align-items:flex-start;

    gap:15px;

    background:#f8fff9;

    padding:18px 20px;

    border-radius:18px;
}

.why-item i{

    color:#ff7a00;

    font-size:22px;

    margin-top:3px;
}

.why-item span{

    color:#444;

    line-height:1.7;
}

/* =========================
CTA
========================= */

.cta{

    background:
    linear-gradient(135deg,#0f7b46,#0b5d36);

    padding:90px 20px;

    text-align:center;

    color:#fff;
}

.cta h2{

    font-size:50px;

    margin-bottom:20px;
}

.cta p{

    max-width:850px;

    margin:auto;

    line-height:1.9;

    margin-bottom:35px;

    color:rgba(255,255,255,0.92);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .grid{

        grid-template-columns:repeat(2,1fr);
    }

    .why-flex{

        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero-content h1{

        font-size:42px;
    }

    .hero-content p{

        font-size:15px;
    }

    .section-title h2{

        font-size:34px;
    }

    .grid{

        grid-template-columns:1fr;
    }

    .why-content h2{

        font-size:34px;
    }

    .cta h2{

        font-size:36px;
    }

    .section{

        padding:70px 15px;
    }

}

/* =========================
TRAVEL TYPES SECTION
========================= */

.travel-types-section{

    width:100%;

    padding:100px 20px;

    background:
    linear-gradient(to bottom,#ffffff,#f7fff9);
}

/* CONTAINER */

.container{

    max-width:1300px;

    margin:auto;
}

/* =========================
TITLE
========================= */

.travel-title{

    text-align:center;

    margin-bottom:70px;
}

/* TAG */

.travel-title span{

    display:inline-block;

    padding:12px 28px;

    background:rgba(255,122,0,0.12);

    color:#ff7a00;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:22px;
}

/* HEADING */

.travel-title h2{

    font-size:52px;

    color:#0f7b46;

    margin-bottom:22px;

    line-height:1.2;
}

/* PARAGRAPH */

.travel-title p{

    max-width:850px;

    margin:auto;

    color:#666;

    line-height:1.9;

    font-size:16px;
}

/* =========================
GRID
========================= */

.travel-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

/* =========================
CARD
========================= */

.travel-card{

    background:#fff;

    padding:40px 35px;

    border-radius:30px;

    position:relative;

    overflow:hidden;

    transition:0.4s ease;

    box-shadow:0 15px 40px rgba(0,0,0,0.06);

    border-top:5px solid #ff7a00;
}

/* HOVER */

.travel-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(15,123,70,0.14);
}

/* NUMBER */

.travel-number{

    position:absolute;

    top:20px;
    right:25px;

    font-size:55px;

    font-weight:700;

    color:rgba(15,123,70,0.07);
}

/* ICON */

.travel-icon{

    width:85px;
    height:85px;

    background:
    linear-gradient(135deg,#ff7a00,#ff9d2f);

    border-radius:22px;

    display:flex;

    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:34px;

    margin-bottom:30px;

    box-shadow:0 15px 35px rgba(255,122,0,0.22);
}

/* TITLE */

.travel-card h3{

    font-size:26px;

    color:#0f7b46;

    margin-bottom:18px;

    line-height:1.4;
}

/* TEXT */

.travel-card p{

    color:#666;

    line-height:1.9;

    font-size:15px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .travel-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .travel-types-section{

        padding:70px 15px;
    }

    .travel-title h2{

        font-size:36px;
    }

    .travel-grid{

        grid-template-columns:1fr;
    }

    .travel-card{

        padding:35px 28px;
    }

}

/* mf*/




.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HERO SECTION */

.hero{
    position:relative;
    min-height:45vh;
    background:
    linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1400&q=80');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    top:-100px;
    right:-100px;
    animation:float 7s infinite ease-in-out;
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:700px;
    animation:fadeUp 1s ease;
}

.hero-content h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:800;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    color:#ddd;
}

.hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
    display:inline-block;
}

.btn-primary{
    background:#ffcc00;
    color:#000;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(255,204,0,0.4);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}

/* SECTION */



.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#002244;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* ABOUT */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:25px;
    position:relative;
}

.about-image img{
    width:100%;
    display:block;
    transition:0.6s;
}

.about-image:hover img{
    transform:scale(1.08);
}

.about-content h3{
    font-size:34px;
    margin-bottom:20px;
    color:#002244;
}

.about-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

/* FEATURES */

.features{
    background:#fff;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-card{
    background:#f7fbff;
    padding:35px;
    border-radius:25px;
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

.feature-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:5px;
    background:#ffcc00;
    left:0;
    top:0;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.feature-card img{
    width:70px;
    margin-bottom:20px;
    transition:0.5s;
}

.feature-card:hover img{
    transform:rotate(8deg) scale(1.1);
}

.feature-card h4{
    font-size:22px;
    margin-bottom:15px;
    color:#002244;
}

.feature-card p{
    line-height:1.8;
    color:#666;
}

/* BENEFITS */

.benefits-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.benefit-box{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.benefit-box:hover{
    transform:translateY(-10px);
}

.benefit-box img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.5s;
}

.benefit-box:hover img{
    transform:scale(1.08);
}

.benefit-content{
    padding:30px;
}

.benefit-content h4{
    font-size:24px;
    margin-bottom:15px;
    color:#002244;
}

.benefit-content p{
    line-height:1.8;
    color:#666;
}

/* SIP SECTION */

.sip{
    background:linear-gradient(135deg,#002244,#003d7a);
    color:#fff;
}

.sip-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.sip-image img{
    width:100%;
    border-radius:25px;
    animation:float 5s infinite ease-in-out;
}

.sip-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.sip-content p{
    line-height:1.9;
    margin-bottom:25px;
    color:#ddd;
}

.sip-points{
    list-style:none;
}

.sip-points li{
    margin-bottom:15px;
    font-size:17px;
}

/* CTA */

.cta{
    background:
    linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1400&q=80');
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.cta h2{
    font-size:50px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    line-height:1.9;
    margin-bottom:35px;
    color:#ddd;
}

/* FOOTER */

footer{
    background:#001122;
    color:#fff;
    padding:30px 0;
    text-align:center;
}

footer p{
    color:#bbb;
}

/* ANIMATION */

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0px);
    }
}

/* MOBILE */

@media(max-width:991px){

    .hero-content h1{
        font-size:42px;
    }

    .about-grid,
    .sip-grid{
        grid-template-columns:1fr;
    }

    .sip-content{
        order:2;
    }

}

@media(max-width:768px){

    .hero{
        text-align:center;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-content h1{
        font-size:34px;
    }

    .section-title h2{
        font-size:32px;
    }

    .cta h2{
        font-size:34px;
    }

}

/* MF*/
/* MUTUAL FUND TREND SECTION */

.mf-trend-section{
    padding:100px 0;
    background:#f7fbff;
}

.trend-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.trend-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    transition:0.5s;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    position:relative;
}

.trend-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

.trend-image{
    overflow:hidden;
    height:240px;
}

.trend-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s;
}

.trend-card:hover .trend-image img{
    transform:scale(1.1);
}

.trend-content{
    padding:35px 30px;
    position:relative;
}

.trend-icon{
    width:75px;
    height:75px;
    background:#ffcc00;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:-70px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(255,204,0,0.35);
    animation:floatIcon 4s ease-in-out infinite;
}

.trend-icon img{
    width:38px;
}

.trend-content h3{
    font-size:24px;
    margin-bottom:18px;
    color:#002244;
    font-weight:700;
}

.trend-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.goal-list{
    list-style:none;
    padding:0;
}

.goal-list li{
    margin-bottom:10px;
    color:#333;
    font-weight:500;
}

/* FLOAT ICON */

@keyframes floatIcon{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* MOBILE */

@media(max-width:768px){

    .trend-content{
        padding:30px 22px;
    }

    .trend-content h3{
        font-size:22px;
    }

}

/*loans*/

/* HERO SECTION */

.loan-hero{
    width:100%;
    min-height:65vh;
    background:linear-gradient(135deg,#f5fff5,#fff7ef);
    padding:10px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.loan-content{
    flex:1;
    min-width:320px;
    animation:fadeLeft 1s ease;
}

.loan-content h1{
    font-size:60px;
    line-height:1.2;
    color:#0c6b3d;
    margin-bottom:20px;
}

.loan-content h1 span{
    color:#ff7b00;
}

.loan-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
    color:#555;
}

.loan-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    transition:0.4s;
}

.btn-primary{
    background:#ff7b00;
    color:#fff;
}

.btn-primary:hover{
    background:#0c6b3d;
}

.btn-secondary{
    border:2px solid #0c6b3d;
    color:#0c6b3d;
}

.btn-secondary:hover{
    background:#0c6b3d;
    color:#fff;
}

/* HERO IMAGE */

.loan-image{
    flex:1;
    min-width:320px;
    text-align:center;
    position:relative;
    animation:fadeRight 1s ease;
}

.loan-image img{
    width:100%;
    max-width:550px;
    animation:float 4s ease-in-out infinite;
}

/* FLOATING ICONS */

.icon-box{
    position:absolute;
    width:80px;
    height:80px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#0c6b3d;
    animation:floatIcon 4s ease-in-out infinite;
}

.icon1{
    top:10%;
    left:0;
}

.icon2{
    top:60%;
    left:10%;
    color:#ff7b00;
}

.icon3{
    top:15%;
    right:35%;
}

.icon4{
    bottom:10%;
    right:45%;
    color:#ff7b00;
}

/* BENEFITS */

.benefits{
    padding:80px 8%;
    text-align:center;
}

.section-title{
    font-size:42px;
    color:#0c6b3d;
    margin-bottom:15px;
}

.section-title span{
    color:#ff7b00;
}

.section-desc{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
    margin-bottom:50px;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.benefit-card{
    background:#fff;
    padding:35px 25px;
    border-radius:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

.benefit-card:hover{
    transform:translateY(-10px);
}

.benefit-card i{
    font-size:45px;
    margin-bottom:20px;
    color:#ff7b00;
}

.benefit-card h3{
    margin-bottom:15px;
    color:#0c6b3d;
}

/* LIC SECTION */

.lic-section{
    background:linear-gradient(135deg,#0c6b3d,#159957);
    padding:80px 8%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
}

.lic-content{
    flex:1;
    min-width:300px;
}

.lic-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.lic-content p{
    line-height:1.9;
    color:#f0f0f0;
}

.lic-image{
    flex:1;
    text-align:center;
}

.lic-image img{
    width:100%;
    max-width:400px;
}

/* CTA */

.cta{
    padding:80px 8%;
    text-align:center;
    background:#fff7ef;
}

.cta h2{
    font-size:45px;
    color:#fff;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    color:#fff;
    margin-bottom:30px;
}

/* ANIMATION */

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes floatIcon{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* MOBILE */

@media(max-width:768px){

.loan-content h1{
    font-size:42px;
}

.section-title,
.cta h2,
.lic-content h2{
    font-size:32px;
}

.loan-hero{
    padding-top:40px;
}

}

/* MAIN WRAPPER */

.sip-wrapper{
    width:88%;
    min-height:100vh;
    padding:70px 8%;
    background:linear-gradient(135deg,#f4fff4,#fff7ef);
}

/* TITLE */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h1{
    font-size:55px;
    color:#0c6b3d;
    margin-bottom:15px;
}

.section-title h1 span{
    color:#ff7b00;
}

.section-title p{
    max-width:850px;
    margin:auto;
    line-height:1.9;
    color:#666;
    font-size:18px;
}

/* FLEX */

.sip-container{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

/* LEFT SIDE */

.calculator-box{
    flex:1;
    min-width:320px;
    background:#e49e01;
    padding:35px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* INPUT */

.input-group{
    margin-bottom:30px;
}

.input-group label{
    display:block;
    margin-bottom:10px;
    color:#ffffff;
    font-weight:bold;
}

.input-group input{
    width:100%;
    padding:16px;
    border:none;
    border-radius:15px;
    background:#f5f5f5;
    font-size:16px;
    outline:none;
}

.input-group input:focus{
    border:2px solid #ff7b00;
}

/* RESULT */

.result-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:40px;
}

.result-card{
    background:linear-gradient(135deg,#0c6b3d,#159957);
    padding:4px;
    border-radius:20px;
    text-align:center;
    color:#fff;
}

.result-card h3{
    margin-bottom:10px;
    font-size:18px;
}

.result-card p{
    font-size:28px;
    color:#ffcf9d;
    font-weight:bold;
}

/* GRAPH */

.graph-box{
    flex:1;
    min-width:320px;
    background:#fff;
    padding:35px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* TABLE */

.table-section{
    margin-top:60px;
    background:#fff;
    padding:35px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    overflow-x:auto;
}

.table-section h2{
    color:#0c6b3d;
    margin-bottom:25px;
    font-size:35px;
}

/* HORIZONTAL TABLE */

.horizontal-table{
    width:100%;
    overflow-x:auto;
}

.horizontal-table table{
    border-collapse:collapse;
    min-width:1000px;
    width:100%;
}

.horizontal-table th{
    background:#0c6b3d;
    color:#fff;
    padding:15px;
    border:1px solid #ddd;
    text-align:center;
}

.horizontal-table td{
    padding:15px;
    border:1px solid #eee;
    text-align:center;
    background:#fffaf5;
    font-weight:bold;
    color:#ff7b00;
}

/* MOBILE */

@media(max-width:768px){

.section-title h1{
    font-size:38px;
}

.section-title p{
    font-size:15px;
}

.result-box{
    grid-template-columns:1fr;
}

.sip-wrapper{
    padding:40px 5%;
}

.table-section h2{
    font-size:28px;
}

}

/* SECTION */

.premium-section{
    padding:90px 0;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* MAIN BOX */

.premium-box{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* LEFT */

.premium-left{
    width:42%;
    min-height:780px;
    position:relative;
    overflow:hidden;
}

.premium-left img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    inset:0;
    animation:zoomImage 8s infinite alternate ease-in-out;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,34,68,0.78),rgba(0,34,68,0.9));
}

.left-content{
    position:relative;
    z-index:2;
    padding:60px 45px;
    color:#fff;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.left-content h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:800;
}

.left-content p{
    line-height:1.9;
    color:#ddd;
    margin-bottom:35px;
}

.info-card{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.15);
    padding:22px;
    border-radius:22px;
    margin-bottom:20px;
    animation:floatCard 5s infinite ease-in-out;
}

.info-card h4{
    color:#ffcc00;
    font-size:22px;
    margin-bottom:10px;
}

.info-card p{
    margin:0;
    font-size:14px;
}

/* RIGHT */

.premium-right{
    width:58%;
    padding:60px;
    background:#fff;
}

.section-heading{
    margin-bottom:40px;
}

.section-heading h3{
    font-size:40px;
    color:#002244;
    margin-bottom:12px;
}

.section-heading p{
    color:#666;
    line-height:1.8;
}

/* FORM */

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-group{
    margin-bottom:10px;
}

.form-group.full{
    grid-column:span 2;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#002244;
}

.form-group input,
.form-group select{
    width:100%;
    padding:16px 18px;
    border:none;
    border-radius:16px;
    background:#f5f8fc;
    font-size:16px;
    outline:none;
    transition:0.4s;
}

.form-group input:focus,
.form-group select:focus{
    background:#fff;
    box-shadow:0 0 0 3px rgba(255,204,0,0.35);
}

/* RANGE */

.range-box{
    background:#f5f8fc;
    padding:22px;
    border-radius:22px;
}

.range-value{
    margin-top:12px;
    font-size:18px;
    font-weight:700;
    color:#ff9800;
}

/* BUTTON */

.calculate-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:60px;
    background:linear-gradient(135deg,#ffcc00,#ff9800);
    color:#000;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.4s;
}

.calculate-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(255,152,0,0.35);
}

/* RESULT */

.result-box{
    margin-top:35px;
    background:linear-gradient(135deg,#002244,#003d7a);
    border-radius:30px;
    padding:40px;
    color:#fff;
    display:none;
    animation:fadeIn 0.8s ease;
}

.result-title{
    text-align:center;
    margin-bottom:35px;
}

.result-title h4{
    font-size:28px;
    margin-bottom:10px;
}

.result-amount{
    font-size:60px;
    font-weight:800;
    color:#ffcc00;
}

.result-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.result-card{
    background:rgba(255,255,255,0.08);
    padding:25px;
    border-radius:20px;
    text-align:center;
}

.result-card h5{
    font-size:16px;
    color:#ddd;
    margin-bottom:10px;
}

.result-card span{
    font-size:24px;
    font-weight:700;
}

/* ANIMATION */

@keyframes zoomImage{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

@keyframes floatCard{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0px);
    }
}

/* MOBILE */

@media(max-width:1100px){

    .premium-box{
        flex-direction:column;
    }

    .premium-left,
    .premium-right{
        width:100%;
    }

    .premium-left{
        min-height:500px;
    }

}

@media(max-width:768px){

    .premium-right{
        padding:35px 22px;
    }

    .left-content{
        padding:35px 25px;
    }

    .left-content h2{
        font-size:34px;
    }

    .section-heading h3{
        font-size:30px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .form-group.full{
        grid-column:span 1;
    }

    .result-grid{
        grid-template-columns:1fr;
    }

    .result-amount{
        font-size:42px;
    }

}

/* SECTION */

.retirement-section{
    padding:90px 0;
    position:relative;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* MAIN BOX */

.retirement-box{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
    position:relative;
}

/* LEFT SIDE */

.retirement-left{
    width:40%;
    min-height:750px;
    position:relative;
    overflow:hidden;
    background:#002244;
}

.retirement-left img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    inset:0;
    animation:zoomImage 8s infinite alternate ease-in-out;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,34,68,0.75),rgba(0,34,68,0.85));
}

.left-content{
    position:relative;
    z-index:2;
    padding:60px 45px;
    color:#fff;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.left-content h2{
    font-size:46px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:800;
}

.left-content p{
    line-height:1.9;
    color:#ddd;
    margin-bottom:35px;
}

.info-card{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    padding:22px;
    border-radius:22px;
    margin-bottom:20px;
    animation:floatCard 5s infinite ease-in-out;
}

.info-card h4{
    font-size:22px;
    margin-bottom:8px;
    color:#ffcc00;
}

.info-card p{
    margin:0;
    font-size:14px;
    line-height:1.7;
}

/* RIGHT SIDE */

.retirement-right{
    width:60%;
    padding:60px;
    background:#fff;
}

.section-heading{
    margin-bottom:40px;
}

.section-heading h3{
    font-size:40px;
    color:#002244;
    margin-bottom:12px;
}

.section-heading p{
    color:#666;
    line-height:1.8;
}

/* FORM GRID */

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-group{
    margin-bottom:10px;
}

.form-group.full{
    grid-column:span 2;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#002244;
}

.form-group input,
.form-group select{
    width:100%;
    padding:16px 18px;
    border:none;
    border-radius:16px;
    background:#f5f8fc;
    font-size:16px;
    transition:0.4s;
    outline:none;
}

.form-group input:focus,
.form-group select:focus{
    background:#fff;
    box-shadow:0 0 0 3px rgba(255,204,0,0.35);
}

/* RANGE */

.range-wrap{
    background:#f5f8fc;
    padding:22px;
    border-radius:20px;
}

.range-value{
    margin-top:12px;
    font-weight:700;
    color:#ff9800;
    font-size:18px;
}

/* BUTTON */

.calculate-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:60px;
    background:linear-gradient(135deg,#ffcc00,#ff9800);
    color:#000;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.4s;
    margin-top:10px;
}

.calculate-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(255,152,0,0.35);
}

/* RESULT */

.result-box{
    margin-top:35px;
    background:linear-gradient(135deg,#002244,#003d7a);
    padding:40px;
    border-radius:30px;
    color:#fff;
    text-align:center;
    display:none;
    animation:fadeIn 0.8s ease;
}

.result-box h4{
    font-size:24px;
    margin-bottom:15px;
}

.result-value{
    font-size:60px;
    color:#ffcc00;
    font-weight:800;
    margin-bottom:15px;
}

.result-box p{
    color:#ddd;
    line-height:1.8;
}

/* ANIMATION */

@keyframes zoomImage{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

@keyframes floatCard{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0px);
    }
}

/* MOBILE */

@media(max-width:1100px){

    .retirement-box{
        flex-direction:column;
    }

    .retirement-left,
    .retirement-right{
        width:100%;
    }

    .retirement-left{
        min-height:500px;
    }

}

@media(max-width:768px){

    .retirement-right{
        padding:35px 22px;
    }

    .left-content{
        padding:35px 25px;
    }

    .left-content h2{
        font-size:34px;
    }

    .section-heading h3{
        font-size:30px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .form-group.full{
        grid-column:span 1;
    }

    .result-value{
        font-size:42px;
    }

}

/* SECTION */

.growth-section{
    padding:90px 0;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

/* MAIN BOX */

.growth-box{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* LEFT SIDE */

.growth-left{
    width:42%;
    min-height:760px;
    position:relative;
    overflow:hidden;
}

.growth-left img{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    inset:0;
    animation:zoomImage 7s infinite alternate ease-in-out;
}

.growth-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,34,68,0.72),rgba(0,34,68,0.85));
}

.left-content{
    position:relative;
    z-index:2;
    padding:60px 45px;
    color:#fff;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.left-content h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:800;
}

.left-content p{
    color:#ddd;
    line-height:1.9;
    margin-bottom:35px;
}

.stats-card{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,0.15);
    padding:22px;
    border-radius:22px;
    margin-bottom:20px;
    animation:floatCard 5s infinite ease-in-out;
}

.stats-card h4{
    color:#ffcc00;
    font-size:22px;
    margin-bottom:10px;
}

.stats-card p{
    margin:0;
    font-size:14px;
}

/* RIGHT SIDE */

.growth-right{
    width:58%;
    padding:60px;
    background:#fff;
}

.section-heading{
    margin-bottom:40px;
}

.section-heading h3{
    font-size:40px;
    color:#002244;
    margin-bottom:12px;
}

.section-heading p{
    color:#666;
    line-height:1.8;
}

/* FORM */

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.form-group{
    margin-bottom:10px;
}

.form-group.full{
    grid-column:span 2;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#002244;
}

.form-group input,
.form-group select{
    width:100%;
    padding:16px 18px;
    border:none;
    border-radius:16px;
    background:#f5f8fc;
    font-size:16px;
    transition:0.4s;
    outline:none;
}

.form-group input:focus,
.form-group select:focus{
    background:#fff;
    box-shadow:0 0 0 3px rgba(255,204,0,0.35);
}

/* RANGE */

.range-box{
    background:#f5f8fc;
    padding:22px;
    border-radius:22px;
}

.range-value{
    margin-top:12px;
    font-weight:700;
    color:#ff9800;
    font-size:18px;
}

/* BUTTON */

.calculate-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:60px;
    background:linear-gradient(135deg,#ffcc00,#ff9800);
    color:#000;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.4s;
}

.calculate-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(255,152,0,0.35);
}

/* RESULT */

.result-box{
    margin-top:35px;
    background:linear-gradient(135deg,#002244,#003d7a);
    border-radius:30px;
    padding:40px;
    color:#fff;
    display:none;
    animation:fadeIn 0.8s ease;
}

.result-title{
    text-align:center;
    margin-bottom:35px;
}

.result-title h4{
    font-size:28px;
    margin-bottom:10px;
}

.result-amount{
    font-size:60px;
    font-weight:800;
    color:#ffcc00;
}

.result-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:30px;
}

.result-card{
    background:rgba(255,255,255,0.08);
    padding:25px;
    border-radius:20px;
    text-align:center;
}

.result-card h5{
    font-size:16px;
    color:#ddd;
    margin-bottom:10px;
}

.result-card span{
    font-size:24px;
    font-weight:700;
    color:#fff;
}

/* ANIMATION */

@keyframes zoomImage{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

@keyframes floatCard{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0px);
    }
}

/* MOBILE */

@media(max-width:1100px){

    .growth-box{
        flex-direction:column;
    }

    .growth-left,
    .growth-right{
        width:100%;
    }

    .growth-left{
        min-height:500px;
    }

}

@media(max-width:768px){

    .growth-right{
        padding:35px 22px;
    }

    .left-content{
        padding:35px 25px;
    }

    .left-content h2{
        font-size:34px;
    }

    .section-heading h3{
        font-size:30px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .form-group.full{
        grid-column:span 1;
    }

    .result-grid{
        grid-template-columns:1fr;
    }

    .result-amount{
        font-size:42px;
    }

}
.contact-form-box{
    width:100%;
}

.input-box{
    margin-bottom:20px;
}

.input-box input,
.input-box textarea{
    width:100%;
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
    outline:none;
    box-sizing:border-box;
}

.contact-btn{
    background:#0b8f4d;
    color:#fff;
    border:none;
    padding:14px 30px;
    font-size:16px;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}

.contact-btn:hover{
    opacity:0.9;
}

/* POPUP */

.popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-content{
    background:#fff;
    padding:40px;
    border-radius:12px;
    text-align:center;
    width:90%;
    max-width:400px;
    animation:popupShow 0.4s ease;
}

.popup-content h2{
    color:#0b8f4d;
    margin-bottom:10px;
}

.popup-content button{
    background:#0b8f4d;
    color:#fff;
    border:none;
    padding:10px 25px;
    border-radius:6px;
    cursor:pointer;
    margin-top:20px;
}

@keyframes popupShow{
    from{
        transform:scale(0.7);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/*Fixed Deposite*/

/* HEADER */

header{
    background:linear-gradient(135deg,#0c8b63,#ff7a00);
    color:#fff;
    padding:18px 5%;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:30px;
    font-weight:700;
}

.logo span{
    color:#ffe0b3;
}

.menu a{
    text-decoration:none;
    color:#fff;
    margin-left:25px;
    font-weight:500;
    transition:0.3s;
}

.menu a:hover{
    color:#ffe0b3;
}

/* HERO SECTION */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 5%;
    background:linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1400&auto=format&fit=crop') center/cover;
}

.hero-container{
    max-width:1200px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    color:#fff;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text h1 span{
    color:#ffb347;
}

.hero-text p{
    font-size:18px;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:#ff7a00;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.hero-btn:hover{
    background:#0c8b63;
    transform:translateY(-3px);
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:500px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* SECTION COMMON */

.section{
    padding:80px 5%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    color:#0c8b63;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
    font-size:17px;
}

/* ABOUT FD */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-grid img{
    width:100%;
    border-radius:25px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.about-content h3{
    color:#ff7a00;
    font-size:30px;
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:20px;
    font-size:17px;
}

/* CARDS */

.card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    border-top:5px solid #ff7a00;
}

.card:hover{
    transform:translateY(-10px);
}

.card-icon{
    width:70px;
    height:70px;
    background:#eaf8f3;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:30px;
    margin-bottom:20px;
}

.card h3{
    color:#0c8b63;
    margin-bottom:15px;
}

.card p{
    font-size:15px;
    color:#555;
}

/* ADVANTAGES */

.advantage-section{
    background:#0c8b63;
    color:#fff;
    border-radius:30px;
    padding:60px;
}

.advantage-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.advantage-item{
    background:rgba(255,255,255,0.12);
    padding:18px 20px;
    border-radius:15px;
    backdrop-filter:blur(5px);
}

/* CTA */

.cta{
    background:#0c8b63;
    color:#fff;
    text-align:center;
    padding:80px 5%;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    max-width:800px;
    margin:auto;
    margin-bottom:30px;
    font-size:18px;
}

.cta a{
    display:inline-block;
    background:#fff;
    color:#0c8b63;
    padding:15px 35px;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.cta a:hover{
    transform:scale(1.05);
}

/* FOOTER */

footer{
    background:#111;
    color:#ccc;
    text-align:center;
    padding:25px;
    font-size:14px;
}

/* MOBILE RESPONSIVE */

@media(max-width:992px){

    .hero-container,
    .about-grid{
        grid-template-columns:1fr;
        flex-direction:column;
    }

    .card-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero-text h1{
        font-size:42px;
    }

}

@media(max-width:768px){

    .menu{
        display:none;
    }

    .hero{
        padding-top:120px;
    }

    .hero-text{
        text-align:center;
    }

    .hero-text h1{
        font-size:34px;
    }

    .section-title h2{
        font-size:32px;
    }

    .card-grid{
        grid-template-columns:1fr;
    }

    .advantage-list{
        grid-template-columns:1fr;
    }

    .advantage-section{
        padding:35px 25px;
    }

    .cta h2{
        font-size:30px;
    }

}
.view-card-btn{
display:inline-flex;
align-items:center;
gap:10px;
background:linear-gradient(135deg,#004aad,#00c6ff);
padding:14px 28px;
border-radius:50px;
color:#fff;
text-decoration:none;
font-size:16px;
font-weight:600;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transition:0.3s;
}

.view-card-btn:hover{
transform:translateY(-5px);
}