 /*==============================
Kharg International Travel & Tours
Professional CSS
==============================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f8f9fa;
color:#d4af37;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/*==============================
HEADER
==============================*/

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#0d3b2e;
padding:15px 0;
z-index:999;
box-shadow:0 5px 15px rgba(0,0,0,.25);
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:70px;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:30px;
}

nav ul li a{
text-decoration:none;
color:#fff;
font-weight:500;
transition:.3s;
}

nav ul li a:hover{
color:#D4AF37;
}

.btn{
background:#D4AF37;
color:#111;
padding:12px 28px;
text-decoration:none;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#0F6B4B;
color:#fff;
}

/*==============================
HERO SECTION
==============================*/

.hero{

height:100vh;

background:url("../images/banner.jpeg") center center/cover no-repeat;

position:relative;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

}

.overlay{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.65);

}

.hero-content{

position:relative;

z-index:2;

color:#fff;

width:80%;

}

.hero h1{

font-size:60px;

font-weight:700;

margin-bottom:15px;

}

.hero h2{

font-size:30px;

color:#D4AF37;

margin-bottom:20px;

}

.hero p{

font-size:18px;

margin-bottom:35px;

}

.hero-btn{

background:#D4AF37;

padding:15px 35px;

border-radius:50px;

color:#111;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.hero-btn:hover{

background:#0F6B4B;

color:#fff;

}

/*==============================
ABOUT
==============================*/

.about{

padding:90px 0;

background:#fff;

text-align:center;

}

.about h2{

font-size:40px;

color:#0F6B4B;

margin-bottom:20px;

}

.about p{

font-size:18px;

max-width:900px;

margin:auto;

}

/*==============================
SERVICES
==============================*/

.services{

padding:90px 0;

background:#f2f5f4;

}

.services h2{

text-align:center;

font-size:40px;

color:#0F6B4B;

margin-bottom:60px;

}

.service-box{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.card{

background:#fff;

padding:35px;

border-radius:15px;

text-align:center;

transition:.4s;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.card:hover{

transform:translateY(-10px);

border-bottom:5px solid #D4AF37;

}

.card i{

font-size:50px;

color:#0F6B4B;

margin-bottom:20px;

}

.card h3{

margin-bottom:15px;

font-size:24px;

}

/*==============================
PACKAGES
==============================*/

.packages{

padding:90px 0;

background:#fff;

}

.packages h2{

text-align:center;

font-size:40px;

color:#0F6B4B;

margin-bottom:40px;

}

.package-box{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(400px,1fr));

gap:30px;

}

.package-box img{

width:100%;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.15);

transition:.4s;

}

/*==============================
WHY CHOOSE US
==============================*/

.why{
padding:90px 0;
background:#0d3b2e;
color:#fff;
}

.why h2{
text-align:center;
font-size:42px;
margin-bottom:60px;
color:#D4AF37;
}

.why-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.why-box div{
background:rgba(255,255,255,.08);
padding:35px;
border-radius:15px;
text-align:center;
transition:.4s;
border:1px solid rgba(255,255,255,.1);
}

.why-box div:hover{
background:#D4AF37;
color:#111;
transform:translateY(-10px);
}

.why-box h3{
font-size:24px;
}

/*==============================
CONTACT
==============================*/

.contact-home{
padding:90px 0;
background:#fff;
text-align:center;
}

.contact-home h2{
font-size:42px;
margin-bottom:25px;
color:#0F6B4B;
}

.contact-home p{
font-size:18px;
margin:15px 0;
}

.contact-home i{
color:#D4AF37;
margin-right:10px;
}

.facebook{
display:inline-block;
margin-top:25px;
background:#1877F2;
color:#fff;
padding:14px 35px;
border-radius:50px;
text-decoration:none;
transition:.3s;
}

.facebook:hover{
background:#0d5bd7;
}

/*==============================
FOOTER
==============================*/

footer{
background:#111827;
color:#fff;
text-align:center;
padding:25px;
font-size:15px;
}

/*==============================
WHATSAPP BUTTON
==============================*/

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
color:#fff;
font-size:34px;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,.3);
z-index:999;
transition:.3s;
}

.whatsapp:hover{
transform:scale(1.1);
}

/*==============================
SCROLLBAR
==============================*/

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:#D4AF37;
border-radius:20px;
}

::-webkit-scrollbar-track{
background:#eee;
}

/*==============================
ANIMATION
==============================*/

.card,
.package-box img,
.why-box div{
animation:fadeUp 1s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.hero h1{
font-size:42px;
}

.hero h2{
font-size:24px;
}

nav{
display:none;
}

.package-box{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.logo img{
height:55px;
}

.hero{
padding:20px;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:16px;
}

.btn,
.hero-btn{
padding:12px 25px;
}

.services,
.packages,
.about,
.why,
.contact-home{
padding:70px 20px;
}

}

@media(max-width:480px){

.hero h1{
font-size:28px;
}

.hero h2{
font-size:20px;
}

.about h2,
.services h2,
.packages h2,
.why h2,
.contact-home h2{
font-size:30px;
}

.whatsapp{
width:55px;
height:55px;
font-size:28px;
}

}
.package-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.12);
transition:.4s;
text-align:center;
padding-bottom:25px;
}

.package-card:hover{
transform:translateY(-10px);
}

.package-card img{
width:100%;
display:block;
}

.package-card h3{
font-size:26px;
margin:20px 15px 10px;
color:#0F6B4B;
}

.package-card p{
padding:0 20px;
margin-bottom:25px;
color:#555;
}
.booking-form{
padding:80px 20px;
background:#062d25;
}

.booking-form h2{
color:#FFD700;
text-align:center;
margin-bottom:30px;
}

.booking-form form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{

padding:16px;
border:none;
border-radius:8px;
font-size:16px;

}

.booking-form button{

background:#FFD700;
color:#062d25;
padding:16px;
border:none;
font-weight:bold;
font-size:18px;
cursor:pointer;
transition:.3s;

}

.booking-form button:hover{

background:#fff;

}
.testimonials{
padding:80px 0;
background:#f8f8f8;
}

.testimonials h2{
text-align:center;
color:#0F6B4B;
font-size:40px;
margin-bottom:50px;
}

.testimonial-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.testimonial-card{
background: rgba(255,255,255,0.08);
backdrop-filter: blur(12px);;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.testimonial-card:hover{
transform:translateY(-8px);
}

.testimonial-card img{
width:90px;
height:90px;
border-radius:50%;
object-fit:cover;
margin-bottom:20px;
border:4px solid #D4AF37;
}

.testimonial-card h3{
color:#0F6B4B;
margin-bottom:10px;
}

.testimonial-card p{
font-size:15px;
margin-bottom:15px;
color:linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
}
/* FAQ */

.faq{
padding:80px 0;
background:#ffffff;
}

.faq h2{
text-align:center;
font-size:40px;
color:#0F6B4B;
margin-bottom:40px;
}

.faq-item{
background:#f7f7f7;
padding:25px;
margin-bottom:20px;
border-left:5px solid #D4AF37;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.faq-item h3{
color:#0F6B4B;
margin-bottom:10px;
font-size:22px;
}

.faq-item p{
color:#555;
line-height:1.8;
}
.footer{

background:#062d25;

color:#fff;

padding:70px 0 20px;

}

.footer-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

}

.footer h3{

color:#FFD700;

margin-bottom:20px;

}

.footer ul{

list-style:none;

padding:0;

}

.footer ul li{

margin-bottom:10px;

}

.footer a{

color:#fff;

text-decoration:none;

transition:.3s;

}

.footer a:hover{

color:#FFD700;

}

.footer p{

line-height:1.8;

}
.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:35px;
}

.hero-btn{
padding:15px 30px;
background:#D4AF37;
color:#111;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.hero-btn:hover{
background:#0F6B4B;
color:#fff;
}

.secondary{
background:#0F6B4B;
color:#fff;
}

.secondary:hover{
background:#D4AF37;
color:#111;
}

.outline{
background:transparent;
border:2px solid #fff;
color:#fff;
}

.outline:hover{
background:#fff;
color:#111;
}
.slider{
padding:60px 0;
overflow:hidden;
background:#fff;
}

.slides{
display:flex;
gap:20px;
animation:slide 25s linear infinite;
}

.slides img{
width:350px;
height:350px;
object-fit:cover;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.2);
}

@keyframes slide{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}
/* Counter Section */

.counter{

padding:80px 0;

background:#0F6B4B;

color:#fff;

text-align:center;

}

.counter h2{

font-size:42px;

margin-bottom:50px;

color:#FFD700;

}

.counter-box{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

}

.count-card{

background:rgba(255,255,255,.1);

padding:35px;

border-radius:15px;

transition:.4s;

}

.count-card:hover{

transform:translateY(-10px);

background:#FFD700;

color:#111;

}

.count-card h1{

font-size:50px;

margin-bottom:10px;

}

.count-card p{

font-size:18px;

}
.cta{

padding:90px 20px;

background:#062d25;

text-align:center;

color:#fff;

}

.cta h2{

font-size:42px;

margin-bottom:20px;

color:#FFD700;

}

.cta p{

max-width:700px;

margin:0 auto 30px;

font-size:18px;

line-height:1.8;

}
.page-banner{
    margin-top:100px;   /* Header ki height ke hisab se */
}

.page-banner img{
    width:100%;
    display:block;
}
.contact-section{
padding:70px 0;
background:#f5f5f5;
}

.contact-section h2{
text-align:center;
color:#003366;
margin-bottom:10px;
}

.contact-section p{
text-align:center;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.contact-card{
background:#fff;
padding:30px;
text-align:center;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.contact-card i{
color:#d4af37;
margin-bottom:15px;
}

.booking-form{
padding:70px 0;
}

.booking-form form{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
padding:15px;
border:1px solid #ddd;
border-radius:8px;
}

.booking-form textarea{
grid-column:1/3;
height:120px;
}

.booking-form button{
grid-column:1/3;
background:#d4af37;
color:#fff;
padding:15px;
border:none;
border-radius:8px;
font-size:18px;
cursor:pointer;
}

.booking-form button:hover{
background:#003366;
}

.faq{
padding:70px 0;
background:#fff;
}

.faq h2{
text-align:center;
margin-bottom:30px;
}

.faq-item{
background:#f7f7f7;
padding:20px;
margin-bottom:20px;
border-radius:10px;
}

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

.booking-form form{
grid-template-columns:1fr;
}

.booking-form textarea,
.booking-form button{
grid-column:1;
}

}
/* Fixed Background */

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:url("../images/background.png") no-repeat center center fixed;
    background-size:cover;
}

/* Dark Overlay */

body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:-1;
}

/* All Sections Transparent */

header,
.hero,
.about,
.services,
.packages,
.why,
.testimonials,
.counter,
.slider,
.contact-home,
.cta,
.footer{
    background:transparent !important;
}

/* Hero Text */

.hero-content{
    background:none !important;
    box-shadow:none !important;
    border:none !important;
    color:#fff;
    text-align:center;
}

/* Containers */

.container{
    background:transparent !important;
}
footer,
.footer{
    background: transparent !important;
    color: #fff;
}

footer p,
.footer p,
.footer h3,
.footer a,
.footer li{
    color:#fff;
}
.why{
    background: transparent !important;
}

.why .container{
    background: transparent !important;
}

.why-box{
    background: transparent !important;
}

.why-box div{
    background: rgba(0,0,0,0.35);   /* halka transparent black */
    color:#fff;
    border:1px solid rgba(255,255,255,.2);
    border-radius:15px;
    padding:25px;
}
/* =======================================
   PREMIUM GLASS CONTAINERS - ALL PAGES
======================================= */

.about .container,
.services .container,
.packages .container,
.why .container,
.testimonials .container,
.counter .container,
.contact-home .container,
.contact-section .container,
.booking-form,
.faq .container,
.map-section .container,
.cta .container,
.footer .container{

    background: rgba(0,0,0,0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border:1px solid rgba(212,175,55,.25);

    border-radius:20px;

    padding:40px;

    box-shadow:0 10px 35px rgba(0,0,0,.35);

    margin:40px auto;
}

/* Headings */

.about h2,
.services h2,
.packages h2,
.why h2,
.testimonials h2,
.counter h2,
.contact-home h2,
.contact-section h2,
.booking-form h2,
.faq h2,
.map-section h2,
.cta h2{

    background:linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    font-size:40px;
    text-align:center;
    font-weight:700;
}

/* Paragraphs */

.about p,
.services p,
.packages p,
.why p,
.testimonials p,
.counter p,
.contact-home p,
.contact-section p,
.booking-form p,
.faq p,
.map-section p,
.cta p,
.footer p{
    color:#fff;
}

/* Cards */

.card,
.package-card,
.testimonial-card,
.count-card,
.contact-card,
.faq-item{

    background:rgba(0,0,0,.35);

    border:1px solid rgba(212,175,55,.25);

    border-radius:15px;

    color:#fff;

    transition:.4s;
}

.card:hover,
.package-card:hover,
.testimonial-card:hover,
.count-card:hover,
.contact-card:hover,
.faq-item:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:0 10px 25px rgba(212,175,55,.35);
}

/* Card Titles */

.card h3,
.package-card h3,
.testimonial-card h3,
.contact-card h3,
.faq-item h3,
.count-card h1{

    background:linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Icons */

.card i,
.contact-card i{
    color:#d4af37;
}

/* Footer */

.footer{
    background:transparent;
}

.footer h3,
.footer p,
.footer a{
    background:linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
/* Social Icons */

.social-icon{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:50px;
    height:50px;
    margin:10px 8px 0 0;
    border-radius:50%;
    text-decoration:none;

    background:rgba(255,255,255,0.10);
    border:2px solid #d4af37;

    color:#d4af37;
    font-size:24px;

    transition:0.4s;
}

.social-icon:hover{
    background:linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    color:#000;
    transform:translateY(-5px) scale(1.1);
    box-shadow:0 0 20px rgba(212,175,55,.6);
}
/* ==========================
   CONTACT PAGE DESIGN
========================== */

.contact-section{
    padding:80px 0;
    background:transparent;
}

.contact-section .container{
    background:rgba(0,0,0,0.28);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(212,175,55,.3);
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.contact-section h2{
    background:linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    font-size:42px;
    text-align:center;
    margin-bottom:15px;
}

.contact-section p{
    color:#fff;
    text-align:center;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px;
}

.contact-card{
    background:rgba(0,0,0,.35);
    border:1px solid rgba(212,175,55,.3);
    border-radius:15px;
    padding:30px;
    text-align:center;
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.contact-card i{
    font-size:40px;
    color:#d4af37;
    margin-bottom:15px;
}

.contact-card h3{
    background:linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.contact-card,
.contact-card a{
    color:#fff;
    text-decoration:none;
}

/* Booking Form */

.booking-form{
    max-width:1000px;
    margin:60px auto;
    background:rgba(0,0,0,.28);
    backdrop-filter:blur(12px);
    border:1px solid rgba(212,175,55,.3);
    border-radius:20px;
    padding:40px;
}

.booking-form h2{
    background:linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    text-align:center;
    margin-bottom:30px;
}

.booking-form form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    width:100%;
    padding:15px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(212,175,55,.4);
    border-radius:10px;
    color:#fff;
    font-size:16px;
}

.booking-form textarea{
    grid-column:1/3;
    height:140px;
}

.booking-form button{
    grid-column:1/3;
    padding:15px;
    background:linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    border:none;
    border-radius:10px;
    color:#000;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}

.booking-form button:hover{
    transform:scale(1.03);
}

/* FAQ */

.faq .container{
    background:rgba(0,0,0,.28);
    backdrop-filter:blur(12px);
    border-radius:20px;
    padding:40px;
}

.faq h2{
    background:linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    text-align:center;
}

.faq-item{
    background:rgba(0,0,0,.35);
    border:1px solid rgba(212,175,55,.3);
    border-radius:12px;
    padding:20px;
    margin:20px 0;
}

.faq-item h3{
    color:#d4af37;
}

.faq-item p{
    color:#fff;
}

/* Google Map */

.map-section .container{
    background:rgba(0,0,0,.28);
    backdrop-filter:blur(12px);
    border-radius:20px;
    padding:30px;
}

.map-section h2{
    background:linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    text-align:center;
    margin-bottom:20px;
}
/* ==========================
   FAQ SECTION
========================== */

.faq{
    background: transparent;
    padding: 80px 0;
}

.faq .container{
    background: rgba(0,0,0,0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212,175,55,.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.faq h2{
    background: linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-item{
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 20px;
    transition: .3s;
}

.faq-item:hover{
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212,175,55,.3);
}

.faq-item h3{
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 10px;
}

.faq-item p{
    color: #ffffff;
    line-height: 1.8;
}
/* About Page Heading */

.hero-content h1{

    background: linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 52px;
    font-weight: 700;
    text-align: center;

    text-shadow: 2px 2px 10px rgba(0,0,0,.5);
}
/* Select Box */

.booking-form select{
    color:#fff;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(212,175,55,.4);
}

/* Dropdown Options */

.booking-form select option{
    background:#1a1a1a;
    color:#fff;
}
/* ==========================
   FOOTER SOCIAL ICONS
========================== */

.footer-social{
    margin-top:20px;
}

.footer-social h3{
    background:linear-gradient(90deg,#F7E7A1,#D6B04C,#B8860B,#8C6A12);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:20px;
}

.social-icon{
    display:inline-flex;
    justify-content:center;
    align-items:center;

    width:50px;
    height:50px;

    margin-right:12px;

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    border:2px solid #D6B04C;

    color:#D6B04C;

    text-decoration:none;

    font-size:24px;

    transition:0.4s;
}

.social-icon:hover{

    background:linear-gradient(90deg,#F7E7A1,#D6B04C,#B8860B,#8C6A12);

    color:#000;

    transform:translateY(-5px) scale(1.1);

    box-shadow:0 0 20px rgba(214,176,76,.6);
}/* Social Icons */

.social-icon{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:50px;
    height:50px;
    margin:10px 8px 0 0;
    border-radius:50%;
    text-decoration:none;

    background:rgba(255,255,255,0.10);
    border:2px solid #d4af37;

    color:#d4af37;
    font-size:24px;

    transition:0.4s;
}

.social-icon:hover{
    background:linear-gradient(90deg,#f8e28a,#d4af37,#b8860b);
    color:#000;
    transform:translateY(-5px) scale(1.1);
    box-shadow:0 0 20px rgba(212,175,55,.6);
}
.booking-form select{
    background: transparent !important;
    color: #fff !important;
    border: 1px solid #d4af37;
}
/* ===========================
   Mobile Responsive Fix
=========================== */

@media only screen and (max-width:768px){

header .container{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:15px;
}

nav ul{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    padding:0;
    margin:0;
}

.hero{
    min-height:100vh;
    padding:120px 20px 60px;
}

.hero-content{
    width:100%;
    max-width:100%;
    text-align:center;
    padding:0;
}

.hero-content h1{
    font-size:34px;
}

.hero-content h2{
    font-size:24px;
}

.hero-content p{
    font-size:16px;
    line-height:1.8;
}

.container{
    width:95%;
    margin:auto;
    padding:15px;
}

.about .container,
.services .container,
.packages .container,
.why .container,
.testimonials .container,
.contact-home .container,
.booking-form .container,
.counter .container,
.footer .container{
    width:100%;
    text-align:center;
}

.service-box,
.package-box,
.why-box,
.testimonial-box,
.counter-box,
.footer-grid,
.contact-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.card,
.contact-card,
.testimonial-card,
.count-card{
    width:100%;
}

.package-box img,
.testimonial-card img{
    width:100%;
    height:auto;
}

.booking-form form{
    width:100%;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.booking-form button{
    width:100%;
}

.footer-grid{
    text-align:center;
}

.whatsapp{
    right:15px;
    bottom:20px;
}

}
.tour-list{
    list-style:none;
    padding:0;
    margin-top:10px;
}

.tour-list li{
    color:#f8e28a;
    padding:4px 0;
    font-size:15px;
}

.tour-list li::before{
    content:"✔ ";
    color:#d4af37;
    font-weight:bold;
}
.service-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}
.success-message{
    display:none;
    margin-top:20px;
    padding:15px;
    background:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb;
    border-radius:8px;
    text-align:center;
    font-weight:600;
}
.success-message{
    display:none;
    margin-top:20px;
    padding:18px;
    background:linear-gradient(90deg,#0d3b2e,#1f6b4f);
    color:#fff;
    border-radius:10px;
    text-align:center;
    font-size:16px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}
/*==============================
Premium Video Testimonials
==============================*/

.video-testimonials{

padding:90px 20px;

}

.video-testimonials h2{

text-align:center;

font-size:38px;

color:#D4AF37;

margin-bottom:10px;

}

.video-subtitle{

text-align:center;

color:#ddd;

margin-bottom:50px;

font-size:17px;

}

.video-slider{

position:relative;

overflow:hidden;

}

.video-track{

display:flex;

gap:30px;

transition:.5s;

}

.video-card{

min-width:48%;

background:rgba(255,255,255,.08);

backdrop-filter:blur(15px);

border:1px solid rgba(212,175,55,.4);

border-radius:20px;

padding:20px;

box-shadow:0 15px 40px rgba(0,0,0,.3);

transition:.4s;

}

.video-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 45px rgba(212,175,55,.4);

}

.video-card video{

width:100%;

height:600px;

border-radius:15px;

object-fit:cover;

background:#000;

}

.video-card h3{

text-align:center;

margin-top:20px;

color:#D4AF37;

}

.video-card p{

text-align:center;

color:#fff;

}

.prev,

.next{

position:absolute;

top:45%;

transform:translateY(-50%);

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#D4AF37;

color:#000;

font-size:28px;

cursor:pointer;

z-index:10;

transition:.3s;

}

.prev:hover,

.next:hover{

background:#fff;

}

.prev{

left:10px;

}

.next{

right:10px;

}

@media(max-width:768px){

.video-card{

min-width:100%;

}

.video-card video{

height:420px;

}

.video-testimonials h2{

font-size:28px;

}

}
.testimonial-box{
    margin-bottom:70px;
}

.video-slider{
    margin-top:20px;
}

.counter{
    padding:100px 20px;
}

.counter h2{
    text-align:center;
    margin-bottom:50px;
}
.google-review{

padding:100px 20px;

}

.review-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.review-card{

background:#fff;

padding:25px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.2);

transition:.4s;

}

.review-card:hover{

transform:translateY(-10px);

}

@media(max-width:768px){

.review-grid{

grid-template-columns:1fr;

}

}
/*=============================
Trust & Certification Section
=============================*/

.trust-section{

margin-top:30px;

}

.trust-section h3{

color:#D4AF37;

margin-bottom:18px;

font-size:22px;

}

.trust-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

margin-bottom:25px;

}

.trust-card{

display:flex;

align-items:center;

gap:12px;

padding:15px;

background:rgba(255,255,255,.08);

border:1px solid rgba(212,175,55,.35);

border-radius:15px;

transition:.4s;

backdrop-filter:blur(8px);

}

.trust-card:hover{

transform:translateY(-5px);

background:rgba(212,175,55,.15);

box-shadow:0 10px 25px rgba(212,175,55,.25);

}

.trust-card i{

font-size:24px;

color:#D4AF37;

}

.trust-card span{

color:#fff;

font-size:15px;

font-weight:600;

}

.channel-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:14px 24px;

background:#25D366;

color:#fff;

text-decoration:none;

border-radius:40px;

font-weight:600;

transition:.4s;

}

.channel-btn:hover{

background:#1EBE57;

transform:translateY(-4px);

box-shadow:0 10px 25px rgba(37,211,102,.4);

}

.channel-btn i{

font-size:22px;

}

/* Mobile */

@media(max-width:768px){

.trust-grid{

grid-template-columns:1fr;

}

.channel-btn{

width:100%;

}

}
.footer-social{

display:flex;

align-items:center;

gap:15px;

flex-wrap:wrap;

}

.social-icon{

width:50px;

height:50px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#D4AF37;

color:#fff;

font-size:22px;

text-decoration:none;

transition:.3s;

}

.social-icon:hover{

transform:translateY(-5px);

background:#25D366;

box-shadow:0 10px 20px rgba(0,0,0,.3);

}
/* Trusted & Certified Center */

.trust-section{
    width:100%;
    text-align:center;
    margin:40px auto 0;
}

.trust-section h3{
    text-align:center;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(2,180px);
    justify-content:center;
    gap:20px;
    margin:20px auto;
}

/* Copyright */

.footer hr{
    width:70%;
    margin:30px auto;
}

.copyright{
    width:100%;
    text-align:center;
    margin:20px auto 0;
    color:#D4AF37;
    line-height:1.8;
}
.trust-section{

margin-top:60px;

text-align:center;

}

.trust-section h3{

color:#D4AF37;

margin-bottom:25px;

}

.trust-grid{

display:grid;

grid-template-columns:repeat(4,220px);

gap:20px;

justify-content:center;

}

.copyright{

text-align:center;

margin-top:25px;

font-size:16px;

color:#D4AF37;

line-height:1.8;

}

@media(max-width:992px){

.trust-grid{

grid-template-columns:repeat(2,180px);

}

}

@media(max-width:576px){

.trust-grid{

grid-template-columns:1fr;

}

}
.trust-grid{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:30px;
}

.trust-card{
    width:260px;
    min-height:170px;
    padding:25px 20px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(12px);
    border:1px solid rgba(212,175,55,.35);
    border-radius:18px;
    text-align:center;
    transition:.4s;
}

.trust-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(212,175,55,.30);
}

.trust-card i{
    font-size:42px;
    color:#D4AF37;
    margin-bottom:15px;
}

.trust-card h4{
    color:#fff;
    font-size:22px;
    margin-bottom:10px;
    font-weight:600;
}

.trust-card span{
    color:#D4AF37;
    font-size:15px;
    line-height:1.6;
}
.trust-section{
    text-align:center;
    margin-top:60px;
}

.trust-section h3{
    color:#D4AF37;
    font-size:34px;
    margin-bottom:35px;
}

.trust-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.trust-card{

    width:250px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(15px);

    border:1px solid rgba(212,175,55,.4);

    border-radius:18px;

    padding:30px 20px;

    transition:.4s;

}

.trust-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(212,175,55,.3);

}

.trust-card img{

    width:85px;

    height:85px;

    object-fit:contain;

    margin-bottom:18px;

}

.trust-card h4{

    color:#D4AF37;

    margin-bottom:8px;

    font-size:22px;

}

.trust-card p{

    color:#ddd;

    font-size:14px;

    line-height:1.6;

}