/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fb;
}

/* ================= CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ================= HEADER ================= */
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.25);
  
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  padding: 0 25px;
  flex-wrap: wrap;
}

.logo img {
  height: 58px;
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #144a9a, #8b0000);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* ================= BUTTON ================= */
.btn-header {
  background: linear-gradient(135deg, #8b0000, #c62828);
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(139, 0, 0, 0.35);
  transition: 0.3s ease;
   text-decoration: none;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.45);
}

/* ================= MOBILE & TABLET HEADER FIX ================= */

.menu-toggle{
  display:none;
}

/* Mobile + Tablet */
@media (max-width:1024px){

  header{
    position:relative;
    background:#ffffff;
    z-index:9999;
  }

  .header-flex{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    height:65px;
    padding:0 12px;
  }

  /* Logo */
  .logo img{
    height:45px;
  }

  /* ===== MOBILE MENU ===== */

  nav{
    display:none;
    position:absolute;
    top:65px;
    left:0;
    width:100%;
    background:#ffffff;
    flex-direction:column;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    z-index:9999;
  }

  nav a{
    display:block;
    padding:15px;
    border-bottom:1px solid #eee;
    color:#333;
    font-size:16px;
  }

  nav a:last-child{
    border-bottom:none;
  }

  /* Show menu */
  nav.show{
    display:flex;
  }

  /* Hide connect button */
  .btn-header{
    display:none;
  }

  /* Toggle button */
  .menu-toggle{
    display:block;
    font-size:26px;
    color:#8b0000;
    cursor:pointer;
  }

}

/* ================= SMALL MOBILE ================= */

@media (max-width:576px){

  .header-flex{
    height:60px;
  }

  .logo img{
    height:40px;
  }

  .menu-toggle{
    font-size:24px;
  }

}

/* ================= ABOUT BANNER (VIDEO) ================= */
.about-banner{
  position: relative;
  height: 950px;              /* Desktop height */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Common video style */
.about-banner .banner-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* overlay */
.banner-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* ✅ Default: Desktop video show */
.desktop-video{ display: block; }
.mobile-video{ display: none; }

/* ================= TABLET + MOBILE (4:5 video) ================= */
@media (max-width: 1024px){

  /* show mobile video */
  .desktop-video{ display: none; }
  .mobile-video{ display: block; }

  /* ✅ 4:5 ratio banner height */
  .about-banner{
    height: auto;
    aspect-ratio: 4 / 5;     /* main fix */
  }

  .about-banner .banner-video{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* Small mobile */
@media (max-width: 576px){
  .about-banner{
    aspect-ratio: 4 / 5;
  }
}

/* ================= ABOUT SPLIT ================= */

.about-split {
    padding: 90px 0;
    background: #f8f9fb;
}

.about-split .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* ================= TEXT ================= */

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    color: #0b2c5f;
    margin-bottom: 18px;
}

.about-text h4 {
    font-size: 22px;
    color: #be1313;
    margin-bottom: 18px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.about-text ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    padding-left: 26px;
    position: relative;
}

.about-text ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #be1313;
    font-weight: bold;
}

/* ================= BUTTON ================= */

.btn-primary.about-btn {
    background: linear-gradient(135deg, #be1313, #ff3b3b);
    color: #fff;
    padding: 14px 34px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(190, 19, 19, 0.35);
}

.btn-primary.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(190, 19, 19, 0.45);
}

/* ================= IMAGES ================= */

.about-images {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-images .main-img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.about-images .overlay-img {
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 60%;
    border-radius: 18px;
    border: 6px solid #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* ================= TABLET & MOBILE CLEAN FIX ================= */
@media (max-width: 992px) {

    .about-split .container {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    /* Heading Alignment Fix */
    .about-text h2{
        font-size: 32px;
        line-height: 1.3;
        text-align: center;
    }

    /* Sub heading */
    .about-text h3{
        text-align: center;
        font-size: 20px;
    }

    /* Paragraph alignment */
    .about-text p,
    .about-text ul li{
        text-align: justify;
        font-size: 16px;
    }

    /* Image Section Clean Layout */
    .about-images{
        flex-direction: column;
        position: relative;
        width: 100%;
        gap: 20px;
        align-items: center;
    }

    .about-images .main-img{
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
    }

    /* Overlay image */
    .about-images .overlay-img{
        position: relative;
        bottom: 40px;
        right: 0;
        width: 80%;
        margin: 0 auto;
        border-radius: 14px;
    }
}


/* ================= SMALL MOBILE ================= */
@media (max-width: 576px){

    .about-text h2{
        font-size: 28px;
    }

    .about-text h3{
        font-size: 18px;
    }

    .about-images .overlay-img{
        width: 90%;
    }

}

/* ================= DIRECTORS SECTION ================= */
.directors-section {
    padding: 80px 0;
    background: #fcf6c6;
    font-family: 'Poppins', sans-serif;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header .bg-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 100px;
    font-weight: 1000;
    color: transparent;
    -webkit-text-stroke: 1px rgba(190, 19, 19, 0.18);
    top: -35px;
    z-index: 0;
    white-space: nowrap;
}

.section-header h2 {
    font-size: 36px;
    color: #be1313;
    font-weight: 700;
    margin-bottom: 10px;
}



/* Flex Row for Cards */
.directors-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap; /* all cards stay in a single row */
    overflow-x: auto; /* horizontal scroll on small screens */
    padding-bottom: 10px;
}

/* Card */
.director-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    flex: 0 0 200px; /* fixed width for all cards */
    height: 150px; /* fixed height for all cards */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.director-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* Name */
.director-card h3 {
    font-size: 18px;
    color: #be1313;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Role */
.director-card span {
    font-size: 14px;
    color: #0077b6;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .directors-grid {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .directors-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
    }

    .section-header .bg-text {
        font-size: 45px;
        top: -10px;
    }
}

/* ================= TABLET VIEW ================= */
@media (max-width: 992px) {

  .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* MAIN TITLE FIRST */
  .section-header h2{
    order: 1;
    font-size: 28px;
    position: relative;
    z-index: 2;
    margin-bottom: 2px;
  }

  /* BIG BACKGROUND TEXT BELOW */
  .section-header .bg-text{
    order: 2;
    position: static;
    transform: none;
    font-size: 60px;
    margin-top: 0;
    -webkit-text-stroke: 1px rgba(190, 19, 19, 0.18);
  }

  /* Carousel Row */
  .directors-grid{
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
  }

  .directors-grid::-webkit-scrollbar{
    display: none;
  }

  .director-card{
    flex: 0 0 220px;
    scroll-snap-align: center;
  }

}


/* ================= MOBILE VIEW ================= */
@media (max-width: 576px) {

  /* MAIN TITLE */
  .section-header h2{
    order:1;
    font-size:22px;
    margin-bottom:-8px;
  }

  /* BIG TEXT BELOW */
  .section-header .bg-text{
    order:2;
    font-size:40px;
    margin-top:0;
  }

  /* Cards Carousel */
  .director-card{
    flex: 0 0 200px;
    height: 140px;
    padding: 20px;
  }

  .director-card h3{
    font-size: 16px;
  }

  .director-card span{
    font-size: 13px;
  }

}

/* ================= MISSION & VISION SECTION ================= */

.mission-vision {
  padding: 90px 0;
  background: #ffffff;
}

/* ================= CARD WRAPPER ================= */

.mv-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ================= CARD ================= */

.mv-card {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: 430px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

/* Background Images */

.mission-card {
  background: url("../images/mission.jpg") center/cover no-repeat;
}

.vision-card {
  background: url("../images/vision.jpg") center/cover no-repeat;
}

/* ================= DARK OVERLAY ================= */

.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

/* ================= CONTENT ================= */

.mv-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: #ffffff;
  max-width: 80%;
}

.mv-content h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mv-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-align: justify;
}

/* ================= HOVER EFFECT ================= */

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ================= TABLET ================= */

@media (max-width: 992px) {

  .mission-vision{
    padding: 80px 30px;   /* left & right gap */
  }

  .mv-cards{
    gap: 25px;
  }

  .mv-card {
    height: 400px;
    max-width: 100%;
  }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .mission-vision{
    padding: 70px 18px;   /* left & right gap */
  }

  .mv-card {
    height: auto;
    min-height: 350px;
    max-width: 100%;
  }

  .mv-content {
    padding: 25px;
  }

  .mv-content h3 {
    font-size: 24px;
  }

  .mv-content p {
    font-size: 14px;
  }

}

/* ================= CORE VALUES - UNIQUE DESIGN ================= */
/* ================= CORE VALUES (WHY-CHOOSE STYLE) ================= */
.core-values-choose{
  padding:120px 0;
  background:linear-gradient(to bottom,#f8fbff 0%,#eef4ff 100%);
  position:relative;
  overflow:hidden;
}

/* ================= PATTERN BACKGROUND ================= */
.core-values-choose::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(13,92,170,0.10) 2px, transparent 2px),
    radial-gradient(circle at 80% 60%, rgba(13,92,170,0.10) 2px, transparent 2px);
  background-size:180px 180px;
  opacity:.6;
  pointer-events:none;
  z-index:0;
}

/* ================= CIRCLE LAND SHAPES (DESKTOP ONLY) ================= */

/* TOP CIRCLE */
.core-values-choose .shape-top{
  position:absolute;
  top:-160px;
  left:-10%;
  width:120%;
  height:480px;
  background:#fff7c5;
  border-radius:0 0 50% 50%;
  z-index:0;
}

/* BOTTOM CIRCLE */
.core-values-choose::after{
  content:"";
  position:absolute;
  bottom:-160px;
  right:-10%;
  width:120%;
  height:280px;
  background:#fff7c5;
  border-radius:50% 50% 0 0;
  z-index:0;
}

.core-values-choose>.container{
  position:relative;
  z-index:2;
}

/* ================= HEADER ================= */
.cvc-header{
  text-align:center;
  margin-bottom:50px;
  position:relative;
}

.cvc-header .bg-text{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  font-size:100px;
  font-weight:1000;
  color:transparent;
  -webkit-text-stroke:1px rgba(190,19,19,.18);
  top:-35px;
  z-index:0;
  white-space:nowrap;
}

.cvc-header h2{
  font-size:36px;
  color:#be1313;
  font-weight:700;
  margin-bottom:10px;
}

/* ================= QUOTES ================= */
.cvc-quote{
  font-size:80px;
  font-weight:900;
  color:rgba(13,92,170,.25);
  position:absolute;
  top:-35px;
}

.cvc-quote-left{left:0;}
.cvc-quote-right{right:0;}

/* ================= LAYOUT ================= */
.cvc-wrap{
  display:grid;
  grid-template-columns:1fr 420px 1fr;
  gap:40px;
  align-items:center;
}

.cvc-col{
  display:flex;
  flex-direction:column;
  gap:28px;
}

/* ================= CARD ================= */
.cvc-card{
  background:#8c0001;
  color:#fff;
  border-radius:16px;
  padding:30px 26px;
  box-shadow:0 12px 28px rgba(0,0,0,.12);
  border:1px solid rgba(255,255,255,.15);
  transition:.3s;
  text-align:center;
  position:relative;
}

.cvc-card h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:12px;
}

.cvc-card p{
  font-size:15px;
  line-height:1.7;
}

.cvc-no{
  position:absolute;
  bottom:14px;
  right:18px;
  font-size:34px;
  font-weight:900;
  color:rgba(255,255,255,.25);
}

.cvc-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}

/* ================= CENTER IMAGE ================= */
.cvc-center{
  display:flex;
  justify-content:center;
}

.cvc-person{
  width:100%;
  max-width:420px;
  filter:drop-shadow(0 25px 45px rgba(0,0,0,.65));
}

/* ================= TABLET & MOBILE ================= */
@media (max-width:992px){

  /* HIDE CIRCLES ONLY ON MOBILE/TABLET */
  .core-values-choose::after,
  .core-values-choose .shape-top{
    display:none;
  }

  .cvc-header{
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .cvc-header h2{
    order:1;
    font-size:28px;
  }

  .cvc-header .bg-text{
    position:static;
    transform:none;
    font-size:60px;
    order:2;
  }

  .cvc-quote{
    display:none;
  }

  /* STACK LAYOUT */
  .cvc-wrap{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
  }

  /* SHOW ALL 4 BOXES FIRST */
  .cvc-col{
    width:100%;
    max-width:500px;
  }

  .cvc-col:first-child{order:1;}
  .cvc-col:last-child{order:2;}

  /* IMAGE LAST */
  .cvc-center{
    order:3;
    margin-top:10px;
  }

  .cvc-person{
    max-width:260px;
  }
}


/* ================= MOBILE ================= */
@media (max-width:576px){

  /* MOBILE BACKGROUND IMAGE */
  .core-values-choose{
    background-image:url("../images/Background.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
  }

  .cvc-header h2{
    font-size:22px;
    margin-bottom:-8px;   /* reduce gap */
  }

  .cvc-header .bg-text{
    font-size:42px;
    margin-top:0;        /* remove extra space */
    line-height:1;
  }

  .cvc-card{
    padding:22px;
  }

  .cvc-person{
    max-width:200px;
  }

}






/* ================= POPUP OVERLAY ================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 9999;
  overflow: hidden;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* ================= POPUP BOX ================= */
.popup-box {
  background: #fff;
  width: 360px;              /* before 400 */
  max-width: 92%;
  padding: 18px;             /* before 25 */
  border-radius: 12px;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  max-height: 88vh;          /* important */
  overflow-y: auto;          /* if content more */
}

.popup-box h2 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
}

.month-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.month-navigation h3 {
  font-size: 15px;
}

.month-navigation button {
  background: #d4af37;
  border: none;
  color: #fff;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

/* ================= CALENDAR ================= */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;                  /* before 6 */
}

.calendar-grid div {
  padding: 6px 0;            /* before 10 */
  cursor: pointer;
  border-radius: 6px;
  font-size: 12px;           /* before 14 */
  text-align: center;
  transition: 0.2s;
}

.calendar-grid div:hover {
  background: #f0f0f0;
}

.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.selected {
  background: #d4af37;
  color: #fff;
}

.selected-info {
  margin-top: 8px;
  font-size: 13px;
  text-align: left;
  line-height: 1.5;
}

/* ================= FORM FIELDS ================= */
.input-field {
  width: 100%;
  padding: 8px 10px;         /* before 10 */
  margin-top: 8px;           /* before 12 */
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 13px;
  box-sizing: border-box;
}

.book-btn {
  width: 100%;
  margin-top: 10px;          /* before 15 */
  padding: 10px;
  background: #d4af37;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

.book-btn:hover {
  background: #b8922e;
}

#formMessage {
  margin-top: 8px;
  font-size: 13px;
  min-height: 16px;
  text-align: center;
}

/* ================= TABLET / SMALL LAPTOP ================= */
@media (max-width: 992px) {
  .popup-box {
    width: 340px;
    padding: 16px;
    max-height: 86vh;
  }

  .popup-box h2 {
    font-size: 17px;
  }

  .calendar-grid div {
    padding: 5px 0;
    font-size: 11px;
  }

  .input-field {
    padding: 8px;
    font-size: 13px;
    margin-top: 7px;
  }

  .book-btn {
    padding: 9px;
    font-size: 14px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .popup-box {
    width: 88%;
    padding: 10px;
    max-height: 82vh;        /* decrease height */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
  }

  .popup-box h2 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .close-btn {
    top: 6px;
    right: 10px;
    font-size: 18px;
  }

  .month-navigation {
    margin-bottom: 8px;
  }

  .month-navigation h3 {
    font-size: 13px;
  }

  .month-navigation button {
    padding: 3px 7px;
    font-size: 12px;
  }

  .calendar-grid {
    gap: 2px;
  }

  .calendar-grid div {
    padding: 3px 0;
    font-size: 10px;
  }

  .selected-info {
    font-size: 11px;
    margin-top: 6px;
  }

  .input-field {
    padding: 6px 8px;
    font-size: 12px;
    margin-top: 6px;
  }

  .book-btn {
    padding: 8px;
    font-size: 13px;
    margin-top: 8px;
  }

  #formMessage {
    font-size: 12px;
    margin-top: 6px;
  }
}

  



/* ================= FOOTER ================= */

.footer {
  background: #292929;
  color: #ffffff;
  padding-top: 55px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px 45px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff7c5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* 🔹 FIX ADDED HERE */
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
  text-decoration: none;   /* Removes underline */
}

.footer-col ul li a:hover {
  color: #fff7c5;
  padding-left: 4px;
}

/* Logo */
.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

/* About text */
.footer-about {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  font-family: justify-content;
}

/* Business info */
.footer-info li {
  opacity: 0.9;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 18px 10px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.15);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}





/* ================= VELAVAN FLOATING BUTTONS + CHATBOT ================= */

/* Dialogflow host */
#vpDfMessenger {
  --df-messenger-button-titlebar-color: #8c0000;
  --df-messenger-chat-background-color: #ffffff;
  --df-messenger-font-color: #222;
  --df-messenger-send-icon: #8c0000;
  --df-messenger-chat-icon: none;

  position: fixed !important;
  right: 20px !important;
  bottom: 95px !important;
  z-index: 99999 !important;
}

/* COMPLETELY hide Dialogflow default launcher */
#vpDfMessenger::part(chat-button) {
  display: none !important;
}

df-messenger-chat-bubble {
  display: none !important;
}

df-messenger::part(chat-button) {
  display: none !important;
}

/* Desktop buttons */
.vp-desktop-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 100000;
}

.vp-action-btn {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  transition: transform 0.25s ease;
}

.vp-action-btn:hover {
  transform: scale(1.08);
}

.vp-whatsapp { 
  background: #25D366; 
}

.vp-call { 
  background: #0d6efd; 
}

.vp-chat { 
  background: #b30000; 
}

.vp-chat i,
.vp-mobile-bar-item i {
  pointer-events: none;
}

/* Mobile bottom bar hidden in desktop */
.vp-mobile-bottom-bar {
  display: none;
}

#vpChatToggleBtn,
#vpMobileChatToggleBtn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ================= MOBILE + TABLET ================= */

@media (max-width: 1024px) {

  /* Hide desktop floating buttons */
  .vp-desktop-actions {
    display: none !important;
  }

  /* Mobile bottom bar */
  .vp-mobile-bottom-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    width: calc(100% - 24px);
    max-width: 360px;
    background: #c61f26;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
    z-index: 100002;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 4px 8px calc(4px + env(safe-area-inset-bottom));
    border-radius: 16px;
  }

  .vp-mobile-bar-item {
    width: 52px;
    height: 52px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
  }

  .vp-mobile-chat {
    background: #c61f26;
    
  }

  /* Dialogflow chat position in mobile */
  #vpDfMessenger {
    right: 10px !important;
    bottom: 125px !important;
    z-index: 99999 !important;
  }
}

/* Hide Dialogflow default launcher completely */
df-messenger::part(chat-button) {
  display: none !important;
}

df-messenger-chat-bubble {
  display: none !important;
}

df-messenger-button {
  display: none !important;
}

/* Prevent any default bubble appearing */
df-messenger {
  --df-messenger-chat-icon: none !important;
}
.mobile-only-social {
  display: none;
}

@media (max-width: 576px) {
  .mobile-only-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
  }

  .mobile-only-social a {
    width: 38px;
    height: 38px;
    background: #8c0001;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s ease;
  }

  .mobile-only-social a:hover {
    background: #c62828;
    transform: scale(1.08);
  }
}
