*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#f5f8ff;
}


/* =========================
   HERO SECTION
========================= */

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
}

/* VIDEO BACKGROUND */

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-3;
}

/* DARK OVERLAY */

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
    rgba(5,10,25,0.78),
    rgba(5,10,25,0.82));
    z-index:-2;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    width:100%;
    border-bottom:1px solid rgba(255,255,255,0.08);
    background:rgba(3,10,20,0.25);
    backdrop-filter:blur(8px);
    position:relative;
    z-index:10;
}

.top-container{
    max-width:1300px;
    margin:auto;
    padding:8px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

/* CONTACT INFO */

.contact-info{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:8px;
    color:#ffffff;
    font-size:13px;
    font-weight:500;
    transition:0.4s;
    cursor:pointer;
}

.contact-item:hover{
    color:#4da3ff;
    transform:translateY(-2px);
}

.contact-item i{
    width:30px;
    height:30px;
    border-radius:50%;
    background:linear-gradient(135deg,#7b2ff7,#ff7b00);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    color:#fff;
    transition:0.4s;
}

.contact-item:hover i{
    transform:rotate(10deg) scale(1.1);
    box-shadow:0 0 15px rgba(77,163,255,0.6);
}

/* RIGHT SECTION */

.right-section{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

/* SOCIAL ICONS */

.social-icons{
    display:flex;
    gap:8px;
}

.social-icons a{
    width:32px;
    height:32px;
    background:linear-gradient(135deg,#7b2ff7,#ff7b00);
    color:#fff;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:14px;
    transition:0.4s ease;
}

.social-icons a:hover{
    transform:translateY(-4px);
    background:#4da3ff;
    box-shadow:0 0 18px rgba(77,163,255,0.7);
}

/* BUTTON */

.brochure-btn{
    padding:10px 20px;
    border:none;
    border-radius:30px;
    background:linear-gradient(135deg,#7b2ff7,#ff7b00);
    color:#fff;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s;
}

.brochure-btn:hover{
    background:linear-gradient(135deg,#4da3ff,#008cff);
    transform:translateY(-3px);
    box-shadow:0 0 18px rgba(77,163,255,0.7);
}

/* =========================
   NAVBAR
========================= */

.navbar{
    width:100%;
    position:relative;
    z-index:10;
    background:rgba(3,10,20,0.18);
    backdrop-filter:blur(8px);
}

.nav-container{
    max-width:1300px;
    margin:auto;
    padding:0px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

/* LOGO */

.logo{
    /* background:#fff; */
    padding:px;
    border-radius:50px;
    transition:0.4s;
}

.logo img{
    width:120px;
}

.logo:hover{
    transform:scale(1.05);
    box-shadow:0 0 18px rgba(77,163,255,0.5);
}

/* NAV LINKS */

.nav-links{
    display:flex;
    align-items:center;
    gap:25px;
    list-style:none;
}

.nav-links li a{
    text-decoration:none;
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    transition:0.4s;
    position:relative;
}

.nav-links li a:hover,
.nav-links li a.active{
    color:#4da3ff;
}

.nav-links li a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    left:0;
    bottom:-5px;
    background:#4da3ff;
    transition:0.4s;
}

.nav-links li a:hover::after{
    width:100%;
}

/* LOGIN BUTTON */

.login-btn{
    padding:10px 18px;
    background:linear-gradient(135deg,#7b2ff7,#ff7b00);
    border:none;
    border-radius:6px;
    color:#fff;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s;
}

.login-btn:hover{
    background:linear-gradient(135deg,#4da3ff,#008cff);
    transform:translateY(-3px);
    box-shadow:0 0 18px rgba(77,163,255,0.7);
}

/* MOBILE MENU */

.menu-toggle{
    display:none;
    color:#ffffff;
    font-size:26px;
    cursor:pointer;
}

/* =========================
   HOME CONTENT
========================= */

.home-content{
    width:100%;
    min-height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    position:relative;
    z-index:5;
}

.content{
    max-width:850px;
    color:#fff;
    animation:fadeUp 1.2s ease;
}

.sub-heading{
    display:inline-block;
    padding:10px 20px;
    border-radius:30px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    color:#4da3ff;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:20px;
    backdrop-filter:blur(6px);
}

.content h1{
    font-size:65px;
    line-height:1.2;
    margin-bottom:20px;
}

.content p{
    font-size:18px;
    line-height:1.8;
    color:#d6d6d6;
    margin-bottom:35px;
}

/* BUTTONS */

.home-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    padding:15px 32px;
    border:none;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
}

.primary-btn{
    background:linear-gradient(135deg,#7b2ff7,#ff7b00);
    color:#fff;
}

.primary-btn:hover{
    background:linear-gradient(135deg,#4da3ff,#008cff);
    transform:translateY(-4px);
    box-shadow:0 0 20px rgba(77,163,255,0.6);
}

.secondary-btn{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,0.2);
    backdrop-filter:blur(6px);
}

.secondary-btn:hover{
    background:#4da3ff;
    border-color:#4da3ff;
    transform:translateY(-4px);
    box-shadow:0 0 20px rgba(77,163,255,0.6);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#08111f;
        flex-direction:column;
        padding:25px 0;
        gap:20px;
        display:none;
        animation:slideDown 0.5s ease;
    }

  
    .nav-links.active{
        display:flex;
    }

    .login-btn{
        display:none;
    }
}

@media(max-width:768px){

    .top-container{
        flex-direction:column;
        align-items:flex-start;
    }

    .right-section{
        width:100%;
        justify-content:space-between;
    }

    .content h1{
        font-size:34px;
    }

    .content p{
        font-size:10px;
    }

    .home-content{
        min-height:75vh;
    }
}
@media (max-width: 576px) {
    .hero-buttons {
        margin-bottom: 130px;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

@media(max-width:480px){

    .content h1{
        font-size:30px;
    }

    .sub-heading{
        font-size:12px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
    }
      .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* ANIMATIONS */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

/* VIDEO */

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

/* DARK OVERLAY */

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0, 0, 0, 0.029);
    z-index:-1;
}

/* NAVBAR & TOPBAR GLASS EFFECT */

.top-bar,
.navbar{
    position:relative;
    z-index:10;
    background:rgba(0,0,0,0.15);
    backdrop-filter:blur(6px);
}
/* =========================
   DROPDOWN MENU
========================= */

.dropdown{
    position:relative;
}

/* MAIN DROPDOWN */

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width:260px;
    background:rgba(8,17,31,0.97);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px;
    padding:10px 0;
    list-style:none;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:0.4s ease;
    z-index:999;
}

/* SHOW DROPDOWN */

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* DROPDOWN ITEMS */

.dropdown-menu li{
    position:relative;
}

.dropdown-menu li a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 20px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
    white-space:nowrap;
}

/* HOVER */

.dropdown-menu li a:hover{
    background:rgba(77,163,255,0.15);
    color:#4da3ff;
    padding-left:28px;
}

/* =========================
   SUBMENU
========================= */

.submenu-menu{
    position:absolute;
    top:0;
    left:100%;
    min-width:240px;
    background:rgba(8,17,31,0.97);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px;
    padding:10px 0;
    list-style:none;
    opacity:0;
    visibility:hidden;
    transform:translateX(15px);
    transition:0.4s ease;
}

/* SHOW SUBMENU */

.submenu:hover > .submenu-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}

/* ICON */

.dropdown-menu i{
    font-size:12px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){
   
    .dropdown-menu,
    .submenu-menu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        width:100%;
        margin-top:10px;
        background:#0d1728;
        border-radius:10px;
    }

    .dropdown.active > .dropdown-menu{
        display:block;
    }

    .submenu.active > .submenu-menu{
        display:block;
    }

    .dropdown-menu li a:hover{
        padding-left:20px;
    }
}

/* HERO CONTENT */

.hero-content{
    width:100%;
    height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    /* padding:20px; */
    position:relative;
    z-index:5;
}

/* CONTENT */

.hero-left{
    max-width:750px;
    color:#fff;
    animation:fadeUp 1.2s ease;
}

/* SUB HEADING */

.sub-heading{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    color:#4da3ff;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
    backdrop-filter:blur(8px);
}

/* HEADING */

.hero-left h1{
    font-size:56px;
    line-height:1.2;
    margin-bottom:18px;
    font-weight:700;
    text-shadow:0 4px 15px rgba(0,0,0,0.35);
}

/* PARAGRAPH */

.hero-left p{
    font-size:17px;
    line-height:1.7;
    color:#e5e5e5;
    max-width:650px;
    margin:auto;
    margin-bottom:32px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

/* PRIMARY BUTTON */

.primary-btn{
    padding:15px 30px;
    border:none;
    border-radius:40px;
    background:linear-gradient(135deg,#ff5722,#ff7b00);
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
    display:flex;
    align-items:center;
    gap:8px;
}

.primary-btn:hover{
    transform:translateY(-4px);
    background:linear-gradient(135deg,#4da3ff,#008cff);
    box-shadow:0 0 20px rgba(77,163,255,0.5);
}

/* SECONDARY BUTTON */

.secondary-btn{
    padding:15px 30px;
    border-radius:40px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
    backdrop-filter:blur(6px);
}

.secondary-btn:hover{
    background:#4da3ff;
    border-color:#4da3ff;
    transform:translateY(-4px);
    box-shadow:0 0 20px rgba(77,163,255,0.5);
}

/* HERO BUTTONS */

.hero-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    width:100%;
}

/* BUTTON COMMON */

.primary-btn,
.secondary-btn{
    padding:14px 28px;
    border:none;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-width:180px;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .hero-buttons{
        flex-direction:column;
        gap:14px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:320px;
        font-size:14px;
        padding:13px 20px;
    }
}

@media(max-width:480px){

    .hero-buttons{
        width:100%;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:100%;
        font-size:13px;
        padding:12px 18px;
    }
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-left h1{
        font-size:40px;
    }

    .hero-left p{
        font-size:14px;
    }
}

@media(max-width:768px){

    .hero-left h1{
        font-size:34px;
    }

    .hero-left p{
        font-size:15px;
    }

    .primary-btn,
    .secondary-btn{
        padding:13px 24px;
        font-size:14px;
    }
}

@media(max-width:480px){

    .hero-left h1{
        font-size:28px;
    }

    .hero-left p{
        font-size:14px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        justify-content:center;
    }
}
/* =========================
   MINI CONTACT CARD
========================= */

.contact-strip{
    width:100%;
    padding:45px 20px;

    display:flex;
    justify-content:center;
}

/* CARD */
.contact-card{
    position:absolute;
    bottom:-60px;
    left:50%;
    transform:translateX(-50%);
}
.contact-card{
    width:100%;
    max-width:950px;
    padding:24px 30px;
    border-radius:18px;
    background:#ffffff;
    border:1px solid #e7ecf5;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    transition:0.4s ease;
}



/* LEFT SIDE */

.contact-left{
    max-width:520px;
}

/* TAG */

.contact-tag{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#edf4ff;
    color:#4da3ff;
    font-size:11px;
    font-weight:600;
    margin-bottom:12px;
}

/* HEADING */

.contact-left h2{
    font-size:24px;
    color:#08111f;
    margin-bottom:10px;
    line-height:1.3;
}

/* TEXT */

.contact-left p{
    font-size:13px;
    line-height:1.7;
    color:#666;
}

/* RIGHT SIDE */

.contact-right{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

/* BUTTON */

.contact-btn{
    padding:12px 20px;
    border-radius:40px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.4s ease;
}

/* CALL BUTTON */

.call-btn{
    background:linear-gradient(135deg,#7b2ff7,#ff7b00);
    color:#fff;
}

.call-btn:hover{
    background:linear-gradient(135deg,#4da3ff,#008cff);
    transform:translateY(-3px);
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
    background:#f2f6fc;
    border:1px solid #dbe5f2;
    color:#08111f;
}

.whatsapp-btn:hover{
    background:#25D366;
    color:#fff;
    transform:translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .contact-card{
        flex-direction:column;
        align-items:flex-start;
        padding:22px 20px;
    }

    .contact-left h2{
        font-size:20px;
    }

    .contact-left p{
        font-size:12px;
    }

    .contact-right{
        width:100%;
    }

    .contact-btn{
        flex:1;
        justify-content:center;
    }
}

@media(max-width:480px){

    .contact-card{
        border-radius:14px;
    }

    .contact-left h2{
        font-size:18px;
    }

    .contact-btn{
        width:100%;
    }
}
/* =========================
   PROJECT SECTION
========================= */

.projects-section{
    padding:70px 5%;
    background:#f8fbff;
    overflow:hidden;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title span{
    color:#4da3ff;
    font-size:13px;
    font-weight:600;
}

.section-title h2{
    font-size:36px;
    color:#08111f;
    margin:10px 0;
}

.section-title p{
    max-width:550px;
    margin:auto;
    color:#666;
    font-size:20px;
    line-height:1.7;
}

/* =========================
   SLIDER
========================= */

.slider-wrapper{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.project-slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding:10px 0;
}



.project-slider::-webkit-scrollbar{
    display:none;
}

/* =========================
   CARD
========================= */

.project-card{
    flex:0 0 calc(25% - 15px);
    scroll-snap-align:start;
    background:#fff;
    /* border-radius:16px; */
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s ease;
}

.project-card:hover{
    transform:translateY(-6px);
}

.project-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.project-info{
    padding:15px;
    text-align:center;
}

.project-info h3{
    font-size:17px;
    color:#08111f;
    margin-bottom:4px;
}

.project-info p{
    font-size:13px;
    color:#666;
}

/* =========================
   BUTTON
========================= */

.enquire-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    padding:12px;
    font-size:13px;
    font-weight:600;
    color:#fff;
    background:linear-gradient(
        135deg,
        #7b2ff7,
        #ff7b00
    );
    transition:.3s;
}

.enquire-btn:hover{
    background:linear-gradient(
        135deg,
        #4da3ff,
        #008cff
    );
}

/* =========================
   ARROWS
========================= */

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
    z-index:10;
    transition:.3s;
}

.slider-btn:hover{
    background:#4da3ff;
    color:#fff;
}

.prev{
    left:-20px;
}

.next{
    right:-20px;
}

/* =========================
   DOTS
========================= */

.slider-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-top:25px;
}

.slider-dots span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#d6dce7;
    cursor:pointer;
    transition:.3s;
}

.slider-dots span.active{
    background:#4da3ff;
    width:25px;
    border-radius:20px;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .project-card{
        flex:0 0 calc(50% - 10px);
    }

    .section-title h2{
        font-size:28px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .project-card{
        flex:0 0 100%;
    }

    .project-card img{
        height:220px;
    }

    .slider-btn{
        display:none;
    }

    .section-title h2{
        font-size:24px;
    }

    .section-title p{
        font-size:13px;
    }
}
/* ======================
   WHY INVEST SECTION
====================== */

.why-invest{
    padding:60px 5%;
    background:#f8fbff;
}

.why-invest-content{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.section-tag{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#edf5ff;
    color:#4da3ff;
    font-size:11px;
    font-weight:600;
}

.why-invest-content h2{
    font-size:40px;
    color:#08111f;
    margin:12px 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.why-invest-content > p{
    max-width:550px;
    margin:auto;
    color:#000000;
    font-size:16px;
    line-height:1.7;
    margin-bottom:35px;
}

/* GRID */

.invest-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

/* SMALL CARDS */

.invest-card{
    background:#fff;
    border:1px solid #e8eef8;
    border-radius:14px;
    padding:20px 15px;
    transition:.3s;
    text-align:center;
}

.invest-card:hover{
    transform:translateY(-4px);
    border-color:#4da3ff;
    box-shadow:0 8px 20px rgba(77,163,255,.12);
}

/* ICON */

.invest-card i{
    font-size:24px;
    color:#ff7b00;
    margin-bottom:10px;
}

/* TITLE */

.invest-card h3{
    font-size:15px;
    color:#08111f;
    margin-bottom:8px;
}

/* TEXT */

.invest-card p{
    font-size:12px;
    color:#666;
    line-height:1.6;
}

/* TABLET */

@media(max-width:992px){

    .invest-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:768px){

    .why-invest{
        padding:50px 20px;
    }

    .why-invest-content h2{
        font-size:24px;
    }

    .why-invest-content > p{
        font-size:12px;
    }

    .invest-grid{
        grid-template-columns:1fr;
    }

    .invest-card{
        padding:18px 15px;
    }
}
.why-invest{
    position:relative;
    padding:60px 5%;

    background:
    linear-gradient(
        rgba(144, 116, 116, 0.192),
        rgba(169, 167, 167, 0.858)
    ),
    url("pattern.jpeg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
/* ==========================
   FEATURES SECTION
========================== */

.features-section{
    padding:70px 5%;
    background:#f8fbff;
}

.features-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:300px 1fr;
    gap:25px;
}

/* LEFT CONTENT */

.features-intro{
    position:sticky;
    top:100px;
}

.section-tag{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#edf5ff;
    color:#4da3ff;
    font-size:11px;
    font-weight:600;
    margin-bottom:15px;
}

.features-intro h2{
    font-size:28px;
    color:#08111f;
    margin-bottom:15px;
    line-height:1.3;
}

.features-intro p{
    font-size:13px;
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.view-all-btn{
    text-decoration:none;
    color:#ff7b00;
    font-size:13px;
    font-weight:600;
}

/* GRID */

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

/* CARD */

.feature-card{
    background:#fff;
    border:1px solid #e7edf7;
    border-radius:14px;
    padding:22px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
    border-color:#4da3ff;
    box-shadow:0 10px 20px rgba(77,163,255,.12);
}

.feature-card i{
    font-size:28px;
    color:#ff7b00;
    margin-bottom:15px;
}

.feature-card h3{
    font-size:16px;
    color:#08111f;
    margin-bottom:10px;
}

.feature-card p{
    font-size:12px;
    color:#666;
    line-height:1.8;
}

/* TABLET */

@media(max-width:992px){

    .features-container{
        grid-template-columns:1fr;
    }

    .features-intro{
        position:static;
        text-align:center;
    }

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:768px){

    .features-grid{
        grid-template-columns:1fr;
    }

    .features-intro h2{
        font-size:24px;
    }

    .feature-card{
        padding:18px;
    }
}
/* =========================
   STATS SECTION
========================= */

.stats-section{
    position:relative;
    padding:80px 5%;

    background:
    
    url("state.jpeg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

/* OPTIONAL OVERLAY PATTERN */

.stats-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(77,163,255,0.03),
        rgba(255,123,0,0.03)
    );
    pointer-events:none;
}

.stats-section .section-title,
.stats-container{
    position:relative;
    z-index:2;
}

/* =========================
   SECTION HEADING
========================= */

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title span{
    display:inline-block;
    padding:6px 14px;
    background:#edf5ff;
    color:#4da3ff;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.section-title h2{
    font-size:32px;
    color:#08111f;
    margin:12px 0;
}

.section-title p{
    max-width:600px;
    margin:auto;
    color:#666;
    font-size:14px;
    line-height:1.8;
}

/* =========================
   CARDS
========================= */

.stats-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{
    background:rgba(255,255,255,0.95);
    border:1px solid #e8eef8;
    border-radius:16px;
    padding:25px 20px;
    text-align:center;
    transition:.3s ease;
    backdrop-filter:blur(10px);
}

.stat-card:hover{
    transform:translateY(-6px);
    border-color:#4da3ff;
    box-shadow:0 10px 25px rgba(77,163,255,.15);
}

.stat-card i{
    font-size:28px;
    color:#ff7b00;
    margin-bottom:12px;
}

.stat-card h2{
    font-size:34px;
    font-weight:700;
    color:#08111f;
    margin-bottom:6px;
}

.stat-card p{
    font-size:13px;
    color:#666;
    margin:0;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .stats-container{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:28px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .stats-section{
        padding:60px 20px;
        background-attachment:scroll;
    }

    .stats-container{
        grid-template-columns:1fr;
        gap:15px;
    }

    .section-title h2{
        font-size:24px;
    }

    .section-title p{
        font-size:13px;
    }

    .stat-card{
        padding:22px;
    }

    .stat-card h2{
        font-size:28px;
    }

    .stat-card i{
        font-size:24px;
    }
}

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section{
    padding:80px 5%;
    background:#f8fbff;
}

.testimonials-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* CARD */

.testimonial-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    border:1px solid #e8eef8;
    transition:.3s ease;
}

.testimonial-card:hover{
    transform:translateY(-6px);
    border-color:#4da3ff;
    box-shadow:0 10px 25px rgba(77,163,255,.12);
}

/* STARS */

.stars{
    color:#ff7b00;
    font-size:18px;
    margin-bottom:15px;
}

/* REVIEW */

.testimonial-card p{
    font-size:13px;
    line-height:1.8;
    color:#666;
    margin-bottom:20px;
}

/* CLIENT */

.client-info{
    display:flex;
    align-items:center;
    gap:12px;
}

.client-info img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

.client-info h4{
    font-size:14px;
    color:#08111f;
    margin-bottom:4px;
}

.client-info span{
    font-size:12px;
    color:#666;
}

/* RESPONSIVE */

@media(max-width:992px){

    .testimonials-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .testimonials-section{
        padding:60px 20px;
    }

    .testimonials-container{
        grid-template-columns:1fr;
    }

    .testimonial-card{
        padding:20px;
    }
}
.booking-section{
    padding:100px 5%;

    background:
    linear-gradient(
        rgba(8,17,31,.55),
        rgba(8,17,31,.55)
    ),
    url("form.jpeg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

/* FORM BOX */

.booking-form{
    max-width:500px;
    margin:auto;
    background:white;
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:35px;
    text-align:center;
}

/* HEADING */

.booking-form span{
    color:#4da3ff;
    font-size:12px;
    font-weight:600;
}

.booking-form h2{
    color:black;
    margin:10px 0;
    font-size:32px;
}

.booking-form p{
    color:black;
    font-size:13px;
    margin-bottom:25px;
}

/* FORM */

.booking-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.booking-form input,
.booking-form select{
    padding:14px;
    border:solid black 1px;
    border-radius:10px;
    background:rgba(255,255,255,.9);
    font-size:13px;
    outline:none;
}

.booking-form button{
    padding:14px;
    border:none;
    border-radius:40px;
    background:linear-gradient(
        135deg,
        #7b2ff7,
        #ff7b00
    );
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.booking-form button:hover{
    background:linear-gradient(
        135deg,
        #4da3ff,
        #008cff
    );
    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

    .booking-section{
        padding:70px 20px;
        background-attachment:scroll;
    }

    .booking-form{
        padding:25px;
    }

    .booking-form h2{
        font-size:26px;
    }
}
