:root{
    --primary:#f59e0b;
    --dark:#0f172a;
    --light:#ffffff;
    --text:#334155;
    --bg:#f8fafc;
}

/* ================= RESET ================= */

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

body{
    font-family:'Segoe UI',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

/* ================= DARK MODE ================= */

body.dark{
    background:#111827;
    color:white;
}

/* ================= NAVBAR ================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;

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

    padding:15px 7%;

    background:rgba(0,0,0,0.65);

    backdrop-filter:blur(10px);

    z-index:1000;
}

/* ================= LOGO TEXT ================= */

.logo{
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;

    font-family: 'Poppins', sans-serif;

    background:
    linear-gradient(
        90deg,
        #fbbf24,
        #ffffff,
        #f59e0b
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
    0 0 20px rgba(251,191,36,0.35);

    transition: 0.3s ease;

    cursor: pointer;
}

/* HOVER EFFECT */

.logo:hover{
    transform: scale(1.03);
}

/* MOBILE */

@media(max-width:768px){

    .logo{
        font-size: 24px;
    }

}

.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-size:16px;
    transition:0.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

.theme-toggle{
    color:white;
    font-size:22px;
    cursor:pointer;
}

/* ================= HOME ================= */

.home{
    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
    url("img/home1.png") center/cover no-repeat;

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

    text-align:center;

    padding:20px;
}

.hero-text h1{
    color:white;
    font-size:15px;
    margin-bottom:10px;
    padding-right: 70px;
}

.hero-text p{
    color:#e2e8f0;
    font-size:11px;
    padding-right: 100px;
    margin-top: 20px;
    margin-left: 30px;
}

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

section{
    padding:80px 7%;
}

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

.about{
    background:white;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.about-img{
    flex:1 1 350px;
}

.about-img img{
    width:100%;
    max-width:450px;
    border-radius:20px;
    display:block;
    margin:auto;
}

.about-text{
    flex:1 1 450px;
}

.about-text h1{
    font-size:42px;
    color:var(--dark);
    margin-bottom:10px;
}

.line{
    width:80px;
    height:4px;
    background:var(--primary);
    margin-bottom:20px;
    border-radius:10px;
}

.about-text p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:15px;
}

.about-features{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(180px,1fr));

    gap:18px;

    margin-top:25px;
}

.about-features div{
    background:#fff;
    padding:20px;
    border-radius:18px;
    text-align:center;

    box-shadow:
    0 5px 15px rgba(0,0,0,0.08);

    transition:0.3s;
}

.about-features div:hover{
    transform:translateY(-5px);
}

.about-features i{
    font-size:32px;
    color:var(--primary);
    margin-bottom:10px;
}

.about-features h4{
    margin-bottom:8px;
}

.tagline{
    margin-top:25px;
    color:var(--primary);
    font-size:24px;
}

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

.services{
    display:grid;

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

    gap:25px;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );
}

.service-box{
    background:rgba(255,255,255,0.06);

    padding:35px 25px;

    border-radius:25px;

    text-align:center;

    color:white;

    transition:0.3s;
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-box i{
    font-size:45px;
    color:#fbbf24;
    margin-bottom:15px;
}

.service-box h3{
    font-size:24px;
}

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

.gallery{
    background:#f1f5f9;
}

.gallery h2{
    text-align:center;
    font-size:40px;
    margin-bottom:35px;
}

.gallery-container{
    display:grid;

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

    gap:20px;
}

.gallery-container img,
.gallery-container video{
    width:100%;
    height:250px;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    transition:0.3s;
}

.gallery-container img:hover,
.gallery-container video:hover{
    transform:scale(1.03);
}

/* ================= LIGHTBOX ================= */

.lightbox{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.95);

    display:none;

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

    z-index:9999;
}

.lightbox.show{
    display:flex;
}

#lightbox-img,
#lightbox-video{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}

.close-btn{
    position:absolute;
    top:20px;
    right:30px;

    color:white;
    font-size:40px;
    cursor:pointer;
}

.footer {
  background: #0f172a;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
}

.footer-col h2,
.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #ffcc00;
}

.footer-col i {
  margin-right: 8px;
  color: #ffcc00;
}

.footer-social {
  text-align: center;
  margin: 20px 0;
}

.footer-social a {
  margin: 0 10px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 10px;
  font-size: 14px;
}

/* ================= FLOATING ICONS ================= */

.floating-icons{
    position:fixed;
    right:18px;
    bottom:18px;

    display:flex;
    flex-direction:column;

    gap:12px;

    z-index:1000;
}

.floating-icons a{
    width:48px;
    height:48px;

    border-radius:50%;

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

    color:white;

    text-decoration:none;

    font-size:20px;

    transition:0.3s;
}

.floating-icons a:hover{
    transform:scale(1.1);
}

.whatsapp{background:#25D366;}
.instagram{background:#E1306C;}
.facebook{background:#1877F2;}
.email{background:#ff6347;}

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

@media(max-width:768px){

    .navbar{
        padding:15px 20px;
    }

    .nav-links{
        gap:12px;
    }

    .hero-text h1{
        font-size:38px;
    }

    .hero-text p{
        font-size:16px;
    }

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .line{
        margin:auto auto 20px;
    }
.about-text h1{
   color:#0f172a;
}

.about-text p{
   color:#475569;
}
    .contact-left h2{
        font-size:32px;
    }

    .tagline,
    .contact-tagline h3{
        font-size:20px;
    }

    .gallery h2{
        font-size:30px;
    }

    section{
        padding:60px 20px;
    }
}

body.dark .about{
    background:#111827;
}

/* TITLE */
body.dark .about-text h1{
    color:white;
}

/* PARAGRAPH */
body.dark .about-text p{
    color:#d1d5db;
}

/* FEATURE CARD */
body.dark .about-features div{
    background:#1e293b;
    box-shadow:
    0 5px 15px rgba(255,255,255,0.05);
}

/* FEATURE TITLE */
body.dark .about-features h4{
    color:white;
}

/* FEATURE TEXT */
body.dark .about-features p{
    color:#cbd5e1;
}

/* TAGLINE */
body.dark .tagline{
    color:#fbbf24;
}

/* ================= LOCATION SECTION ================= */

.location-section{
    padding: 80px 7%;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );

    color: white;
}

.location-container{
    display: grid;

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

    gap: 40px;

    align-items: center;
}

/* LEFT SIDE */

.location-info h2{
    font-size: 42px;

    margin-bottom: 20px;

    color: #fbbf24;
}

.location-info p{
    line-height: 1.8;

    color: #d1d5db;

    margin-bottom: 15px;

    font-size: 16px;
}

/* ADDRESS BOX */

.address-box{
    margin-top: 30px;
}

.address-box p{
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    font-size: 17px;
}

.address-box i{
    color: #fbbf24;
    font-size: 20px;
}

/* MAP */

.map-box iframe{
    width: 100%;
    height: 350px;

    border: none;

    border-radius: 20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.3);
}

/* MOBILE */

@media(max-width:768px){

    .location-section{
        padding: 60px 20px;
    }

    .location-info h2{
        font-size: 32px;
    }

}