/* ========================================
   GLOBAL STYLES
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ========================================
   NAVBAR
======================================== */

.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 0px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 999;
}

.custom-navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ========================================
   LOGO
======================================== */

.logo-text {
    font-size: 30px;
    font-weight: 800;
    color: #111827 !important;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo-text span {
    color: #2563eb;
}

/* ========================================
   NAV LINKS
======================================== */

.nav-gap {
    gap: 12px;
}

.navbar-nav .nav-link {
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px !important;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

/* ========================================
   RIGHT BUTTONS
======================================== */

.nav-buttons {
    gap: 14px;
}

.login-btn {
    text-decoration: none;
    color: #111827;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn:hover {
    color: #2563eb;
}

.book-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 12px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.book-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

/* ========================================
   MOBILE MENU
======================================== */

.custom-toggler {
    border: none;
    box-shadow: none !important;
    color: #fff;
    font-size: 45px;
}

.navbar-toggler-icon {
    width: 40px;
    height: 40px;
}

/* ========================================
   HERO DEMO SECTION
======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background:
        linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
        url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=2070&auto=format&fit=crop') center/cover;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: #2563eb;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
    max-width: 620px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.primary-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 15px 30px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.secondary-btn {
    border: 2px solid #d1d5db;
    color: #111827;
    padding: 15px 30px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

/*-----------Addon new section------------------*/

.service-tabs-section{
    background:#f8fafc;
}

.service-tabs .nav-link{
    border-radius:50px;
    padding:14px 28px;
    margin:6px;
    font-weight:700;
}

.service-tabs .nav-link.active{
    background:#2563eb;
}

.service-tab-card{
    background:#fff;
    border-radius:24px;
    padding:50px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-tab-card h3{
    font-size:42px;
    font-weight:800;
    color:#0F172A;
    line-height:1.15;
    letter-spacing:-0.5px;
    margin-bottom:20px;
}

.service-tab-card p{
    font-size:18px;
    line-height:1.9;
    color:#64748B;
    max-width:560px;
    margin-bottom:35px;
    font-weight:400;
}
@media(max-width:768px){

.service-tab-card{
padding:25px;
}

.service-tabs .nav-link{
width:100%;
margin-bottom:10px;
}

}
@media (max-width:991px){

.service-tab-card h3{
    font-size:34px;
}

.service-tab-card p{
    font-size:17px;
    line-height:1.8;
}
.service-tab-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:20px;
}

}

@media (max-width:576px){

.service-tab-card h3{
    font-size:28px;
}

.service-tab-card p{
    font-size:16px;
    line-height:1.7;
}
.text-center {
    text-align: center !important;
    margin-top: 30px;
}

.service-tab-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:20px;
}

}

/*-----------Addon new section------------------*/



/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 991px) {

    .navbar-collapse {
        background: #fff;
        margin-top: 20px;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    .nav-buttons {
        margin-top: 18px;
        flex-direction: column;
        align-items: stretch;
    }

    .book-btn {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {

    .hero-section {
        text-align: center;
        padding-top: 110px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
        margin: 0 auto 28px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {

    .logo-text {
        font-size: 26px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
HEADER PREMIUM UPGRADE
======================================== */

body{
padding-top:70px;
}

/* LOGO IMAGE */

.navbar-logo{
height:70px;
width:auto;
display:block;
transition:.3s ease;
}

.navbar-logo:hover{
transform:scale(1.03);
}

/* NAVBAR */

.custom-navbar{


background:#050816;

backdrop-filter:blur(18px);

box-shadow:
0 10px 35px rgba(15,23,42,.08);

border-bottom:none;


}

/* CONTAINER */

.custom-navbar .container{


max-width:1320px;

display:flex;

align-items:center;


}

/* NAV LINKS */

.navbar-nav{


align-items:center;


}

.navbar-nav .nav-link{


font-weight:600;

color:#ffffff !important;

padding:10px 18px !important;

border-radius:12px;


}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{


background:#ffffff;


color:#000000 !important;


}

/* RIGHT BUTTONS */

.nav-buttons{


display:flex;

align-items:center;

gap:12px;


}

/* LOGIN BUTTON */

.login-btn{

border:1px solid #dbeafe;

background:#fff;

padding:12px 18px;

border-radius:12px;

font-weight:700;

color:#0f172a;

text-decoration:none;


}

.login-btn:hover{


background:#eff6ff;

border-color:#2563eb;

color:#000;

}

/* BOOK BUTTON */

.book-btn{

background:
linear-gradient(
135deg,
#2563eb,
#4f46e5
);

border:none;

padding:13px 22px;

border-radius:14px;

font-weight:700;

}

.book-btn:hover{


transform:translateY(-2px);

box-shadow:
0 15px 30px rgba(37,99,235,.25);


}

/* LOGIN DROPDOWN */

.custom-dropdown{


min-width:260px;

border:none;

border-radius:18px;

padding:10px;

margin-top:12px;

box-shadow:
0 20px 50px rgba(0,0,0,.12);


}

.custom-dropdown .dropdown-item{

padding:12px 14px;

border-radius:10px;

font-weight:600;


}

.custom-dropdown .dropdown-item:hover{

background:#eff6ff;

color:#2563eb;


}

/* MOBILE */

@media(max-width:991px){


.navbar-logo{
    height:70px;
}

.navbar-collapse{

    background:#887347;

    border-radius:20px;

    padding:20px;

    margin-top:15px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.nav-buttons{

    margin-top:15px;

    flex-direction:column;

    width:100%;
}

.login-btn,
.book-btn{

    width:100%;

    text-align:center;

    justify-content:center;
}
}

/* ===================================
   PREMIUM FOOTER
=================================== */

.footer-section{
    background:#050816;
    padding:80px 0 30px;
    color:#fff;
}

.footer-section .row{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}

.footer-col{
    flex:1;
    min-width:220px;
}

.footer-logo{
    max-width:150px;
}

.footer-text{
    color:#fff;
    line-height:1.8;
    font-size:15px;
}

.footer-section h4{
    font-size:22px;
    margin-bottom:25px;
    font-weight:700;
    color:#fff;
}

.footer-section ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-section ul li{
    margin-bottom:12px;
}

.footer-section ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-section ul li a:hover{
    color:#fff;
    padding-left:5px;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111827;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#2563eb;
}

.footer-divider{
    border-color:rgba(224, 224, 224, 0.521);
    margin:40px 0 20px;
}

.footer-bottom{
    text-align:center;
}

.footer-bottom p{
    color:#fff;
    margin:0;
}

@media(max-width:768px){

.footer-section{
    text-align:left;
}

.footer-social{
    justify-content:left;
}

.footer-col{
    width:100%;
}

.footer-logo{
    width:180px;
}

}

/* ===================================
HERO SECTION
=================================== */

.hero-section{
    padding:80px 0 80px;
    background:
    linear-gradient(
    135deg,
    #f8fafc,
    #eef4ff
    );
}

.hero-badge{
    display:inline-block;
    background:#e0ecff;
    color:#2563eb;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-section h1{
    font-size:62px;
    font-weight:800;
    line-height:1.1;
    color:#0f172a;
    margin-bottom:20px;
}

.hero-section h1 span{
    color:#2563eb;
}

.hero-section p{
    font-size:18px;
    color:#64748b;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:35px;
}

.hero-btn-primary{
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:14px;
    font-weight:700;
}

.hero-btn-primary:hover{
    color:#fff;
}

.hero-btn-secondary{
    border:2px solid #2563eb;
    color:#2563eb;
    text-decoration:none;
    padding:15px 30px;
    border-radius:14px;
    font-weight:700;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    color:#334155;
    font-weight:600;
}

.hero-image{
    max-width:100%;
    border-radius:30px;
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.app-download-section{
padding:80px 0;
background:#ffffff;
}

.app-download-box{
max-width:900px;
margin:auto;
text-align:center;
}

.app-badge{
display:inline-flex;
align-items:center;
gap:10px;
background:#eef4ff;
color:#2563eb;
padding:12px 22px;
border-radius:50px;
font-weight:700;
margin-bottom:30px;
}

.app-download-box h2{
font-size:64px;
line-height:1.1;
font-weight:800;
color:#0f172a;
margin-bottom:25px;
}

.app-download-box p{
max-width:700px;
margin:auto;
font-size:20px;
line-height:1.8;
color:#64748b;
margin-bottom:40px;
}

.app-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.store-btn img{
height:65px;
transition:.3s;
}

.store-btn:hover img{
transform:translateY(-4px);
}

@media(max-width:768px){


.app-download-section{
    padding:80px 0;
}

.app-download-box h2{
    font-size:42px;
}

.app-download-box p{
    font-size:16px;
}

.store-btn img{
    height:55px;
}

}


@media(max-width:991px){

.hero-section{
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.hero-features{
    grid-template-columns:1fr;
}

.hero-section h1{
    font-size:42px;
}
}
/* =========================
   WHO WE ARE SECTION
========================= */

.who-we-are-section{
    padding:80px 0;
    background:
    linear-gradient(135deg, #f8fafc, #eef4ff);
}

.section-badge{
    display:inline-block;
    padding:10px 20px;
    background:#eaf2ff;
    color:#2563eb;
    font-weight:700;
    border-radius:50px;
    margin-bottom:20px;
}
.section-title{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    line-height:1.15;
    margin-bottom:25px;
}

.section-title span{
    color:#2563eb;
}

.section-desc {
    font-size: 18px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 20px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:35px;
}

.feature-box{
    background:#f8fafc;
    padding:18px 20px;
    border-radius:16px;
    font-weight:600;
    color:#0f172a;
    border:1px solid #e2e8f0;
}

.feature-box i{
    color:#2563eb;
    margin-right:8px;
}

.who-image-box{
    position:relative;
}

.who-image-box img{
    border-radius:24px;
    width:100%;
}

.experience-card{
    position:absolute;
    bottom:25px;
    left:25px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.experience-card h3{
    font-size:36px;
    font-weight:800;
    color:#2563eb;
    margin:0;
}

.experience-card p{
    margin:0;
    color:#64748b;
}

@media(max-width:768px){

    .section-title{
        font-size:36px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .experience-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
    }
}

/* =========================
   COUNTER SECTION
========================= */

.counter-section{
    padding:80px 0;
    background:linear-gradient(
        135deg,
        #0f172a,
        #111827
    );
    color:#fff;
    position:relative;
}

.counter-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.counter-badge{
    display:inline-block;
    padding:10px 20px;
    background:rgba(255,255,255,.12);
    border-radius:50px;
    font-weight:600;
    margin-bottom:18px;
}

.counter-heading h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}

.counter-heading p{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
}

.counter-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border-radius:24px;
    padding:40px 25px;
    text-align:center;
    transition:.4s;
    height:100%;
}

.counter-card:hover{
    transform:translateY(-8px);
    border-color:#3b82f6;
}

.counter-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:20px;
    background:linear-gradient(
        135deg,
        #2563eb,
        #4f46e5
    );
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:20px;
}

.counter-card h3{
    font-size:52px;
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
}

.counter-card span{
    color:#cbd5e1;
    font-size:17px;
    font-weight:500;
}

@media(max-width:768px){

    .counter-heading h2{
        font-size:34px;
    }

    .counter-card h3{
        font-size:40px;
    }

}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section{
    padding:100px 0;
    background:#f8fafc;
}

.section-heading{
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.section-badge{
    display:inline-block;
    background:#eaf2ff;
    color:#2563eb;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.section-desc p{
    color:#64748b;
    font-size:18px; 
}

.section-heading h2{
    font-size:48px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}



.section-heading p{
    color:#64748b;
    font-size:18px;
}

.testimonial-card{

    max-width:850px;
    margin:auto;

    background:#fff;

    padding:50px;

    border-radius:30px;

    text-align:center;

    box-shadow:
    0 25px 50px rgba(0,0,0,.08);

}

.stars{
    color:#f59e0b;
    font-size:22px;
    margin-bottom:25px;
}

.testimonial-card p{
    font-size:22px;
    line-height:1.8;
    color:#334155;
    margin-bottom:35px;
}

.client-info{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
}

.client-info img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.client-info h5{
    margin:0;
    font-weight:700;
    color:#0f172a;
}

.client-info span{
    color:#64748b;
    font-size:14px;
}

.custom-arrow{

    width:60px;
    height:60px;

    background:#2563eb;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:22px;
}

.carousel-control-prev,
.carousel-control-next{
    opacity:1;
}

@media(max-width:768px){

    .testimonial-card{
        padding:30px 20px;
    }

    .testimonial-card p{
        font-size:18px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .custom-arrow{
        width:50px;
        height:50px;
    }

}

/* =========================
   SERVICES PAGE
========================= */

.services-hero{

    padding:80px 0 80px;

    background:#f8fafc;

    text-align:center;

}

.services-heading h1{

    font-size:60px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:20px;

}

.services-heading p{

    max-width:750px;

    margin:auto;

    color:#64748b;

    font-size:18px;

}

.services-section{

    padding:80px 0;

    background:#fff;

}

.service-card{

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    border:1px solid #e2e8f0;

    transition:.4s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.08);

}

.service-card i{

    font-size:50px;

    color:#2563eb;

    margin-bottom:20px;

}

.service-card h3{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.service-card p{

    color:#64748b;

    line-height:1.8;

}

.service-cta{

    padding:100px 0;

    background:#f8fafc;

}

.cta-box{

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #4f46e5
    );

    padding:70px;

    border-radius:30px;

    text-align:center;

    color:#fff;

}

.cta-box h2{

    font-size:42px;

    font-weight:800;

    margin-bottom:20px;

}

.cta-box p{

    font-size:18px;

    margin-bottom:30px;

}

.cta-btn{

    background:#fff;

    color:#2563eb;

    text-decoration:none;

    padding:16px 34px;

    border-radius:14px;

    font-weight:700;

}

@media(max-width:768px){

.services-heading h1{
font-size:40px;
}

.cta-box{
padding:40px 25px;
}

.cta-box h2{
font-size:30px;
}

}

/* =========================
ABOUT PAGE
========================= */

.about-hero{
padding:80px 0 80px;
background:#f8fafc;
}

.about-hero h1{
font-size:64px;
font-weight:800;
line-height:1.1;
margin:20px 0;
color:#0f172a;
}

.about-hero h1 span{
color:#2563eb;
}

.about-hero p{
font-size:18px;
line-height:1.9;
color:#64748b;
}

.about-image{
border-radius:30px;
}

.about-company{
padding:80px 0;
}

.about-company h2{
font-size:48px;
font-weight:800;
margin-bottom:20px;
}

.about-company p{
font-size:17px;
line-height:1.9;
color:#64748b;
}

.about-features div{
margin-bottom:15px;
font-weight:600;
}

.about-features i{
color:#2563eb;
margin-right:10px;
}

.mission-section{
padding:80px 0;
background:#f8fafc;
}

.mission-card{
background:#fff;
padding:40px;
border-radius:25px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
height:100%;
}

.mission-card i{
font-size:50px;
color:#2563eb;
margin-bottom:20px;
}

.why-section{
padding:80px 0;
}

.why-card{
background:#fff;
padding:40px;
text-align:center;
border-radius:25px;
border:1px solid #e5e7eb;
transition:.3s;
}

.why-card:hover{
transform:translateY(-8px);
}

.why-card i{
font-size:45px;
color:#2563eb;
margin-bottom:20px;
}

.about-cta{
padding:80px 0;
background:#f8fafc;
}

@media(max-width:768px){

.about-hero h1{
font-size:40px;
}

.about-company h2{
font-size:34px;
}

}

/* ==========================
PRICING PAGE
========================== */

.pricing-hero{
padding:80px 0 80px;
background:#ffffff;
text-align:center;
}

.pricing-hero h1{
font-size:64px;
font-weight:800;
margin:20px 0;
color:#0f172a;
}

.pricing-hero h1 span{
color:#2563eb;
}

.pricing-hero p{
max-width:700px;
margin:auto;
font-size:18px;
color:#64748b;
line-height:1.8;
}

.pricing-section{
padding:60px 0;
}

.pricing-card{
background:#fff;
border-radius:30px;
padding:45px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
position:relative;
height:100%;
transition:.3s;
}

.pricing-card:hover{
transform:translateY(-10px);
}

.featured-plan{
background:linear-gradient(135deg,#2563eb,#4f46e5);
color:#fff;
}

.featured-plan ul li,
.featured-plan small,
.featured-plan .plan-name{
color:#fff;
}

.popular-badge{
position:absolute;
top:-12px;
left:50%;
transform:translateX(-50%);
background:#fff;
color:#2563eb;
padding:8px 20px;
border-radius:50px;
font-weight:700;
font-size:14px;
}

.plan-name{
font-size:20px;
font-weight:700;
display:block;
margin-bottom:15px;
}

.pricing-card h2{
font-size:60px;
font-weight:800;
}

.pricing-card ul{
list-style:none;
padding:0;
margin:30px 0;
}

.pricing-card ul li{
padding:12px 0;
font-size:16px;
}

.pricing-card i{
color:#22c55e;
margin-right:8px;
}

.pricing-btn{
display:inline-block;
padding:14px 35px;
background:#2563eb;
color:#fff;
text-decoration:none;
border-radius:14px;
font-weight:700;
}

.featured-plan .pricing-btn{
background:#fff;
color:#2563eb;
}

.society-plan{
padding:80px 0;
}

.society-box{
background:linear-gradient(135deg,#0f172a,#1e293b);
padding:70px;
border-radius:30px;
text-align:center;
color:#fff;
}

.society-box h2{
font-size:42px;
font-weight:800;
}

.society-btn{
display:inline-block;
margin-top:20px;
padding:14px 35px;
background:#2563eb;
color:#fff;
border-radius:14px;
text-decoration:none;
font-weight:700;
}

.pricing-faq{
padding:80px 0;
background:#f8fafc;
}

@media(max-width:768px){

.pricing-hero h1{
font-size:42px;
}

.society-box{
padding:40px 25px;
}

.society-box h2{
font-size:30px;
}

}

/* =========================
CONTACT PAGE
========================= */

.contact-hero{
padding:80px 0 80px;
background:#f8fafc;
text-align:center;
}

.contact-hero h1{
font-size:64px;
font-weight:800;
color:#0f172a;
margin:20px 0;
}

.contact-hero h1 span{
color:#2563eb;
}

.contact-hero p{
max-width:800px;
margin:auto;
font-size:18px;
line-height:1.8;
color:#64748b;
}

.contact-info-section{
padding:80px 0;
}

.contact-card{
background:#fff;
padding:40px;
border-radius:24px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
height:100%;
transition:.3s;
}

.contact-card:hover{
transform:translateY(-8px);
}

.contact-card i{
font-size:42px;
color:#2563eb;
margin-bottom:20px;
}

.contact-card h3{
font-weight:700;
margin-bottom:15px;
}

.contact-form-section{
padding:80px 0;
background:#f8fafc;
}

.contact-form-section h2{
font-size:42px;
font-weight:800;
margin-bottom:20px;
}

.contact-form-section p{
color:#64748b;
margin-bottom:30px;
}

.form-control{
height:55px;
border-radius:14px;
border:1px solid #e2e8f0;
}

textarea.form-control{
height:auto;
}

.contact-btn{
background:#2563eb;
color:#fff;
border:none;
padding:15px 35px;
border-radius:14px;
font-weight:700;
}

.contact-side-box{
background:#fff;
padding:50px;
border-radius:30px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-side-box h3{
font-weight:800;
margin-bottom:25px;
}

.contact-side-box ul{
list-style:none;
padding:0;
}

.contact-side-box li{
padding:12px 0;
font-size:17px;
}

.society-contact-section{
padding:80px 0;
}

.society-contact-box{
background:linear-gradient(135deg,#0f172a,#1e293b);
padding:80px;
border-radius:30px;
text-align:center;
color:#fff;
}

.society-contact-box h2{
font-size:48px;
font-weight:800;
margin-bottom:20px;
}

.society-contact-box p{
max-width:800px;
margin:auto;
font-size:18px;
line-height:1.8;
}

.society-contact-btn{
display:inline-block;
margin-top:30px;
padding:15px 35px;
background:#2563eb;
color:#fff;
text-decoration:none;
border-radius:14px;
font-weight:700;
}

@media(max-width:768px){

.contact-hero h1{
font-size:42px;
}

.contact-form-section h2{
font-size:32px;
}

.society-contact-box{
padding:40px 25px;
}

.society-contact-box h2{
font-size:30px;
}

}


/* button hover effect */

.booking-actions{

display:flex;

gap:15px;

margin-top:25px;

}

.action-btn{

display:flex;

align-items:center;

justify-content:center;

gap:10px;

width:100%;

height:55px;

border-radius:14px;

font-weight:700;

text-decoration:none;

cursor:pointer;

transition:.3s;

}

.view-btn{

background:#2563eb;

color:#fff;

}

.view-btn:hover{

background:#1d4ed8;

color:#fff;

}

.cancel-btn{

background:#dc2626;

color:#fff;

}

.cancel-btn:hover{

background:#b91c1c;

color:#fff;

}