
/* ---- CSS VARIABLES ---- */
:root {
  --navy: #1a2e6e;
  --navy-dark: #111e4a;
  --navy-light: #2a3f8f;
  --green: #7ab628;
  --green-dark: #5e9010;
  --green-light: #9dd438;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-100: #f2f4f8;
  --gray-200: #e5e9f0;
  --gray-500: #8899aa;
  --gray-700: #445566;
  --gray-900: #1a2233;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(26,46,110,0.10);
  --shadow-lg: 0 16px 50px rgba(26,46,110,0.16);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- GLOBAL ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; 
overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection { background: var(--green); color: var(--white); }

img { max-width: 100%; height: auto; }

a { text-decoration: none; transition: var(--transition); }

.section-pad { padding: 90px 0; }

/* ---- SECTION LABELS & HEADINGS ---- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green);
  background: rgba(122,182,40,0.1);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-label.light {
  color: var(--green-light);
  background: rgba(122,182,40,0.15);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.heading-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  border-radius: 4px;
  margin-bottom: 20px;
}
.heading-line.mx-auto { margin-left: auto; margin-right: auto; }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn-primary-brand {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary-brand::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--green);
  transition: var(--transition);
  z-index: -1;
}
.btn-primary-brand:hover::after { left: 0; }
.btn-primary-brand span, .btn-primary-brand i { position: relative; z-index: 1; }
.btn-primary-brand:hover {
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(122,182,40,0.35);
}

.btn-outline-brand {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
}
.btn-outline-brand:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}






/* ---- TOP HEADER ---- */
#top-header {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--green);
}
#top-header a, #top-header span {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  transition: var(--transition);
}
#top-header a:hover { color: var(--green); }
.top-contacts { gap: 16px; }
.top-contacts i { color: var(--green); }

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.7rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--green);
  transform: scale(1.15);
  color: var(--white)!important;
}

/* Language Button */
.lang-btn {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 50px;
  transition: var(--transition);
}
.lang-btn:hover { background: var(--green); color: var(--white); }
.lang-dropdown {
  min-width: 160px;
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  max-height: 300px;
  overflow-y: auto;
  background: rgb(17 30 74 / 70%);
  z-index: 99999;
}
.lang-item { font-size: 0.85rem; transition: var(--transition); }
.lang-item:hover { background: var(--green); color: var(--white)!important; }
.lang-item.active { background: var(--navy); color: var(--white); }

/* ---- NAVBAR ---- */
#mainNav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,46,110,0.1);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(26,46,110,0.15);
  padding: 8px 0;
}
#navLogo {
  height: 52px;
  transition: var(--transition);
}
#mainNav.scrolled #navLogo { height: 42px; }

.navbar-nav .nav-link {
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px;
  width: 0; height: 2px;
  background: var(--green);
  transition: var(--transition);
  border-radius: 2px;
  border: 0px;
}
li.nav-item.dropdown:after{
  content: "";
    position: absolute;
    border: 0.4rem solid transparent;
    border-top-color: #111e4a;
    top: 17px;
    right: -2px;       
}
li.nav-item.dropdown:hover:after{
    border-top-color: #7ab628;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 28px); }
.navbar-nav .nav-link:hover { color: var(--green) !important; }

.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--green);
  padding: 8px;
  min-width: 220px;
}
.navbar-nav .dropdown-item {
  font-size: 0.87rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 14px;
  transition: var(--transition);
}
.navbar-nav .dropdown-item:hover {
  background: var(--navy);
  color: var(--white);
  padding-left: 20px;
}

.btn-hero-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-hero-primary:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-hero-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
}

.navbar-toggler {
  border-color: var(--navy);
  padding: 6px 10px;
}
.navbar-toggler-icon { filter: invert(13%) sepia(65%) saturate(1500%) hue-rotate(205deg); }























/* ---- ENQUIRY SIDEBAR ---- */
.enquiry-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.enquiry-tab {
  background: var(--green);
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 20px 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: -4px 4px 20px rgba(0,0,0,0.2);
}
.enquiry-tab:hover { background: var(--navy); }
.enquiry-tab i { font-size: 1rem; }

.enquiry-form-panel {
  background: var(--white);
  width: 0px;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.enquiry-form-panel.open { max-height: 600px; width: 300px; }
.eq-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.eq-header h6 { margin: 0; font-size: 0.9rem; font-weight: 800; }
.eq-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 6px;
  transition: var(--transition);
}
.eq-close:hover { color: var(--white); }
#quickEnquiryForm {
  padding: 18px;
  overflow-y: auto;
  max-height: 480px;
}
#quickEnquiryForm .form-control,
#quickEnquiryForm .form-select {
  font-size: 0.85rem;
  padding: 9px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  transition: var(--transition);
}
#quickEnquiryForm .form-control:focus,
#quickEnquiryForm .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(122,182,40,0.15);
}

/* ---- GO TO TOP ---- */
.go-top-btn {
  position: fixed;
  bottom: 120px;
  right: 24px;
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.go-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top-btn:hover { background: var(--green); transform: translateY(-3px); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed;
    bottom: 23px;
    right: 88px;
    width: 50px; height: 50px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9000;
  transition: var(--transition);
  animation: pulse-wa 3s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

/* ---- BROCHURE FLOAT ---- */
.brochure-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px; height: 50px;
  background: #e74c3c;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(231,76,60,0.4);
  z-index: 9000;
  transition: var(--transition);
}
.brochure-float:hover { transform: scale(1.1) rotate(5deg); color: var(--white); }















/* footer CSS */


/* ---- FOOTER ---- */
#footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 40px; }
/* .footer-logo { height: 52px; margin-bottom: 18px; filter: brightness(1.2); } */
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 320px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }

.footer-heading {
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--green);
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--green); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--green); }

.footer-cert { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-badge {
  background: rgba(122,182,40,0.15);
  border: 1px solid rgba(122,182,40,0.3);
  color: var(--green-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.cert-badge i { margin-right: 4px; }

.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--green); }








/* ---- SCROLL REVEAL ANIMATIONS ---- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1; transform: translate(0,0); }

.slide_position{
  margin-top: 10rem;
  padding-left: 2rem;
}
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}


  .translate-box{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#2e3960;
    border:0.5px solid rgba(255,255,255,0.8);
    border-radius:50px;
    padding:8px 14px;
}

.globe-icon{
    width:20px;
    height:20px;
    color:rgba(255,255,255,0.8);
}

.translate-box select{
    border:none;
    outline:none;
    background:#2e3960;
    font-size:14px;
    cursor:pointer;
    color: rgba(255,255,255,0.8);
}

body {
    top: 0 !important;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.skiptranslate {
    display: none !important;
}
 .navbar-brand.position-absolute{
    position: absolute;
    top: 0;
    left: 2rem;
    bottom: 0;
    right: 0;
    width: 11rem;
    height: 6rem;
    z-index: 99999999999999999;
    /* border: 5px solid red; */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 0.5rem;
    /* padding: 0; */
    background-color: #fff;
  }
  .navbar-brand.position-absolute img{
    width: 100%!important;
    height: 100%!important;
    border-radius: 0.5rem;
  }
#mainNav.scrolled .navbar-brand.position-absolute{
    width: 7rem;
    height: 4rem;
}
.brands-track .brand-logo img{
  width: 100%;
  height: 100%;
}

.footer-logo-img{
  width: 11rem;
    height: 6rem;
    padding: 0.5rem;
    background: #fff;
    border-radius: 0.3rem;
}
.footer-logo-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media only screen and (max-width:767px){
.navbar-nav.ms-auto.align-items-lg-center{
  margin-top: 4rem;
}
}