/* ===========================================
   DREAM HOLIDAY V2
   Developed by Prajwal
=========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

:root{

--primary:#0B4EA2;
--secondary:#F4C542;
--white:#ffffff;
--dark:#111111;
--gray:#666666;
--light:#f7f8fc;

}

body{

background:var(--white);
color:var(--dark);
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1280px;
margin:auto;

}

.section{

padding:100px 0;

}

.section-heading{

text-align:center;
margin-bottom:60px;

}

.section-heading span{

color:var(--secondary);
font-weight:700;
letter-spacing:2px;
font-size:15px;

}

.section-heading h2{

font-size:42px;
margin-top:10px;
color:var(--primary);

}

/* ================= HEADER ================= */

.header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
background:rgba(11,78,162,.95);
backdrop-filter:blur(12px);
box-shadow:0 8px 25px rgba(0,0,0,.15);

}

.navbar{

height:90px;

display:flex;
align-items:center;
justify-content:space-between;

}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

/* MENU */

.nav-links{

display:flex;
gap:35px;

}

.nav-links a{

color:#fff;
font-size:17px;
font-weight:600;
transition:.3s;

}

.nav-links a:hover{

color:var(--secondary);

}

.menu-btn{

display:none;
font-size:34px;
color:#fff;
cursor:pointer;

}

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

.hero{

height:100vh;

display:flex;
justify-content:center;
align-items:center;

text-align:center;

position:relative;

background:

linear-gradient(rgba(0,0,0,.65),
rgba(0,0,0,.65)),
url("images/hero1.jpg");

background-size:cover;
background-position:center;

transition:1s;

}

.hero-overlay{

width:100%;
height:100%;

display:flex;
justify-content:center;
align-items:center;

}

.hero-content{

max-width:850px;
padding:20px;

}

.tag{

display:inline-block;

padding:12px 30px;

background:var(--secondary);

color:#000;

border-radius:50px;

font-weight:700;

margin-bottom:25px;

}

.hero-content h1{

font-size:70px;
color:#fff;
font-weight:800;
line-height:1.2;

}

.hero-content h1 span{

color:var(--secondary);

}

.hero-content p{

font-size:22px;
color:#fff;

margin:30px 0;

line-height:1.8;

}

.hero-buttons{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

}

.btn{

padding:18px 42px;

background:var(--secondary);

color:#000;

font-weight:700;

border-radius:50px;

transition:.3s;

display:inline-block;

}

.btn:hover{

transform:translateY(-6px);

box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.btn-outline{

background:transparent;

border:2px solid #fff;

color:#fff;

}

.btn-outline:hover{

background:#fff;

color:#000;

}
/* ================= ABOUT ================= */

.about{

background:#fff;

}

.about-container{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;

}

.about-image img{

width:100%;
border-radius:25px;
box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.about-content{

display:flex;
flex-direction:column;
gap:20px;

}

.section-subtitle{

color:var(--secondary);
font-weight:700;
letter-spacing:2px;

}

.section-title{

font-size:42px;
color:var(--primary);

}

.about-content p{

font-size:18px;
line-height:1.9;
color:#555;

}

.about-box{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:15px;

}

.about-card{

background:#fff;
padding:25px;
border-radius:20px;
text-align:center;

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

transition:.4s;

}

.about-card:hover{

transform:translateY(-10px);

background:var(--primary);

color:#fff;

}

.about-card h3{

font-size:36px;
color:var(--secondary);

margin-bottom:10px;

}

.about-card p{

font-size:16px;

}

/* ================= SERVICES ================= */

.services{

background:var(--light);

}

.services-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.service-card{

background:#fff;
padding:40px 30px;
border-radius:25px;

text-align:center;

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

transition:.4s;

cursor:pointer;

}

.service-card:hover{

transform:translateY(-12px);

background:var(--primary);

color:#fff;

}

.service-card i{

font-size:60px;

color:var(--secondary);

margin-bottom:25px;

}

.service-card h3{

font-size:28px;

margin-bottom:15px;

}

.service-card p{

line-height:1.8;

font-size:17px;

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.about-container{

grid-template-columns:1fr;

}

.services-grid{

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

}

}

@media(max-width:768px){

.section{

padding:70px 0;

}

.section-heading h2{

font-size:34px;

}

.about-box{

grid-template-columns:1fr;

}

.services-grid{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

.about-content .btn{

margin:auto;

}

}
/* ================= DESTINATIONS ================= */

.destinations{
background:#fff;
}

.destination-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

.destination-card{
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.10);
transition:.4s;
}

.destination-card:hover{
transform:translateY(-12px);
box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.destination-card img{
width:100%;
height:260px;
object-fit:cover;
transition:.5s;
}

.destination-card:hover img{
transform:scale(1.08);
}

.destination-content{
padding:25px;
text-align:center;
}

.destination-content h3{
font-size:28px;
color:var(--primary);
margin-bottom:10px;
}

.destination-content p{
color:#666;
margin-bottom:20px;
}

.btn-small{
display:inline-block;
padding:12px 28px;
background:var(--secondary);
color:#111;
border-radius:40px;
font-weight:600;
transition:.3s;
}

.btn-small:hover{
transform:translateY(-4px);
}

/* ================= GALLERY ================= */

.gallery{
background:var(--light);
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-grid img{
width:100%;
height:250px;
object-fit:cover;
border-radius:20px;
cursor:pointer;
transition:.4s;
box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.gallery-grid img:hover{
transform:scale(1.05);
box-shadow:0 20px 45px rgba(0,0,0,.18);
}

/* ================= WHY CHOOSE ================= */

.why{
background:#fff;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.why-card{
background:#fff;
padding:35px 25px;
border-radius:20px;
text-align:center;
box-shadow:0 12px 35px rgba(0,0,0,.08);
transition:.4s;
}

.why-card:hover{
background:var(--primary);
color:#fff;
transform:translateY(-10px);
}

.why-card i{
font-size:55px;
color:var(--secondary);
margin-bottom:20px;
}

.why-card h3{
font-size:24px;
margin-bottom:12px;
}

.why-card p{
line-height:1.8;
font-size:16px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.destination-grid{
grid-template-columns:repeat(2,1fr);
}

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.why-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.destination-grid,
.gallery-grid,
.why-grid{
grid-template-columns:1fr;
}

.destination-card img{
height:220px;
}

.gallery-grid img{
height:220px;
}

}
/* ================= TESTIMONIAL ================= */

.testimonials{
background:var(--light);
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.testimonial-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 10px 35px rgba(0,0,0,.08);
text-align:center;
transition:.4s;
}

.testimonial-card:hover{
transform:translateY(-10px);
}

.testimonial-card p{
line-height:1.9;
color:#555;
margin-bottom:20px;
}

.testimonial-card h4{
color:var(--primary);
}

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

.contact{
background:#fff;
}

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
margin-bottom:50px;
}

.contact-info{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-info h3{
font-size:34px;
color:var(--primary);
}

.contact-info p{
font-size:18px;
color:#555;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:18px;
}

.contact-form input,
.contact-form textarea{
padding:18px;
border:1px solid #ddd;
border-radius:12px;
font-size:16px;
outline:none;
}

.contact-form textarea{
resize:none;
}

.map iframe{
width:100%;
height:420px;
border:none;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.12);
}

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

.footer{
background:#0B4EA2;
padding:70px 20px;
text-align:center;
color:#fff;
}

.footer-logo{
width:140px;
margin:auto;
margin-bottom:20px;
}

.footer h3{
margin-bottom:15px;
font-size:30px;
}

.footer p{
line-height:1.8;
}

.social-links{
margin:25px 0;
display:flex;
justify-content:center;
gap:20px;
}

.social-links a{
width:50px;
height:50px;
border-radius:50%;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
color:#0B4EA2;
font-size:22px;
transition:.3s;
}

.social-links a:hover{
background:var(--secondary);
color:#000;
transform:translateY(-5px);
}

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

.floating-whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
border-radius:50%;
background:#25D366;
display:flex;
justify-content:center;
align-items:center;
font-size:34px;
color:#fff;
box-shadow:0 10px 30px rgba(0,0,0,.25);
z-index:999;
transition:.3s;
}

.floating-whatsapp:hover{
transform:scale(1.08);
}

#scrollTop{
position:fixed;
right:25px;
bottom:105px;
width:55px;
height:55px;
border:none;
border-radius:50%;
background:var(--secondary);
font-size:22px;
cursor:pointer;
display:none;
box-shadow:0 10px 30px rgba(0,0,0,.25);
z-index:999;
}

/* ================= ANIMATION ================= */

.hidden{
opacity:0;
transform:translateY(60px);
transition:1s;
}

.show{
opacity:1;
transform:translateY(0);
}

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

@media(max-width:768px){

.navbar{
height:85px;
}

.logo img{
width:120px;
}

.menu-btn{
display:block;
}

.nav-links{
position:fixed;
top:85px;
left:-100%;
width:100%;
background:#0B4EA2;
flex-direction:column;
padding:30px;
gap:25px;
transition:.4s;
}

.nav-links.active{
left:0;
}

.hero{
padding:0 20px;
}

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:18px;
}

.hero-buttons{
flex-direction:column;
}

.btn{
width:100%;
text-align:center;
}

.contact-wrapper,
.testimonial-grid{
grid-template-columns:1fr;
}

.section{
padding:70px 0;
}

.section-heading h2{
font-size:34px;
}

}
...तुझा आधीचा CSS...

/* Logo Text */
.logo{
    display:flex;
    align-items:center;
    gap:8px;
}

.company-name{
    display:flex;
    flex-direction:column;
    justify-content:center;
    margin-left:12px;
}

.company-name h2{
    margin:0;
    color:#fff;
    font-size:22px;
    font-weight:800;
    line-height:1.1;
}

.company-name p{
    margin:2px 0 0;
    color:#FFD54F;
    font-size:13px;
    font-weight:500;
    line-height:1;
}
/* ================= DESKTOP FIX ================= */

@media screen and (min-width: 992px){

.header{
    height:90px;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:170px;
    height:auto;
}

.company-name h2{
    font-size:34px;
    line-height:1;
}

.company-name p{
    font-size:18px;
    margin-top:6px;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    font-size:16px;
}

}