/*==================================================
AHM KALPAVRIKSHA
Premium Real Estate Website
Designed for Hostinger
==================================================*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

/*==========================
RESET
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f6;
    color:#222;
    overflow-x:hidden;
    line-height:1.9;
    letter-spacing:.2px;

    padding-top:110px;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1320px;
    margin:auto;
}

/*==========================
COLORS
===========================*/

:root{
    --primary:#0A2342;
    --secondary:#C48A3A;
    --accent:#2D5DA8;
    --dark:#07182E;
    --white:#ffffff;
    --light:#EEF5FC;
    --gray:#5D6D7E;
}
/*==================================================
HEADER
==================================================*/

header{

background:rgba(255,255,255,.78);

backdrop-filter:blur(22px);

-webkit-backdrop-filter:blur(22px);

border-bottom:1px solid rgba(255,255,255,.3);

transition:.35s;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    backdrop-filter:blur(18px);
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    transition:.35s ease;
}

header.scrolled{

background:#ffffff;

box-shadow:

0 15px 45px rgba(0,0,0,.08);

}

/*==================================================
NAVBAR
==================================================*/

.navbar{
    height:110px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/*==================================================
LOGO
==================================================*/

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:100px;
    width:auto;
    display:block;
    transition:.35s ease;
}

header.scrolled .logo img{
    height:80px;
}

/*==================================================
NAVIGATION
==================================================*/

nav{
    display:flex;
    align-items:center;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:45px;
}

.nav-menu li{
    position:relative;
}

.nav-menu a{
    color:var(--primary);
    font-size:17px;
    font-weight:600;
    transition:.3s;
    position:relative;
}

.nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:.35s;
}

.nav-menu a:hover{
    color:var(--secondary);
}

.nav-menu a:hover::after{
    width:100%;
}

/*==================================================
HEADER BUTTONS
==================================================*/

.header-buttons{
    display:flex;
    align-items:center;
    gap:15px;
}

/* Outline Button */

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 28px;
    border:2px solid var(--secondary);
    border-radius:50px;
    color:var(--primary);
    font-weight:600;
    transition:.35s;
}

.btn-outline:hover{
    background:var(--secondary);
    color:#fff;
}

/* Solid Button */

.btn-solid{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 30px;
    border-radius:50px;
    background:var(--secondary);
    color:#fff;
    font-weight:600;
    transition:.35s;
    box-shadow:0 12px 28px rgba(196,138,58,.25);
}

.btn-solid:hover{
    background:#b8762f;
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(196,138,58,.35);
}

/*==================================================
MOBILE MENU
==================================================*/

.mobile-menu{
    display:none;
    cursor:pointer;
    color:var(--primary);
    font-size:28px;
    transition:.3s;
}

.mobile-menu:hover{
    color:var(--secondary);
}
/*================ HERO ================*/

#hero{
position:relative;
min-height:100vh;
display:flex;
align-items:center;
overflow:hidden;
}

.hero-bg{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
animation:zoomHero 20s infinite alternate;
z-index:-2;
}

@keyframes zoomHero{

from{
transform:scale(1);
}

to{
transform:scale(1.15);
}

}

.hero-overlay{

position:absolute;
inset:0;

background:
linear-gradient(
90deg,
rgba(5,20,40,.88),
rgba(5,20,40,.55)
);

z-index:-1;

}

.hero-grid{

display:grid;
grid-template-columns:1.2fr .8fr;
gap:80px;
align-items:center;
padding-top:110px;

}

.hero-tag{

display:inline-block;

padding:12px 24px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.25);

border-radius:40px;

color:#fff;

font-size:14px;

backdrop-filter:blur(12px);

margin-bottom:30px;

}

.hero-left h1{

font-size:72px;

line-height:1.05;

font-family:'Playfair Display',serif;

color:white;

margin-bottom:25px;

}

.hero-left h1 span{

color:#D4A017;

}

.hero-left p{

font-size:19px;

line-height:1.9;

max-width:620px;

color:#E9EEF5;

margin-bottom:40px;

}

.hero-buttons{

display:flex;
gap:20px;
margin-bottom:45px;
flex-wrap:wrap;

}

.counter-box{

background:rgba(255,255,255,.10);

border:1px solid rgba(255,255,255,.18);

padding:30px;

border-radius:20px;

backdrop-filter:blur(20px);

transition:.35s;

text-align:center;

}

.counter-box:hover{

transform:translateY(-8px);

}

.counter-box h3{

font-size:42px;

color:#D4A017;

margin-bottom:8px;

}

.counter-box p{

color:white;

}

.hero-features{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.glass-card{

background:rgba(255,255,255,.10);

border:1px solid rgba(255,255,255,.18);

backdrop-filter:blur(25px);

border-radius:30px;

padding:45px;

animation:floatCard 4s ease-in-out infinite;

}

@keyframes floatCard{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}

/*==================================================
LEFT CONTENT
==================================================*/

.hero-left{
    color:#fff;
}

.hero-tag{

    display:inline-block;
    padding:10px 24px;
    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.25);

    font-size:14px;
    font-weight:500;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:28px;

}


.hero-left h1 span{

    color:var(--secondary);

}

.hero-left p{

    max-width:650px;

    font-size:18px;

    line-height:1.9;

    color:#E8EDF5;

    margin-bottom:42px;

}

/*==================================================
BUTTONS
==================================================*/


.primary-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 36px;

    background:var(--secondary);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(196,138,58,.28);

}

.primary-btn:hover{

transform:

translateY(-5px)

scale(1.05);

box-shadow:

0 22px 45px rgba(196,138,58,.35);

}

.secondary-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 36px;

    border:2px solid rgba(255,255,255,.8);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.secondary-btn:hover{

background:white;

color:#0A2342;

transform:scale(1.05);

}

/*==================================================
HERO STATISTICS
==================================================*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.hero-features div{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

}

.hero-features div:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.15);

}

.hero-features h3{

    font-size:34px;

    color:var(--secondary);

    margin-bottom:10px;

    font-weight:700;

}

.hero-features p{

    color:#fff;

    margin:0;

    font-size:15px;

    letter-spacing:1px;

}

/*==================================================
ENQUIRY FORM
==================================================*/

.hero-form{

    display:flex;

    justify-content:center;

}


.glass-card h2{

    color:#fff;

    font-size:34px;

    margin-bottom:12px;

}

.glass-card p{

    color:#E9EEF5;

    margin-bottom:28px;

}

.glass-card form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.glass-card input,
.glass-card select,
.glass-card textarea{

    width:100%;

    padding:16px;

    border:none;

    outline:none;

    border-radius:14px;

    background:#fff;

    font-family:'Poppins',sans-serif;

    font-size:15px;

}

.glass-card textarea{

    resize:none;

}

.glass-card button{

    padding:16px;

    border:none;

    border-radius:50px;

    background:var(--secondary);

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.glass-card button:hover{

    background:#b8762f;

    transform:translateY(-3px);

}

/*==================================================
SCROLL INDICATOR
==================================================*/

.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

}

.scroll-indicator span{

    display:block;

    width:2px;

    height:50px;

    background:rgba(255,255,255,.65);

    animation:scrollMove 1.8s infinite;

}

@keyframes scrollMove{

    0%{

        opacity:0;

        transform:translateY(-15px);

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translateY(15px);

    }

}
/*==================================================
SECTION
==================================================*/

section{
    padding:80px 0;
}

.section-title,
.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-title span,
.section-subtitle{
    display:inline-block;
    color:var(--secondary);
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-title h2,
.section-header h2{
    font-family:'Playfair Display',serif;
    font-size:54px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:20px;
    line-height:1.2;
}

.section-title p,
.section-header p{
    max-width:760px;
    margin:auto;
    color:var(--gray);
    font-size:17px;
    line-height:1.8;
}

/*==================================================
ABOUT
==================================================*/

#about{
    background:#EEF5FC;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.10);
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.about-image:hover img{
  transform:scale(1.08);

}

.about-content h3{
    font-family:'Playfair Display',serif;
    font-size:42px;
    color:var(--primary);
    margin-bottom:25px;
}

.about-content p{
    font-size:17px;
    color:var(--gray);
    line-height:1.9;
    margin-bottom:35px;
}

.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:40px;
}

.about-list div{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
    color:var(--primary);
}

.about-list i{
    color:var(--secondary);
    font-size:18px;
}

/*==================================================
MASTER PLAN
==================================================*/

#masterplan{
    background:#F7FAFD;
}

.master-layout{
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:60px;
    align-items:center;
}

.master-image{
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.10);
}

.master-image img{
    width:100%;
    transition:.5s;
}

.master-image:hover img{
  transform:scale(1.08);

}

.master-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.feature-card{
    background:#ffffff;
    padding:35px 28px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.feature-card:hover{

transform:

translateY(-12px);

box-shadow:

0 30px 60px rgba(0,0,0,.12);

}

.feature-card i{
    font-size:40px;
    color:var(--secondary);
    margin-bottom:18px;
}

.feature-card h4{
    font-size:22px;
    color:var(--primary);
    margin-bottom:10px;
}

.feature-card p{
    font-size:15px;
    color:var(--gray);
    line-height:1.7;
}

/*==================================================
PROJECT HIGHLIGHTS
==================================================*/

.highlights{
    background:#ffffff;
}

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.highlight-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.highlight-card:hover{
   transform:

translateY(-12px);

box-shadow:

0 30px 60px rgba(0,0,0,.12);

}

.highlight-card .icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#EEF5FC;
    display:flex;
    justify-content:center;
    align-items:center;
}

.highlight-card .icon i{
    font-size:28px;
    color:var(--secondary);
}

.highlight-card h3{
    font-size:22px;
    color:var(--primary);
    margin-bottom:15px;
}

.highlight-card p{
    color:var(--gray);
    line-height:1.7;
}

/*==================================================
GALLERY
==================================================*/

#gallery{
    background:#F6F8FC;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:280px;              /* Same height for every image */
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(15,27,45,.1),rgba(15,27,45,.45));
    opacity:0;
    transition:.35s;
}

.gallery-item:hover::after{
    opacity:1;
}

/*==================================================
INVESTMENT
==================================================*/

.investment-section{
    background:#FFFFFF;
}

.investment-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.investment-content span{
    color:var(--secondary);
    font-weight:600;
    letter-spacing:3px;
}

.investment-content h2{
    font-family:'Playfair Display',serif;
    font-size:46px;
    color:var(--primary);
    margin:20px 0;
}

.investment-content p{
    color:var(--gray);
    margin-bottom:30px;
}

.investment-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.investment-list div{
    display:flex;
    align-items:center;
    gap:10px;
}

.investment-list i{
    color:var(--secondary);
}

.investment-image{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.investment-image img{
    transition:.5s;
}

.investment-image:hover img{
    transform:scale(1.05);
}


/*==================================================
STATISTICS
==================================================*/

.stats-section{
    background:linear-gradient(135deg,#0F1B2D,#132A45);
    padding:100px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    text-align:center;
    padding:20px;
}

.stat-box h2{
    font-size:60px;
    color:var(--secondary);
    margin-bottom:10px;
}

.stat-box p{
    color:#ffffff;
    font-size:17px;
    letter-spacing:1px;
}
/*==================================================
CALL TO ACTION
==================================================*/

.cta-section{
    background:linear-gradient(135deg,#0F1B2D,#132A45);
    padding:120px 0;
}

.cta-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.cta-box h2{
    font-family:'Playfair Display',serif;
    font-size:52px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:0 auto 40px;
    color:#d9d9d9;
    font-size:18px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}


/*==================================================
WHATSAPP
==================================================*/

.whatsapp{

    position:fixed;
    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    background:#25D366;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    font-size:28px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transition:.35s;

    z-index:999;

}

.whatsapp:hover{

    transform:scale(1.08);

}


/*==================================================
SCROLL TO TOP
==================================================*/

.scroll-top{

    position:fixed;

    right:25px;
    bottom:100px;

    width:52px;
    height:52px;

    background:var(--secondary);

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:998;

}

.scroll-top.active{

    opacity:1;
    visibility:visible;

}


/*==================================================
ANIMATIONS
==================================================*/

.fade-up{

    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;
    transform:translateY(0);

}

.primary-btn,
.secondary-btn,
.feature-card,
.highlight-card,
.location-card,
.gallery-item,
.about-image,
.master-image,
.investment-image{

    transition:.35s;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.hero-grid,
.about-grid,
.master-layout,
.investment-grid,
.location-grid{

    grid-template-columns:1fr;

}

.highlight-grid{

    grid-template-columns:repeat(2,1fr);

}

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

.stats-grid{

    grid-template-columns:repeat(2,1fr);

}

.footer-grid{
    display:flex;
    flex-direction:column;
    gap:30px;
}

}


@media(max-width:768px){

.nav-menu,
.header-buttons{

    display:none;

}

.mobile-menu{

    display:block;

}

.hero-grid{

    grid-template-columns:1fr;
    text-align:center;

}

.hero-left h1{
    font-size:82px;
    line-height:1.05;
}

.hero-buttons{

    justify-content:center;

}

.hero-features{

    grid-template-columns:repeat(2,1fr);

}

.about-grid,
.master-layout,
.investment-grid,
.location-grid{

    grid-template-columns:1fr;

}

.highlight-grid,
.gallery-grid{

    grid-template-columns:1fr;

}

.stats-grid{

    grid-template-columns:1fr;

}

.footer-grid{
    flex-direction:column;
    gap:30px;
}

.section-title h2{

    font-size:36px;

}

.cta-box h2{

    font-size:38px;

}

}


@media(max-width:576px){

.container{

    width:92%;

}

.hero-left h1{

    font-size:34px;

}

.hero-left p{

    font-size:16px;

}

.hero-features{

    grid-template-columns:1fr;

}

.primary-btn,
.secondary-btn{

    width:100%;
    text-align:center;

}

.cta-box h2{

    font-size:32px;

}

.section-title h2{

    font-size:30px;

}

}
@media(max-width:992px){

.about-grid{

    grid-template-columns:1fr;
    text-align:center;

}

.about-buttons{

    justify-content:center;
    flex-wrap:wrap;

}

.about-features{

    grid-template-columns:1fr;

}

.page-title h1{

    font-size:38px;

}

.about-content h2{

    font-size:32px;

}

}
.about-page{
    padding:120px 0 80px;
    background:#f8f9fb;
}

.about-page .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.about-page img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:50px;
}

.about-page-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.about-page h1{
    font-size:48px;
    color:#0E2442;
    margin-bottom:20px;
}

.about-page h2{
    font-size:30px;
    color:#0E2442;
    margin:30px 0 20px;
}

.about-page p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

.about-page ul{
    list-style:none;
    padding:0;
}

.about-page li{
    margin-bottom:12px;
    font-size:18px;
}

.about-page li::before{
    content:"✓ ";
    color:#C89238;
    font-weight:bold;
}

.about-buttons{
    margin-top:40px;
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}
.about-buttons .primary-btn,
.about-buttons .secondary-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-width:220px;
    padding:16px 35px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
}
footer{
    background:#0F1B2D;
    color:#ddd;
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 2fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    width:160px;
    margin-bottom:20px;
}

.footer-box h3{
    color:#C89238;
    margin-bottom:20px;
    font-size:24px;
}

.footer-box p{
    line-height:1.8;
    margin-bottom:15px;
}

.footer-box ul{
    padding:0;
}

.footer-box ul li{
    margin-bottom:14px;
}

.footer-box ul li a{
    color:#fff;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#C89238;
}
.footer-link{

    color:#FFD166;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.footer-link:hover{

    color:#25D366;

}
/* Clickable phone & email */

.contact-link a{
    color:#C89238;
    font-weight:600;
    transition:0.3s;
}

.contact-link a:hover{
    color:#ffffff;
    text-decoration:underline;
}
.social-icons{

    display:flex;

    gap:18px;

    margin-top:10px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#1B2D45;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    transition:.3s;

}

.social-icons a:hover{

    background:#C89238;

    transform:translateY(-5px);

}
.fade{

opacity:0;

transform:translateY(40px);

transition:.8s;

}

.fade.show{

opacity:1;

transform:none;

}
/* ==============================
   WhatsApp Floating Button
============================== */

.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    bottom:25px;
    right:25px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.25);
    z-index:9999;
    transition:all .3s ease;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.12);
    box-shadow:0 12px 25px rgba(0,0,0,0.35);
}

.whatsapp-float img{
    width:34px;
    height:34px;
}

@keyframes whatsappPulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,.5);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@media(max-width:768px){

    .whatsapp-float{
        width:58px;
        height:58px;
        right:18px;
        bottom:18px;
    }

    .whatsapp-float img{
        width:30px;
        height:30px;
    }

}
/* Scroll Reveal */

.reveal{

opacity:0;

transform:translateY(60px);

transition:1s ease;

}

.reveal.active{

opacity:1;

transform:none;

}

/* ==========================
LOGO WITH TITLE
========================== */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:100px;
    height:auto;
}

.logo-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.logo-text h2{
    margin:0;
    font-size:28px;
    font-family:'Playfair Display', serif;
    color:#0A2342;
    font-weight:700;
    line-height:1.1;
}

.logo-text span{
    margin-top:3px;
    font-size:13px;
    color:#C89238;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

@media(max-width:768px){

    .logo img{
        width:60px;
    }

    .logo-text h2{
        font-size:22px;
    }

    .logo-text span{
        font-size:11px;
    }

}