/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* CSS VARIABLES */
:root {
  --yellow: #f4b400;
  --muted: #6b7280;
  --dark: #222222;
  --light-bg: #f9fafb;
}

body {
  background: #fff;
  color: var(--dark);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: #f4b400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.services-trigger {
  text-decoration: none;
  color: #222;
  font-size: 17px;
  letter-spacing: 2;
  font-weight: 500;
  cursor: pointer;
}

.nav-links a:hover,
.services-trigger:hover,
.nav-links a.active {
  color: #f4b400;
}

.app-btn {
  background: #f4b400;
  padding: 10px 22px;
  border-radius: 30px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

/* ================= HERO BACKGROUND STYLE ================= */

.tw-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("images/yellow-scooter.png") no-repeat right center;
    background-size: contain;
    background-color: #000000;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

/* Dark Gradient Overlay */
.tw-overlay {
    position: absolute;
    
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.55) 40%,
        rgba(0,0,0,0.5) 70%,
        rgba(0,0,0,0.1) 100%
    );
}

/* TEXT CONTENT */
.tw-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
}

.tw-hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
}

.tw-hero-content h1 span {
    color: #f4b400;
}

.tw-hero-content p {
    margin: 20px 0 35px;
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
}

/* BUTTONS */
.tw-hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #f4b400;
    color: #000;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #ffcc33;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid #f4b400;
    color: #f4b400;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #f4b400;
    color: #000;
}


/* SERVICES WRAPPER (STRICT HOVER ZONE) */
.services-wrapper {
  position: relative;
}

/* HOVER BRIDGE – prevents menu closing on slow mouse */
.services-wrapper::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 30px;
}

/* MEGA MENU */
.services-mega {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1300px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: none;
  gap: 20px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.25);
  z-index: 9999;
}

/* OPEN ONLY WHEN SERVICES WORD IS HOVERED */
.services-wrapper:hover .services-mega {
  display: flex;
}

/* COLUMNS */
.service-col {
  flex: 1;
}

.service-col h3 {
  font-size: 24px;
  color: #f4b400;
  margin-bottom: 24px;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* CARD */
.card {
  background: #f7f7f7;
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  transition: all 0.25s ease;
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .services-mega {
    width: 95vw;
  }
}

@media (max-width: 768px) {
  .services-mega {
    flex-direction: column;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 40px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
}

/* =======================
   SERVICES PAGE
======================= */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 60px 0 40px;
}

.service-tabs button {
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: #eee;
}

.service-tabs button.active {
  background: #f4b400;
  color: #000;
}

/* =======================
   SERVICE CONTENT
======================= */
.service-content {
  display: none;
  padding: 40px 80px 80px;
}

.service-content.active {
  display: block;
}

.service-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.service-hero img {
  width: 380px;
}

.service-hero h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.service-hero p {
  color: #555;
  max-width: 520px;
}

/* =======================
   STYLE POINT CARDS
======================= */
.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.point-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.point-icon {
  font-size: 36px;
  color: #f4b400;
  margin-bottom: 15px;
}

.point-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.point-card p {
  font-size: 14px;
  color: #555;
}

/* =======================
   CONTACT PAGE
======================= */
.office-section {
  text-align: center;
  padding: 80px 20px;
}

.office-section h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 35px;
}

.office-card {
    width: 380px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    padding: 60px 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-top: 6px solid #f4b400;
    line-height: 1.8;
}

.office-card h2 {
    margin-bottom: 10px;
    font-weight: 600;
}

.office-card p {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.8;
}

.email {
    margin-top: 20px;
    font-weight: 600;
    line-height: 1.6;
}

.office-icon {
  font-size: 60px;
  margin-bottom: 10px;
}

/* ================================
   GET IN TOUCH SECTION
================================ */

.contact-section {
  padding: 50px 100px;
  background: #fafafa;
}

/* GRID */
.contact-content {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: flex-end;
}

/* LEFT COLUMN */
.contact-left {
  display: flex;
  flex-direction: column;
  align-items:start;   /* 🔥 critical */
  text-align: left;          /* 🔥 critical */
}

/* HEADER */
.contact-header {
  margin-bottom: 25px;
}
.contact-header,
.contact-header * {
  text-align: left !important;
}
.contact-header h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-header h2 span {
  color: #f4b400;
}

.contact-header p {
  color: #666;
  font-size: 19px;
  line-height: 1.5;
  max-width: 520px;
}

/* MAP */
.contact-map {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;

  /* NEW */
  border: 1px solid #e6e6e6;   /* light gray border */
  background: #fff;

  box-shadow: 0 12px 30px rgba(0,0,0,0.06); /* slightly softer */
}
  

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FORM */

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;

  /* NEW – same as map */
  border: 1px solid #e6e6e6;

  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.row {
  display: flex;
  gap: 15px;
}

.contact-form button {
  width: 100%;
  background: #f8d96a;
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #f4c430;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 240px;
    margin-bottom: 20px;
  }

  .row {
    flex-direction: column;
  }
}

/* ============================
    HOME PAGE ABOUT JIBON ELECTRIC
============================ */

.about-jibon {
  padding: 100px 20px;
  background: #fafafa;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: stretch;
}

/* LEFT YELLOW CARD */
.about-highlight {
  background: #F8E6A8;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.about-highlight h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1f1f1f;
}

.about-highlight p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

/* RIGHT SIDE */
.about-why {
  padding: 20px 10px;
}

.about-why h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #1f1f1f;
}

/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #F4C430;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-highlight {
    padding: 40px 30px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   MISSION & VISION
========================= */

.mission-vision {
  padding: 80px 10px;
  background: #f9f9f9;
}

.mv-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT YELLOW CARD */
.mv-card {
  background: #F8E6A8;
  padding: 50px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.mv-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #1f1f1f;
}

.mv-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #333;
}

.mv-card p {
  font-size: 19px;
  line-height: 1.6;
  color: #444;
}

/* RIGHT DARK PANEL */
.mv-highlight {
  background: #1f1f1f;
  color: #fff;
  padding: 60px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mv-highlight h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #F4C430;
}

.mv-highlight p {
  font-size: 19px;
  line-height: 1.7;
  color: #ddd;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mv-container {
    grid-template-columns: 1fr;
  }
  
  
}
/* =========================
   GET STARTED WITH JIBON
========================= */

.get-started {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.get-started h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1f1f1f;
}

.gs-subtext {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #555;
}

.gs-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gs-card {
  background: #fafafa;
  border-radius: 22px;
  padding: 40px 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.gs-card img {
  width: 70px;
  margin-bottom: 20px;
}

.gs-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #F4C430;
}

.gs-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .gs-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   JIBON MODERN FOOTER (FINAL)
============================== */

.jibon-footer {
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
  border-top: 1px solid #eee;
  padding-top: 80px;
  font-family: 'Inter', sans-serif;
}

/* MAIN GRID */
.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 2.6fr 1fr 1fr 1fr 1fr;
  gap: 25px;
}

/* BRAND COLUMN */
.footer-brand {
  padding-right: 25px;
}

.footer-logo {
  font-size: 35px;
  font-weight: 800;
  color: #F4C430;
  margin-bottom: 14px;
}

.footer-logo span {
  color: #f4b400;
}

.footer-about {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  max-width: 420px;
}

/* OTHER COLUMNS */
.footer-col h4 {
  font-size: 19px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: #F4C430;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid #eee;
  background: #fff;
}

.footer-bottom-inner {
  max-width: 1300px;
  margin: auto;
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #777;
}

.footer-links a {
  margin-left: 22px;
  text-decoration: none;
  color: #777;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #F4C430;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links a {
    margin: 0 10px;
  }
}

/* GET IN TOUCH */
.get-in-touch {
  background: #fffdf6;
  padding: 100px 8%;
}

.get-in-touch-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  background: #fff2c2;
  color: #fbbc04;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.get-in-touch-text h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #222;
}

.get-in-touch-text p {
  font-size: 16px;
  color: #555;
  max-width: 520px;
  margin-bottom: 35px;
}

.touch-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.btn.primary {
  background: #fbbc04;
  color: #000;
}

.btn.outline {
  border: 2px solid #fbbc04;
  color: #fbbc04;
  background: transparent;
}

.get-in-touch-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.get-in-touch-card h4 {
  font-size: 20px;
  margin-bottom: 25px;
}

.info-item {
  margin-bottom: 20px;
}

.info-item strong {
  display: block;
  font-size: 14px;
  color: #fbbc04;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 14px;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .get-in-touch-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .touch-buttons {
    justify-content: center;
  }
}






/* =========================
   FIX GET STARTED CARD IMAGES
   ========================= */

.start-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.start-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  width: 320px;          /* keeps box size fixed */
  overflow: hidden;      /* VERY IMPORTANT */
}

.start-card img {
  width: 100%;
  max-width: 120px;      /* keeps image small */
  height: 80px;          /* small height */
  object-fit: contain;
  display: block;
  margin: 0 auto 15px;
}

.start-card a {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 22px;
  background:
}

/* ===============================
   HOME FAQ SECTION
================================ */
.home-faq {
  background-color: #FFFfff; /* extra light yellow */
  padding: 100px 0;
}

.faq-header {
  max-width: 1200px;
  margin: 0 auto 70px;
  text-align: center;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.faq-header .faq-subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}
.faq-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* FAQ LIST – SPACE BETWEEN QUESTIONS */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;   /* 👈 THIS is the gap between questions */
}

.faq-image img {
  width: 100%;
  max-width: 500px;
  margin: auto;
  display: block;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  
}

.faq-item summary {
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;

}

.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: #2f7df6;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(90deg);
}
.faq-item p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}
.faq-item:hover {
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-image img {
    margin-bottom: 30px;
  }

  .faq-header h2 {
    font-size: 30px;
  }

  .faq-item summary,
  .faq-item p {
    text-align: left;
  }
}




/* =========================
   WHATSAPP FLOATING ICON
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-float img {
    width: 26px;
    height: 26px;
  }




