/*==================================================
AVYUKTAPHOTOGRAPHY
Premium Homepage
Part 1
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:
    "Segoe UI",
    Arial,
    sans-serif;

    background:#ffffff;

    color:#333;

    overflow-x:hidden;

    line-height:1.6;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

.container{

    width:92%;

    max-width:1400px;

    margin:auto;

}

/*====================================
HERO
====================================*/

.hero{

    width:100%;

    min-height:100vh;

    background-image:
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)),
    url("images/header.jpeg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

    display:flex;

    align-items:center;

    justify-content:center;

}

.hero-overlay{

    width:100%;

    min-height:100vh;

    backdrop-filter:blur(3px);

}

/*====================================
TOP NAV
====================================*/

.top-nav{

    width:100%;

    padding:20px 6%;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.brand{

    display:flex;

    align-items:center;

    gap:15px;

}

.brand-logo{

    width:70px;

    height:70px;

    border-radius:50%;

    border:4px solid white;

    object-fit:cover;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.brand h2{

    color:white;

    font-size:26px;

    letter-spacing:2px;

}

.brand span{

    color:white;

    opacity:.9;

    font-size:14px;

    letter-spacing:4px;

}

.menu{

    display:flex;

    align-items:center;

    gap:30px;

}

.menu a{

    color:white;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.menu a:hover{

    color:#ffd54f;

}

.menuBook{

    background:#b22222;

    padding:12px 24px;

    border-radius:40px;

}

.menuBook:hover{

    background:#8b0000;

    color:white !important;

}

/*====================================
HERO CONTENT
====================================*/

.hero-content{

    width:100%;

    max-width:900px;

    margin:auto;

    text-align:center;

    color:white;

    padding:80px 20px;

}

.hero-content h1{

    font-size:64px;

    font-weight:700;

    line-height:1.1;

}

.hero-content h2{

    font-size:54px;

    color:#ffd54f;

    margin-top:10px;

}

.hero-content p{

    margin-top:20px;

    font-size:22px;

}

.heroSub{

    opacity:.9;

    font-size:18px !important;

}

/*====================================
BUTTONS
====================================*/

.heroButtons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.bookBtn{

    background:#b22222;

    color:white;

    border:none;

    border-radius:50px;

    padding:18px 38px;

    font-size:18px;

    cursor:pointer;

    transition:.35s;

}

.bookBtn:hover{

    transform:translateY(-5px);

    background:#8b0000;

}

.enquiryBtn{

    background:white;

    color:#b22222;

    border:3px solid #b22222;

    border-radius:50px;

    padding:18px 38px;

    font-size:18px;

    cursor:pointer;

    transition:.35s;

}

.enquiryBtn:hover{

    background:#b22222;

    color:white;

    transform:translateY(-5px);

}

/*====================================
COMMON SECTION
====================================*/

section{

    padding:90px 0;

}

.sectionText{

    width:100%;

    max-width:800px;

    margin:20px auto 60px;

    text-align:center;

    color:#666;

    font-size:18px;

}

section h2{

    text-align:center;

    font-size:42px;

    color:#222;

}

/*====================================
WHY US
====================================*/

.statsGrid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.statCard{

    background:white;

    border-radius:20px;

    padding:40px;

    text-align:center;

    box-shadow:
    0 12px 35px
    rgba(0,0,0,.08);

    transition:.35s;

}

.statCard:hover{

    transform:translateY(-8px);

}

.statCard h3{

    font-size:48px;

    color:#b22222;

}

.statCard p{

    margin-top:15px;

    font-size:18px;

}
/*==================================================
FEATURED GALLERY
==================================================*/

.gallerySection{

    background:#fafafa;

}

.galleryGrid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:50px;

}

.galleryGrid a{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

    transition:.4s;

    background:white;

}

.galleryGrid a:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.galleryGrid img{

    width:100%;

    height:380px;

    object-fit:cover;

    transition:.6s;

}

.galleryGrid a:hover img{

    transform:scale(1.08);

}

.galleryGrid span{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    padding:18px;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.82)

    );

    color:white;

    font-size:22px;

    font-weight:600;

    text-align:center;

    letter-spacing:1px;

}

.center{

    text-align:center;

}

.galleryButton{

    display:inline-block;

    margin-top:50px;

    background:#b22222;

    color:white;

    padding:18px 40px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}

.galleryButton:hover{

    background:#8b0000;

    transform:translateY(-4px);

}



/*==================================================
REVIEWS
==================================================*/

.reviewsSection{

    background:white;

}

.reviewGrid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:60px;

}

.reviewCard{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    border-top:5px solid #b22222;

}

.reviewCard:hover{

    transform:translateY(-8px);

}

.stars{

    color:#ffb300;

    font-size:24px;

    margin-bottom:20px;

}

.reviewCard p{

    color:#555;

    line-height:1.8;

}

.reviewCard h4{

    margin-top:25px;

    color:#b22222;

}



/*==================================================
CALL TO ACTION
==================================================*/

.ctaSection{

    background:

    linear-gradient(

    135deg,

    #b22222,

    #7d1717

    );

    color:white;

    text-align:center;

}

.ctaSection h2{

    color:white;

    font-size:42px;

}

.ctaSection p{

    width:100%;

    max-width:700px;

    margin:25px auto;

    font-size:20px;

}



/*==================================================
SMALL ANIMATIONS
==================================================*/

.statCard,
.reviewCard,
.galleryGrid a{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*==================================================
FAQ
==================================================*/

.faqSection{

    background:#fafafa;

}

.faqItem{

    background:white;

    margin:25px auto;

    max-width:900px;

    padding:30px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.faqItem:hover{

    transform:translateY(-5px);

}

.faqItem h3{

    color:#b22222;

    margin-bottom:15px;

    font-size:24px;

}

.faqItem p{

    color:#555;

    line-height:1.8;

}



/*==================================================
CONTACT
==================================================*/

.contactSection{

    background:white;

    text-align:center;

}

.contactSection p{

    font-size:20px;

    margin:18px 0;

    color:#555;

}

.contactButton{

    display:inline-block;

    margin-top:35px;

    background:#25D366;

    color:white;

    padding:18px 42px;

    border-radius:50px;

    font-size:20px;

    font-weight:bold;

    transition:.35s;

}

.contactButton:hover{

    background:#1aa94f;

    transform:translateY(-5px);

}



/*==================================================
FOOTER
==================================================*/

footer{

    background:#111;

    color:white;

    text-align:center;

    padding:70px 20px;

}

.footerLogo{

    width:100px;

    height:100px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid white;

    margin:0 auto 25px;

}

footer h3{

    font-size:34px;

    margin-bottom:15px;

    letter-spacing:2px;

}

footer p{

    margin-top:10px;

    color:#cccccc;

}



/*==================================================
WHATSAPP FLOATING BUTTON
==================================================*/

.whatsappFloat{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    z-index:9999;

    transition:.35s;

}

.whatsappFloat:hover{

    transform:scale(1.12);

}



/*==================================================
MOBILE
==================================================*/

@media(max-width:992px){

.hero{

    background-attachment:scroll;

}

.top-nav{

    flex-direction:column;

    gap:20px;

}

.menu{

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

}

.hero-content h1{

    font-size:42px;

}

.hero-content h2{

    font-size:34px;

}

.hero-content p{

    font-size:18px;

}

.galleryGrid{

    grid-template-columns:1fr;

}

.reviewGrid{

    grid-template-columns:1fr;

}

.statsGrid{

    grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:768px){

section{

    padding:70px 20px;

}

.heroButtons{

    flex-direction:column;

}

.bookBtn,

.enquiryBtn{

    width:100%;

}

.statsGrid{

    grid-template-columns:1fr;

}

.galleryGrid img{

    height:260px;

}

.sectionText{

    font-size:16px;

}

section h2{

    font-size:32px;

}

.ctaSection h2{

    font-size:32px;

}

.contactSection p{

    font-size:18px;

}

.footerLogo{

    width:80px;

    height:80px;

}

footer h3{

    font-size:28px;

}

.whatsappFloat{

    width:58px;

    height:58px;

    font-size:28px;

}

}
/*==============================
SCROLL ANIMATION
==============================*/

.hidden{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.show{

opacity:1;

transform:translateY(0);

}


/*==============================
BACK TO TOP
==============================*/

.topButton{

position:fixed;

left:25px;

bottom:25px;

width:55px;

height:55px;

background:#b22222;

color:white;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

cursor:pointer;

font-size:22px;

box-shadow:0 10px 30px rgba(0,0,0,.25);

opacity:0;

visibility:hidden;

transition:.35s;

z-index:9999;

}

.topShow{

opacity:1;

visibility:visible;

}

.topButton:hover{

background:#8b0000;

transform:translateY(-5px);

}


/*=============================
GOOGLE REVIEWS
=============================*/

.googleTrust{

padding:60px 20px;

background:#fff;

}

.googleCard{

display:flex;

align-items:center;

justify-content:space-between;

gap:30px;

background:white;

border-radius:25px;

padding:35px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.googleLogo{

width:80px;

}

.googleMiddle{

flex:1;

}

.googleMiddle h2{

font-size:34px;

color:#222;

margin-bottom:12px;

}

.googleMiddle p{

font-size:22px;

margin-bottom:10px;

}

.googleMiddle span{

color:#777;

font-size:17px;

}

.googleBtn{

background:#4285F4;

color:white;

padding:18px 35px;

border-radius:50px;

font-weight:bold;

transition:.3s;

display:inline-block;

}

.googleBtn:hover{

background:#2b65c7;

}

@media(max-width:900px){

.googleCard{

flex-direction:column;

text-align:center;

}

}
.googleHeading{

display:flex;

justify-content:center;

align-items:center;

gap:20px;

margin-bottom:50px;

}

.googleIcon{

width:60px;

}

.googleHeading h2{

margin:0;

font-size:42px;

}

.googleHeading p{

margin-top:8px;

font-size:18px;

color:#666;

}

.googleReviewButton{

display:inline-block;

margin-top:40px;

background:#4285F4;

color:white;

padding:16px 35px;

border-radius:50px;

font-size:18px;

font-weight:600;

transition:.3s;

}

.googleReviewButton:hover{

background:#2b65c7;

}
/*=========================================
PREMIUM WHY SECTION
=========================================*/

.premiumWhy{

padding:120px 5%;

background:linear-gradient(to bottom,#ffffff,#faf7f5);

}

.sectionHeading{

text-align:center;

max-width:900px;

margin:auto;

margin-bottom:70px;

}

.sectionHeading span{

display:inline-block;

background:#b22222;

color:white;

padding:8px 18px;

border-radius:30px;

font-size:13px;

letter-spacing:2px;

margin-bottom:20px;

}

.sectionHeading h2{

font-size:48px;

margin-bottom:25px;

color:#222;

}

.sectionHeading p{

font-size:18px;

line-height:1.8;

color:#666;

}

.featureGrid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}

.featureCard{

background:white;

padding:40px;

border-radius:25px;

box-shadow:0 20px 45px rgba(0,0,0,.08);

transition:.35s;

position:relative;

overflow:hidden;

}

.featureCard::before{

content:"";

position:absolute;

left:0;

top:0;

width:6px;

height:100%;

background:#b22222;

transform:scaleY(0);

transition:.35s;

}

.featureCard:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.featureCard:hover::before{

transform:scaleY(1);

}

.icon{

font-size:42px;

margin-bottom:20px;

}

.featureCard h3{

margin-bottom:18px;

font-size:24px;

color:#222;

}

.featureCard p{

line-height:1.8;

color:#666;

}

.memoryBanner{

margin-top:80px;

background:linear-gradient(135deg,#b22222,#811414);

border-radius:30px;

padding:60px;

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

color:white;

flex-wrap:wrap;

}

.memoryBanner h2{

font-size:42px;

margin-bottom:20px;

}

.memoryBanner p{

font-size:18px;

max-width:700px;

line-height:1.8;

}

.memoryBtn{

display:inline-block;

background:white;

color:#b22222;

padding:18px 35px;

border-radius:50px;

font-weight:bold;

font-size:18px;

transition:.35s;

}

.memoryBtn:hover{

transform:translateY(-5px);

}

@media(max-width:768px){

.sectionHeading h2{

font-size:34px;

}

.memoryBanner{

padding:35px;

text-align:center;

justify-content:center;

}

.memoryBanner h2{

font-size:30px;

}

}