
  body {
    margin: 0;
    font-family: Arial, sans-serif;
}
/* header{
    display: flex;
}
/* Header Nav 
.navbar {
    height: 110px;
    width: 100%;
    /* background-color: lightskyblue; 

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left side (logo) 
.nav-left {
    padding-left: 150px;
}

.nav-left img {
    height: 110px; /* logo size adjust kar sakte ho 
}

/* Right side (menu) 
.nav-right {
    padding-right: 100px;
}

.nav-right a {
    color: black;
    text-decoration: none;
    margin-left: 50px;
    font-size: 18px;
}

.nav-right a:hover {
    text-decoration: underline;
}
#well{
    font-size: 25px;
} */

 
/* MAIN NAVBAR */
.gas-navbar {
  height: 120px;

  background: linear-gradient(135deg, #064e3b, #022c22);
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-left: 40px;  /* logo left space */
  padding-right: 60px;

  font-family: "Segoe UI", sans-serif;

  position: sticky;  /* sticky top */
  top: 0;
  z-index: 1000;

  animation: navFade 0.8s ease;
}

/* LEFT LOGO */
.nav-left {
  flex: 1;
}

.logo {
  height: 50px;
}

/* CENTER TITLE */
.nav-center {
  position: absolute;
  left: 42%;
  transform: translateX(-50%);
  color: #ecfdf5;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* RIGHT LINKS */
.nav-links {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #d1fae5;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #34d399;
  transform: scale(1.1);
}

/* UNDERLINE ANIMATION */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #34d399;
  left: 0;
  bottom: -6px;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* NAVBAR FADE IN */
@keyframes navFade {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE (optional) */
@media screen and (max-width: 900px){
  .nav-center { font-size: 16px; }
  .nav-links { gap: 15px; }
}

/* slider */

.slider {
    width: 100%;
    height: 700px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    position: relative;
}

.slider img {
    /* width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease; /* smooth zoom transition */
       width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 3.5s ease-in-out forwards; /* slow zoom animation */
} 

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08); /* subtle slow zoom */
    }
}






.slide-text {
    position: absolute;
    top: 20px; /* final position */
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.642);
    font-size: 25px;
    font-weight: bold;
    background: rgba(0,0,0,0.5);
    padding: 10px 20px;
    border-radius: 8px;
    line-height: 1.8;

    opacity: 0;
    animation: none;
}

/* text upar se neeche aane ki animation */
@keyframes textDown {
    0% {
        top: -50px;
        opacity: 0;
    }
    100% {
        top: 200px;
        opacity: 1;
    }
}

/* 
#home{
    text-align: center;
    align-items: center;
     color: rgba(255, 255, 255, 0.471);
     font-size: 18px;
     background-color: rgba(0, 0, 255, 0.618);
}
 */






.top-nav {
  height: 70px;
  width: 100%;
  background: linear-gradient(135deg, #020617, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #e5e7eb;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  animation: slideDown 0.8s ease;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-item i {
  color: #38bdf8;
  font-size: 15px;
  transition: 0.3s ease;
}

.contact-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-item:hover {
  color: #38bdf8;
  transform: translateY(-2px);
}

.nav-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.25);
}

/* Entrance Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


















 /* ================= ABOUT SECTION ================= */
.about-section {
  width: 100%;
  padding: 100px 60px;
  background: linear-gradient(135deg, #022c22, #064e3b);
  box-sizing: border-box;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* -------- LEFT TEXT -------- */
.about-text {
  width: 50%;
  color: #ecfdf5;
  padding: 20px;
  border-radius: 14px;
  transition: all 0.6s ease;
  
  /* scroll animation start */
  transform: translateX(-80px);
  opacity: 0;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #34d399;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
}

/* 🔥 TEXT HOVER ZOOM (SMOOTH) */
.about-text:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.04);
}

/* -------- RIGHT IMAGE -------- */
.about-image {
  width: 50%;
  padding: 20px;
  transition: all 0.6s ease;

  /* scroll animation start */
  transform: translateX(80px);
  opacity: 0;
}

.about-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  padding: 20px;
  background: #022c22;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  transition: transform 0.7s ease;
}

/* 🔥 IMAGE HOVER ZOOM (SLOW & PREMIUM) */
.about-image:hover img {
  transform: scale(1.08);
}

/* -------- SCROLL ANIMATION -------- */
.about-section {
  view-timeline-name: --about;
  view-timeline-axis: block;
}

.about-text,
.about-image {
  animation-timeline: --about;
  animation-range: entry 30% cover 40%;
  animation-fill-mode: forwards;
}

.about-text {
  animation-name: slideFromLeft;
}

.about-image {
  animation-name: slideFromRight;
}

@keyframes slideFromLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    width: 100%;
    text-align: center;
  }

  .about-image img {
    height: 260px;
  }
}





 /* ================= SERVICES SECTION ================= */
.services-section {
  width: 100%;
  padding: 120px 60px;
  background: linear-gradient(135deg, #020617, #020617); /* 🔥 dark theme (About se different) */
  box-sizing: border-box;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.services-image {
  width: 45%;
  transition: transform 0.7s ease;
}

.services-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
  transition: transform 0.7s ease;
}

/* Image hover zoom */
.services-image:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.services-content {
  width: 55%;
  color: #e5e7eb;
}

.services-content h2 {
  font-size: 34px;
  margin-bottom: 25px;
  color: #38bdf8; /* 🔥 blue accent */
}

.services-content ul {
  list-style: none;
  padding: 0;
}

.services-content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.8;
  transition: transform 0.4s ease, color 0.4s ease;
}

/* Custom bullet */
.services-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #38bdf8;
  font-weight: bold;
}

/* Hover effect on bullet text */
.services-content li:hover {
  transform: translateX(8px);
  color: #38bdf8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .services-container {
    flex-direction: column;
  }

  .services-image,
  .services-content {
    width: 100%;
  }

  .services-image img {
    height: 280px;
  }

  .services-content {
    text-align: center;
  }

  .services-content li {
    text-align: left;
  }
}









 /* ============ PREMIUM ADDRESS SECTION ============ */
.address-premium {
  position: relative;
  width: 100%;
  padding: 140px 20px;
  background: radial-gradient(circle at top, #0f172a, #020617);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Animated background glow */
.address-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251,191,36,0.18), transparent 70%);
  animation: pulseGlow 6s ease-in-out infinite;
}

/* Glass Card */
.address-glass {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.06);
  border-radius: 26px;
  padding: 60px 90px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 35px 90px rgba(0,0,0,0.65);

  transform: translateY(80px) scale(0.9);
  opacity: 0;
  animation: addressReveal 1.4s ease forwards;
}

/* Floating animation */
.address-glass {
  animation:
    addressReveal 1.4s ease forwards,
    floatCard 6s ease-in-out infinite;
}

/* Location Icon */
.location-icon {
  font-size: 34px;
  display: inline-block;
  margin-bottom: 15px;
  animation: bouncePin 2.8s ease infinite;
}

/* Heading */
.address-glass h2 {
  font-size: 36px;
  color: #fbbf24;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Address text */
.premium-address {
  font-size: 24px;
  line-height: 1.9;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 18px;
  transition: transform 0.6s ease;
}

/* Sub text */
.address-subtext {
  font-size: 14px;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

/* Hover Effects */
.address-glass:hover {
  box-shadow: 0 0 35px rgba(251,191,36,0.55);
}

.address-glass:hover .premium-address {
  transform: scale(1.1);
}

/* ============ ANIMATIONS ============ */
@keyframes addressReveal {
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes bouncePin {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .address-glass {
    padding: 45px 35px;
  }

  .premium-address {
    font-size: 20px;
  }
}



/* contact */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  text-align: center;
  color: white;
}

.contact-title {
  font-size: 40px;
  margin-bottom: 50px;
  animation: fadeDown 1s ease;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  width: 280px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  animation: fadeUp 1.2s ease;
}

.contact-card span {
  font-size: 40px;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255,255,255,0.2);
}

@keyframes fadeUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeDown {
  from {opacity: 0; transform: translateY(-40px);}
  to {opacity: 1; transform: translateY(0);}
} 





/* contact */










   /* .nav-center {
    display: flex;
     flex-direction: column;   
    text-align: center;
    line-height: 1; 
}

.nav-center b {
    font-size: 20px;
}

.nav-center p {
    margin: 0;
    font-size: 14px;
}   */
