/* ================= TOP BAR ================= */
.ca-header-wrapper {
  position: relative;
}

.top-right {
  margin-right: 40px;  
}


.ca-topbar {
  background: #ffffff;
  border-bottom: none; /* REMOVE GREY LINE */
  height: 42px;
}
                                                                                                                                                                                                                                                                                                                                                                              
.ca-topbar-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 22px;
  height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ca-topbar a {
  color: #1f1f1f;
  text-decoration: none;
  margin-left: 12px;
}
.ca-topbar a:hover {
  color: #0b5e3c;
}

/* ================= HEADER / NAVBAR ================= */
.ca-header {
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    height: 42px;

    background: rgba(0, 0, 0, 0.48); /* SOLID DARK GLASS */
    backdrop-filter: none;          /* IMPORTANT */
    -webkit-backdrop-filter: none;
    z-index: 1000;
}

.ca-header-inner {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/* ================= LOGO ================= */
.ca-logo-wrap {
  position: absolute;
  left: 50%;
  top: -44px;          /* overlap header + banner */
  transform: translateX(-50%);
  z-index: 1500;
}


.ca-logo-wrap img {
  height: 120px;
  background: transparent;
}

/* ================= MENUS ================= */
.ca-menu {
  list-style: none;
  display: flex;
  gap: 70px;
  height: 100%;
  align-items: center;
}

.ca-menu-left {
  margin-left: 35px;   /* increase = move RIGHT */
}

.ca-menu-right {
  margin-right: 69px;  /* increase = move LEFT */
}

.ca-menu li {
  margin: 0;
  padding: 0;
}

.ca-menu a {
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 42x;
  position: relative;
  transition: color 0.25s ease;
  text-decoration: none;

}
.ca-menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 0;
  line-height: 42px;  /* MATCH HEADER HEIGHT */
  position: relative;
  display: inline-block;  /* ensures line-height works */
}


.ca-menu li:hover > a,
.ca-menu a.active {
  color: #f6c400;
}



/* ===== HOVER UNDERLINE EFFECT ===== */
.ca-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #f6c400;
  transition: width 0.3s ease;
}

.ca-menu a:hover {
 color: #f6c400;
}
.ca-menu a:hover::after {
  width: 100%;
}

/* ACTIVE LINK */
.ca-menu a.active {
  color: #f6c400;
}
.ca-menu a.active::after {
  width: 100%;
}
.ca-menu li.active > a {
  color: #f6c400; /* parent menu yellow */
}

.ca-menu li.active > a::after {
  width: 100%; /* underline for parent menu */
}

/* Nested dropdowns */
.dropdown-menu .dropdown {
  position: relative;
}

.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%; /* opens to the right */
  display: none;
}

.dropdown-menu .dropdown:hover > .dropdown-menu {
  display: block;
}

/* Active link for nested dropdowns */
.dropdown.active > a {
  color: #f6c400;
}


/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
 padding: 6px 0;

  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 30px rgba(0,0,0,0.55);

  padding: 10px 0;
  display: none;
  z-index: 999;

}


.dropdown-menu li {
  list-style: none;
}
.dropdown-menu li a {
  padding: 12px 20px;
  color: #ffffff;
  font-size: 14px;
  line-height: normal;
}

.dropdown-menu li a:hover {
  background: rgba(246,196,0,0.18);
  color: #f6c400;
}

/* Open ONLY direct dropdown */
.dropdown:hover > .dropdown-menu {
  display: block;
}


/* ================= RESPONSIVE LOGO ================= */

/* ================= MOBILE HEADER ================= */
.ca-mobile-header {
  display: none;
}

/* ================= MOBILE / TABLET ONLY ================= */
@media (max-width: 991px) {

  .ca-topbar {
    background: #fff;
    padding: 6px 0;
    height: auto; 
  }

  .ca-topbar-inner {
    padding: 0 12px;
    font-size: 12.5px;
    height: auto; 
    display: flex;
    flex-direction: column;   /*  KEY: stack vertically */
    align-items: flex-start;
    gap: 2px;                 /* space between text & icons */
  }

  /* TEXT */
  .ca-topbar-inner > div:first-child {
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* ICON ROW — BELOW TEXT */
.top-right {
  display: flex;
  gap: 2px;
  padding-left: 0;
  margin-left: -2px;   /* optional fine-tune */
}


  .top-right span {
    display: none;
  }

 .top-right a {
  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f3f3f3;
  border-radius: 4px;
  color: #000;

  font-size: 14px;
  line-height: 1;     
  padding: 0;         /*  removes extra space */
}
  .top-right i {
  line-height: 1;
  display: block;     /*  removes inline spacing */
}
.ca-topbar-inner {
  gap: 6px;  
}

  .top-right a:hover {
    background: #e6e6e6;
  }


  /* ================= HEADER ================= */

  /* Hide desktop items */
  .ca-menu,
  .ca-logo-wrap {
    display: none !important;
  }

  /* Header must be WHITE (not black) */
  .ca-header {
    position: relative !important;
    top: 0 !important;
    height: 90px;
    background: #fff;   
    z-index: 900;
    border-bottom: 1px solid #eee; /* subtle separation like CA Parivaar */
  }

  .ca-header-inner {
    height: 90px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  /* Mobile header visible */
  .ca-mobile-header {
    display: flex;
    align-items: center;
    width: 100%;
  }

  /* Hamburger left */
.ca-mobile-toggle {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

  .ca-mobile-toggle i {
    font-size: 42px;
    color: #000; 
  }

  /* Logo center */
.ca-mobile-logo {
  position: absolute;
  right: 15px;
  top: 0;
  margin-top: -36px;   /*  pulls logo UP to icon line */
}

  .ca-mobile-logo img {
    height: 130px;
    width: auto;
  }
}

/* ===============================
   MOBILE NAV OVERLAY (MOBILE ONLY)
================================ */
@media (max-width: 991px) {

  .ca-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
  }

  .ca-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .ca-nav-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;

    background-image:
      linear-gradient(rgba(11, 94, 43, 0.18), rgba(11, 94, 43, 0.18)),
      url("../images/menu-bg.jpg");

    background-size: cover;
    background-position: center;

    z-index: 10000;
    transition: left 0.35s ease;
    overflow-y: auto;
  }

  .ca-nav-wrapper.active {
    left: 0;
  }
}

/* YELLOW TOP BAR */
.ca-mobile-menu-header {
  background: #ffd400;
  color: #000;
  padding: 14px 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CLOSE BUTTON */
.ca-menu-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #000;
}

/* MENU LIST */
.ca-mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* MENU ITEMS */
.ca-mobile-menu li a {
  font-family: 'Roboto', sans-serif;
  display: block;
  letter-spacing: 0.2px;
  padding: 16px;
  color:#ffd400;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

.ca-mobile-menu li a:hover {
  background: rgba(255,255,255,0.08);
}

/* HIDE MOBILE ICON ON DESKTOP */
@media (min-width: 992px) {
  .ca-mobile-toggle {
    display: none;
  }
}


/* HIDE MOBILE NAV & OVERLAY ON DESKTOP */
@media (min-width: 992px) {
  .ca-nav-wrapper,
  .ca-overlay {
    display: none;
  }
}

/* ===============================
   CA PARIVAAR STYLE SLIDE SUBMENU
   (MOBILE ONLY)
================================ */
@media (max-width: 991px) {

  .ca-nav-wrapper {
    overflow: hidden;
  }
/* ===== CA PARIVAAR FINAL FIX ===== */

/* Header default (MAIN MENU) */
.ca-mobile-menu-header {
  background: #ffd400 ;
  color: #fff;
}

/* Hide back button in main menu */
.ca-menu-back {
  display: none;
}

/* Show back button only in submenu */
.ca-nav-wrapper.show-submenu .ca-menu-back {
  display: inline-flex;
}

/* Yellow header only in submenu */
.ca-nav-wrapper.show-submenu .ca-mobile-menu-header {
  background: #ffd400;
  color: #fff;
}

/* Hide submenus by default */
.ca-mobile-menu.submenu {
  display: none;
}

/* Show active submenu */
.ca-mobile-menu.submenu.active {
  display: block;
}

/* Hide main menu when submenu opens */
.ca-nav-wrapper.show-submenu .main-menu {
  display: none;
}


 
  .arrow {
    float: right;
    font-size: 18px;
  }
}
/* ================= FOOTER ================= */
.ca-footer {
  background: url("../images/footer-bg.jpg") center center / cover no-repeat;
}

.ca-footer-overlay {
  background: linear-gradient(
    rgba(0, 86, 38, 0.15),
    rgba(0, 86, 38, 0.25)
  );
  padding: 50px 0 35px;
}
.ca-footer-container {
  width: 92%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr 1.3fr;
  column-gap: 55px;
}

.ca-footer-col h4 {
  color: #f6c400;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 210, 0, 0.6);
}

.ca-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ca-footer-col ul li {
  margin-bottom: 10px;
}

.ca-footer-col ul li a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
}

.ca-footer-col ul li a:hover {
  color: #f6c400;
}

.ca-footer-col p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 10px;
}

.ca-footer-col i {
  color: #f6c400;
  font-size: 14px;
  margin-right: 8px;
  vertical-align: middle;
}

.ca-footer-col .direction a {
  color: #f6c400;
  font-weight: 500;
  text-decoration: none;
}

.ca-footer-col .direction a:hover {
  text-decoration: underline;
}

/* ================= BOTTOM STRIP ================= */
.ca-footer-bottom {
  background: #f6c400;
  padding: 14px 0;
}

.ca-footer-bottom-inner {
  width: 92%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .ca-footer-container {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media (max-width: 576px) {
  .ca-footer-container {
    grid-template-columns: 1fr;
  }
  .ca-footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ================= SCROLL TO TOP ================= */
#scrollTop {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  background: #ffd200;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

#scrollTop.show {
  opacity: 1;
  visibility: visible;
}

#scrollTop:hover {
  background: #e6be00;
}

#scrollTop i {
  animation: scrollUp 1.4s infinite;
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

/* ===============================
   CA PARIWAR – CLUB PROXIMITY
   =============================== */

.ca-proximity {
  background: #f6f6f6;
  padding: 70px 0;
}

.ca-proximity-inner {
  width: 92%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 50px;
  align-items: center;
}

.ca-proximity-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1f1f1f;
}

.ca-proximity-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 420px;
}

.ca-proximity-view {
  display: inline-block;
  margin-top: 20px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.ca-proximity-view::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ffd200;
  display: block;
  margin-top: 6px;
}

/* IMAGES */
.ca-proximity-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ca-proximity-card {
  position: relative;
  border: 3px solid #ffd200;
  overflow: hidden;
}

.ca-proximity-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.ca-proximity-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ca-proximity-inner {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .ca-proximity-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ca-proximity-images {
    grid-template-columns: 1fr;
  }
}

