
:root {
  --navy: #FFFFFF;
  --navy-mid: #F5F5F5;
  --navy-light: #EBEBEB;
  --gold:#1A73E8;
  --gold-light:#1A73E8;
  --gold-pale:#1A73E8;
  --white: #1A1A1A;
  --off-white: #333333;
  --text-mid: #555555;
  --text-light: #333333;
  --shadow: rgba(0,0,0,0.12);
  --card-bg: rgba(255,255,255,0.95);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #FFFFFF;
  color: #1A1A1A;
  overflow-x: hidden;
}
.mobile{font-size:18px!important;}
/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TOP BAR ── */
.top-bar1 {
  background: var(--gold);
  border-top: 1px solid #000;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 40px;
  font-size: 15px;
  font-weight: 600; height:45px;
  letter-spacing: .03em;
  position: relative;
  z-index: 1001;
}
.top-bar1 a { color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: opacity .2s; }
.top-bar1 a:hover { opacity: .75; }
.top-bar {
  background: var(--gold);
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 40px;
  font-size: 15px;
  font-weight: 600; height:45px;
  letter-spacing: .03em;
  position: relative;
  z-index: 1001;
}
.top-bar a { color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: opacity .2s; }
.top-bar a:hover { opacity: .75; }
.top-bar-right { display: flex; gap: 18px; }
.tb-btn {
  background: var(--navy);
  color: var(--gold) !important;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .2s, transform .2s !important;
}
.tb-btn:hover { background: #0B1C3A !important; transform: scale(1.04); opacity: 1 !important; }
.tb-btn.wa { background: #25D366 !important; color: #fff !important; }
.tb-btn.wa:hover { background: #1da851 !important; opacity: 1 !important; }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 999999999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(204,17,17,0.2);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.logo-text { line-height: 1.15; }
.logo-text strong { display: block;  font-size: 18px; color: #FFFFFF; }
.logo-text span { font-size: 11px; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; }

nav { display: flex; gap: 4px; }
nav a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  position: relative;
  white-space: nowrap;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: left .25s, right .25s;
}
nav a:hover, nav a.active { color: #000000; }
nav a:hover::after, nav a.active::after { left: 13px; right: 13px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFFFFF;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 22px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #1A1A1A; background: none; text-decoration: none; font-weight: 600; padding: 8px 0; border-bottom: 1px solid rgba(204,17,17,0.15); width: 80%; text-align: center; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close { position: absolute; top: 24px; right: 28px; font-size: 32px; cursor: pointer; color: var(--gold); background: none; border: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(11,28,58,0.95) 40%, rgba(11,28,58,0.7) 100%),
    url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(204,17,17,0.08) 0%, transparent 70%);
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }
.slide-1 { background-image: url('../images/banner.webp'); }
.slide-2 { background-image:  url('../images/banner2.webp'); }
.slide-3 { background-image:  url('../images/banner3.webp'); }
.slide-4 { background-image:  url('../images/banner4.webp'); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 30px 0px 40px 40px;
  animation: heroIn 1s ease both;
}
@keyframes heroIn { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a73e873;
  border: 1px solid #1a73e8;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  
  font-size: clamp(30px, 5vw, 45px);
  line-height: 1.12;
  margin-bottom: 10px;
  color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero h2 {
  
  font-size: clamp(20px, 5vw, 25px);
  line-height: 1.16;
  margin-bottom: 10px; font-weight:normal;
  color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 10px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; padding-bottom: 12px; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #FFFFFF;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(204,17,17,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(204,17,17,0.45); }
.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #000; background-color:#FFFFFF;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.2); color: #FFFFFF; border-color: #FFFFFF; }

.hero-dots { position: absolute; bottom: 30px; left: 80px; display: flex; gap: 10px; z-index: 3; }
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.hero-dot.active { background: #000; transform: scale(1.3); }

.hero-stats {
  position: absolute;
  right: 60px; bottom: 60px;
  display: flex; gap: 28px;
  z-index: 3;
}
.h-stat {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 16px 22px;
  text-align: center;
}
.h-stat strong { display: block; font-size: 28px; color: #FFFFFF; }
.h-stat span { font-size: 12px; color: rgba(255,255,255,0.7); }


.container-fluid{
    width:100%;
    padding:0 40px;
    margin:auto;
}

@media(max-width:992px){
.container-fluid{
    padding:0 25px;
}
}

@media(max-width:768px){
.container-fluid{
    padding:0 18px;
}
}

@media(max-width:480px){
.container-fluid{
    padding:0 15px;
}
}
/* ── SECTION BASE ── */
section { padding: 40px 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.section-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  
  font-size: clamp(38px, 4vw, 44px);
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-sub { color: #555555; font-size: 16px; line-height: 1.7;  }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0;
  border-radius: 2px;
}

/* ── ABOUT ── */
.about-section { background: var(--navy-mid); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; }
.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; display: block; }
.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--gold);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
}
.about-img-badge span { font-size: 11px; font-weight: 500; display: block; }
.about-features { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.af-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444444;
}
.af-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ── SERVICES ── */
.services-section { background: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.service-card {
  background: #FFFFFF;
  border: 1px solid rgba(204,17,17,0.15);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  cursor: pointer;
  group: true;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(204,17,17,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.service-card-img {
  position: relative;
  overflow: hidden;
  height: 255px;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}
.service-card-body { padding: 20px; }
.service-card-icon { font-size: 28px; margin-bottom: 10px; }
.service-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #1A1A1A; }
.service-card-body p { font-size: 15px; color: #555555; line-height: 1.6; margin-bottom: 14px; }
.service-card-actions { display: flex; align-items: center; justify-content: space-between; }
.read-more {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.read-more:hover { gap: 9px; }
.wa-icon {
  width: 32px; height: 32px;
  background: #25D366;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: transform .2s;
}
.wa-icon:hover { transform: scale(1.1); }

/* ── WHY CHOOSE US ── */
.why-section {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(204,17,17,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
  align-items: center;
}
.why-points { display: grid; gap: 20px; margin-top: 30px; }
.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(204,17,17,0.1);
  background: #FFFFFF;
  transition: border-color .3s, background .3s, box-shadow .3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.why-point:hover { border-color: rgba(204,17,17,0.5); background: #FFF8F8; box-shadow: 0 8px 28px rgba(204,17,17,0.1); }
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(204,17,17,0.12), rgba(204,17,17,0.03));
  border: 1px solid rgba(204,17,17,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.why-point h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: #1A1A1A; }
.why-point p { font-size: 13px; color: #555555; line-height: 1.5; }
.why-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.why-visual img { width: 100%; height: 655px; object-fit: cover; display: block; border-radius: 20px; }
.why-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,28,58,0.5) 0%, transparent 60%);
  border-radius: 20px;
}

/* ── STATS ── */
.stats-section {
  background: linear-gradient(135deg, #1a73e8 0%, #0155c3 100%);
  border-top: none;
  border-bottom: none;
  padding: 20px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; text-align: center; }
.stat-item { position: relative; }
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}
.stat-item:last-child::after { display: none; }
.stat-num {
  
  font-size: 52px;
  color: #FFFFFF;
  line-height: 1;
  display: block;
}
.stat-plus { color: var(--gold-light); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 8px; font-weight: 500; }

/* ── EVENTS SECTION ── */
.events-section { background: var(--navy); }
.events-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn {
  padding: 9px 22px;
  border-radius: 24px;
  border: 1px solid rgba(204,17,17,0.3);
  color: #555555;
  background: none;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.events-gallery { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto; gap: 20px; }
.event-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.event-card:nth-child(1) { grid-row: span 2; }
.event-card img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 220px; transition: transform .5s; }
.event-card:nth-child(1) img { min-height: 460px; }
.event-card:hover img { transform: scale(1.06); }
.event-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s;
}
.event-card:hover .event-overlay { opacity: 1; }
.event-overlay h4 { font-size: 16px; color: var(--white); font-weight: 700; }
.event-overlay span { font-size: 12px; color: var(--gold); }

/* ── GALLERY ── */
.gallery-section { background: var(--navy-mid); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 50px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(11,28,58,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  font-size: 28px;
  color: var(--gold);
}
.gallery-item:hover .gallery-hover { opacity: 1; }

/* Mobile Fix */
@media (max-width: 576px) {

  .gallery-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Sab items same size */
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5){
    grid-column: unset !important;
    aspect-ratio: 16/10;
  }
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999999999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  animation: lbFadeIn .25s ease;
}
.lightbox-overlay.open { display: flex; }
@keyframes lbFadeIn { from { opacity:0; } to { opacity:1; } }
.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  animation: lbZoomIn .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes lbZoomIn { from { transform: scale(0.82); opacity:0; } to { transform: scale(1); opacity:1; } }
.lightbox-img-wrap img {
  display: block;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(204,17,17,0.9);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.lightbox-close:hover { background: #CC1111; transform: scale(1.12); }
.lightbox-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
  padding: 28px 22px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 14px 14px;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--navy); overflow: hidden; }
.testi-slider { position: relative; overflow: hidden; margin-top: 50px; }
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.testi-card {
  background: #FFFFFF;
  border: 1px solid rgba(204,17,17,0.15);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 32px;
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
  transition: border-color .3s, box-shadow .3s;
}
.testi-card:hover { border-color: rgba(204,17,17,0.4); box-shadow: 0 8px 32px rgba(204,17,17,0.1); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 3px; }
.testi-text { font-size: 15px; color: #444444; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0285fc, #0565e3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #FFFFFF;
  flex-shrink: 0;
}
.testi-author h5 { font-size: 15px; color: #1A1A1A; font-weight: 700; }
.testi-author span { font-size: 12px; color: #777777; }
.testi-nav { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid #1a73e8;
  background: #fff;
  color: #1a73e8;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s, color .2s;
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { background: #1a73e8; color: #fff; border-color: #1a73e8; }
.testi-dots { display: flex; gap: 8px; margin-left: 6px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(204,17,17,0.25);
  cursor: pointer;
  transition: background .3s, transform .3s;
  border: none;
}
.testi-dot.active { background: #CC1111; transform: scale(1.3); }
@media (max-width: 768px) {
  .testi-card { flex: 0 0 calc(100% - 0px); }
}
/* ── FAQ ── */
.faq-section { background: var(--navy-mid); }
.faq-list { margin-top: 10px; display: grid; gap: 14px; max-width: 1000px; }
.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(204,17,17,0.12);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: rgba(204,17,17,0.4); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #1A1A1A;
  gap: 16px;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(204,17,17,0.4);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 24px 20px; font-size: 14px; color: #555555; line-height: 1.7; }

/* ── CTA ── */
.cta-section {


  
    position: relative; z-index:999999;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, rgba(6, 17, 32, 0.98), rgba(6, 17, 32, 0.92) 46%, rgba(18, 59, 99, 0.88)), url(images/banner.webp) center / cover;

  
  text-align: center;
 
  
  padding: 100px 0;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9960C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 {
 
  font-size: clamp(30px,4vw,52px);
  margin-bottom: 14px;
  position: relative;
  color: #FFFFFF;
}
.cta-section p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 40px; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── PROCESS ── */
.process-section { background: var(--navy); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; margin-top: 50px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, #0584fa 0%, rgb(4 129 250) 100%);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a73e8, #004caf);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 22px;

  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px #0486f973;
}
.process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #1A1A1A; }
.process-step p { font-size: 13px; color: #555555; line-height: 1.6; }

/* ── BRANDS ── */
.brands-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.brands-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,17,17,0.6), transparent);
}
.brands-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,17,17,0.6), transparent);
}
.brands-header {
  text-align: center;
  margin-bottom: 44px;
}
.brands-header-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.brands-header-label::before, .brands-header-label::after {
  content: '';
  width: 40px; height: 1px;
  background: rgba(204,17,17,0.5);
}
.brands-header h3 {
 
  font-size: 26px;
  color: #FFFFFF;
  font-weight: 700;
}
.brands-header h3 em { color: var(--gold); font-style: normal; }

/* Marquee track */
.brands-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}
.brands-marquee {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.brands-marquee:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 14px 30px;
  transition: background .3s, border-color .3s, transform .3s;
  cursor: default;
  white-space: nowrap;
}
.brand-pill:hover {
  background: rgba(204,17,17,0.12);
  border-color: rgba(204,17,17,0.5);
  transform: translateY(-3px);
}
.brand-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.brand-pill-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #FFFFFF;
  text-transform: uppercase;
}
.brand-pill-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: .06em;
  font-weight: 500;
}

/* ── SEO CONTENT ── */
.seo-section { background: var(--navy); padding: 20px 0; border-top: 1px solid rgba(204,17,17,0.1); }
.seo-content {  }
.seo-content h2 {  font-size: 52px; margin-bottom: 18px; color: #1A1A1A; }
.seo-content p { color: #555555; font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.seo-content strong { color: #1A1A1A; }

/* ── FOOTER ── */
footer {
  background: #FFFFFF;
  border-top: 3px solid #50adff;
  padding: 30px 0 30px; margin-top:43px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.footer-about p { color: #fff; font-size: 14px; line-height: 1.7; margin: 16px 0 24px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); }
.footer-col h4 { font-size: 18px; font-weight: 700; margin-bottom: 18px; color: #000; position: relative; padding-bottom: 10px; padding-top:33px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col ul li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s, padding-left .2s;
  display: block;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact { display: grid; gap: 14px; }
.fc-item { display: flex; gap: 12px; align-items: flex-start; }
.fc-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.fc-item div span { display: block; font-size: 11px; color: #888888; margin-bottom: 2px; }
.fc-item div strong { font-size: 14px; color: #000; }
.footer-map {
  margin-top: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(204,17,17,0.2);
  height: 100px;
  background: linear-gradient(135deg, rgba(204,17,17,0.1), rgba(180,0,0,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: #888888;
  gap: 6px;
  cursor: pointer;
  transition: border-color .2s;
}
.footer-map:hover { border-color: rgba(204,17,17,0.5); color: #CC1111; }
.footer-bottom {
  border-top: 1px solid #ccc;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #000000;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── FLOATING WA ── */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 2000;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.45);
  }
  50% {
    box-shadow: 0 4px 36px rgba(13, 110, 253, 0.7),
                0 0 0 10px rgba(13, 110, 253, 0.1);
  }
}
/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
}
@media (max-width: 768px) {

  .top-bar { padding: 6px 16px; font-size: 12px; }
  .top-bar-right .tb-btn:not(.wa) { display: none; }
  header { padding: 0 20px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0px 24px 0px; }
  .hero h1 { font-size: 35px; }
  .hero-badge { display:none;}
  .hero p{ display:none;}
  .hero-dots { left: 24px; }
  .about-grid, .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .about-img-wrap img { height: 260px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .stat-item::after { display: none; }
  .events-gallery { grid-template-columns: 1fr; }
  .event-card:nth-child(1) { grid-row: span 1; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 2; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .testi-card { min-width: 300px; }
}


@media(max-width:768px){

.form-grid{
    grid-template-columns:1fr;
}

.section-title{
    font-size:38px;
}

.enquiry-box{
    padding:25px;
}

}
/* ───────── TRUSTED AV SECTION ───────── */

.trusted-av-section{
  background:#ffffff;
  padding:70px 0;
  position:relative;
  overflow:hidden;
}

.trusted-av-section::before{
  content:'';
  position:absolute;
  top:-150px;
  right:-150px;
  width:420px;
  height:420px;
  background:radial-gradient(circle, rgba(26,115,232,0.08) 0%, transparent 70%);
  border-radius:50%;
}

.trusted-av-wrapper{
  display:grid;
  grid-template-columns:1.4fr .6fr;
  gap:40px;
  align-items:start;
}

.trusted-av-text{
  font-size:16px;
  line-height:1.8;
  color:#555;
  margin-bottom:16px;
}

.trusted-av-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:35px;
}

.trusted-point{
  background:#f8fbff;
  border:1px solid rgba(26,115,232,0.12);
  padding:14px 16px;
  border-radius:12px;
  font-size:14px;
  line-height:1.6;
  color:#1A1A1A;
  transition:0.3s ease;
  box-shadow:0 2px 10px rgba(0,0,0,0.04);
}

.trusted-point:hover{
  transform:translateY(-4px);
  border-color:#1a73e8;
  box-shadow:0 10px 30px rgba(26,115,232,0.12);
}

.trusted-av-right{
  display:flex;
  flex-direction:column;
  gap:20px;
  position:sticky;
  top:110px;
}

.trusted-box{
  background:linear-gradient(135deg,#1a73e8,#0155c3);
  color:#fff;
  padding:28px;
  border-radius:18px;
  box-shadow:0 12px 40px rgba(26,115,232,0.18);
}

.trusted-box h3{
  font-size:20px;
  line-height:1.5;
  margin-bottom:12px;
}

.trusted-box p{
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,0.9);
}

.trusted-call-btn{
  background:#25D366;
  color:#fff;
  text-decoration:none;
  text-align:center;
  padding:18px 10px;
  border-radius:14px;
  font-size:17px;
  font-weight:normal;
  transition:0.3s ease;
  box-shadow:0 10px 30px rgba(37,211,102,0.25);
}

.trusted-call-btn:hover{
  transform:translateY(-3px);
}

@media(max-width:992px){

.trusted-av-wrapper{
  grid-template-columns:1fr;
}

.trusted-av-right{
  position:relative;
  top:0;
}

}

@media(max-width:768px){

.trusted-av-section{
  padding:50px 0;
}

.trusted-av-points{
  grid-template-columns:1fr;
}

.trusted-box{
  padding:22px;
}

.trusted-box h3{
  font-size:18px;
}

.trusted-call-btn{
  font-size:16px;
  padding:16px;
}

}
.why-points{
    display:grid;
    grid-template-columns:50% 50%;
    gap:20px;
    margin-top:30px;
    align-items:start;
}

.why-point{
    width:100%;
}

/* Mobile Responsive */
@media(max-width:768px){

.why-points{
    grid-template-columns:100%;
}

}
/* ───────── ACHIEVEMENTS SECTION ───────── */

.achievements-section{
    padding:20px 0;
    background:linear-gradient(135deg,#1a73e8 0%,#0155c3 100%);
    position:relative;
    overflow:hidden;
}

.achievements-section::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
}

.achievements-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 5px;
}

.achievements-heading .section-label{
    color:#ffffff;
}

.achievements-heading .section-title{
    color:#ffffff;
}

.achievements-heading .section-title em{
    color:#d9ecff;
}

.achievements-heading .section-sub{
    color:rgba(255,255,255,0.85);
}

.achievements-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.achievement-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:18px;
    padding:20px 20px;
    text-align:center;
    backdrop-filter:blur(10px);
    transition:0.3s ease;
}

.achievement-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.12);
}

.achievement-number{
    font-size:58px;
    line-height:1;
    font-weight:800;
    color:#ffffff;
    margin-bottom:18px;
    font-family:'Playfair Display',serif;
}

.achievement-card h3{
    font-size:22px;
    color:#ffffff;
    margin-bottom:15px;
    line-height:1.4;
}

.achievement-card p{
    font-size:14px;
    line-height:1.8;
    color:rgba(255,255,255,0.85);
}

/* Tablet */
@media(max-width:992px){

.achievements-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */
@media(max-width:768px){

.achievements-section{
    padding:60px 0;
}

.achievements-grid{
    grid-template-columns:1fr;
}

.achievement-card{
    padding:30px 22px;
}

.achievement-number{
    font-size:46px;
}

.achievement-card h3{
    font-size:20px;
}

}


.support-box{
  background:#111827;
  padding:50px 30px;
  border-radius:0px;
  text-align:center;
  max-width:100%;
  margin:auto;
  color:#fff;
  box-shadow:0 8px 30px rgba(0,0,0,0.15);
}

.support-box h2{
  font-size:38px;
  margin-bottom:20px;
  font-weight:700;
  line-height:1.4;
}

.support-box p{
  font-size:17px;
  line-height:1.8;
  color:#d1d5db;
  margin-bottom:30px;
}

.call-btn{
  display:inline-block;
  background:#ffb703;
  color:#111;
  text-decoration:none;
  padding:16px 35px;
  border-radius:50px;
  font-size:18px;
  font-weight:600;
  transition:0.3s;
}

.call-btn:hover{
  background:#fff;
  transform:translateY(-3px);
}

@media(max-width:768px){

  .support-box{
    padding:40px 20px;
  }

  .support-box h2{
    font-size:28px;
  }

  .support-box p{
    font-size:15px;
  }

  .call-btn{
    font-size:16px;
    padding:14px 28px;
  }

}

/* =========================
   Responsive CSS
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  line-height:1.6;
}

/* =========================
   FAQ Section
========================= */

.faq-section{
  width:100%;
  padding:30px 20px;
  background:#f8f9fb;
}

.faq-container{
  max-width:1200px;
  margin:auto;
}

.faq-title{
  text-align:center;
  font-size:40px;
  margin-bottom:40px;
  color:#111;
  font-weight:700;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

.faq-box{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.faq-box:hover{
  transform:translateY(-5px);
}

.faq-box h3{
  font-size:20px;
  margin-bottom:15px;
  color:#000;
}

.faq-box p{
  font-size:15px;
  color:#555;
}

/* =========================
   Support Section
========================= */

.support-box{
  margin-top:50px;
  background:#111827;
  color:#fff;
  padding:35px 25px;
  border-radius:0px;
  text-align:center;
}

.support-box h2{
  font-size:32px;
  margin-bottom:15px;
}

.support-box p{
  font-size:16px;
  margin-bottom:20px;
}

.support-btn{
  display:inline-block;
  padding:14px 30px;
  background:#ffb400;
  color:#000;
  text-decoration:none;
  font-weight:700;
  border-radius:50px;
  transition:0.3s;
}

.support-btn:hover{
  background:#fff;
}

/* =========================
   Tablet Responsive
========================= */

@media(max-width:991px){

  .faq-title{
    font-size:32px;
  }

  .faq-grid{
    grid-template-columns:1fr;
  }

  .faq-box{
    padding:22px;
  }

  .support-box h2{
    font-size:28px;
  }

}

/* =========================
   Mobile Responsive
========================= */

@media(max-width:576px){

  .faq-section{
    padding:20px 15px;
  }

  .faq-title{
    font-size:28px;
    margin-bottom:30px;
  }

  .faq-box{
    padding:20px;
  }

  .faq-box h3{
    font-size:18px;
  }

  .faq-box p{
    font-size:14px;
  }

  .support-box{
    padding:25px 18px;
  }

  .support-box h2{
    font-size:24px;
  }

  .support-box p{
    font-size:14px;
  }

  .support-btn{
    width:100%;
    padding:14px;
    font-size:15px;
  }

}

.faq-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

@media(max-width:768px){
    .faq-wrapper{
        grid-template-columns:1fr;
    }
}
.av-top-section{
    background:linear-gradient(135deg,#1a73e8,#0b57d0);
    padding:50px 20px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.av-top-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-120px;
    right:-100px;
}

.av-top-container{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.av-top-left{
    display:flex;
    align-items:center;
    gap:25px;
}

.av-top-left img{
    width:110px;
}

.av-top-content h1{
    font-size:40px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:0px;
}

.av-top-content p{
    font-size:22px;
    opacity:0.95;
}

/* CONTACT */

.av-contact-section{
    margin-top:-40px;
    padding:0 20px 40px;
    position:relative;
    z-index:5;
}

.av-contact-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.av-contact-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
}

.av-contact-card:hover{
    transform:translateY(-6px);
}

.av-contact-card i{
    width:55px;
    height:55px;
    background:#1a73e8;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:18px;
}

.av-contact-card h3{
    font-size:22px;
    margin-bottom:1px;
    color:#111;
}

.av-contact-card p{
    color:#555;
    margin-bottom:0px;
    font-size:16px;
}

.av-contact-card a{
    color:#1a73e8;
    text-decoration:none;
    font-weight:600;
}

/* PRODUCTS */

.av-products{
    padding:0px 20px 60px;
}

.av-products-box{
    max-width:1200px;
    margin:auto;
    background:#fff;
    border-radius:22px;
    padding:20px;
    box-shadow:0 12px 35px rgba(0,0,0,0.07);
}

.av-section-title{
    text-align:center;
    margin-bottom:20px;
}

.av-section-title h2{
    font-size:42px;
    color:#111;
    margin-bottom:10px;
}

.av-section-title p{
    color:#666;
    font-size:18px;
}

.av-products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.av-product-card{
    background:#f7faff;
    border-radius:18px;
    padding:10px;
    transition:.4s;
}





.av-product-card h4{
    font-size:22px;
    margin-bottom:18px;
    color:#111;
    transition:.4s;
}

.av-product-card ul{
    list-style:none;
}

.av-product-card ul li{
    margin-bottom:5px;
}

.av-product-card ul li a{
    color:#333;
    text-decoration:none;
    transition:.4s;
    font-size:15px;
}

/* CTA */

.av-cta{
    background:linear-gradient(135deg,#1a73e8,#0b57d0);
    padding:20px 20px;
    text-align:center;
    color:#fff;
}

.av-cta-container{
    max-width:1000px;
    margin:auto;
}

.av-cta h2{
    font-size:30px;
    line-height:1.5;
    margin-bottom:25px;
}

.av-cta-btn{
    display:inline-block;
    background:#fff;
    color:#1a73e8;
    padding:10px 35px;
    border-radius:50px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.4s;
}

.av-cta-btn:hover{
    transform:scale(1.05);
}

.av-product-card ul li a:hover{
    color:#2196F3;
    text-decoration:underline;
    transition:.4s;
    font-size:15px;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .av-contact-grid,
    .av-products-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .av-top-left{
        flex-direction:column;
        text-align:center;
    }

    .av-top-content h1{
        font-size:34px;
    }

    .av-top-content p{
        font-size:18px;
    }

    .av-contact-grid,
    .av-products-grid{
        grid-template-columns:1fr;
    }

    .av-section-title h2{
        font-size:32px;
    }

    .av-cta h2{
        font-size:28px;
    }

    .av-products-box{
        padding:25px;
    }

}

.hero-location{
    color:#fff;
    font-size:18px;
    line-height:1.8;
    font-weight:500;
}

.hero-location span{
    display:block;
    padding-left:18px;
}
@media(max-width:991px){

    .top1{ display:none!important;}
        .hero-content { padding: 25px 14px 0px; background-color: #0189ffc4;}
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: right;
}
  .hero h1 { font-size: 30px; }
  .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #000;
    background-color: #FFFFFF;
    padding: 12px 13px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, color .2s, border-color .2s;
}
.btn-wa {
    background: #25D366;
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-bottom: 60px;
}
  .hero-badge { display:none;}
  .hero p{ display:none;}
    .top-bar1{ display:none; }
	.top-bar-right {
    display: flex;
    gap: 47px;
    text-align: center;
    font-size: 14px;
}

}

/* MOBILE */

@media(max-width:576px){

    .top1{ display:none; }
	.top-bar1{ display:none; }
	.top-bar-right {
    display: flex;
    gap: 47px;
    text-align: center;
    font-size: 14px;
}

  .hero-content { padding: 25px 14px 0px; background-color: #0189ffc4;}
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: right;
}
  .hero h1 { font-size: 30px; }
  .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #000;
    background-color: #FFFFFF;
    padding: 12px 13px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, color .2s, border-color .2s;
}
.btn-wa {
    background: #25D366;
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-bottom: 60px;
}
  .hero-badge { display:none;}
  .hero p{ display:none;}

}




/* HERO */

.contact-hero{
    position:relative;
    background:
    linear-gradient(rgba(7,20,45,.75),rgba(7,20,45,.85)),
    url('../images/photo-about.jpg');
    background-size:cover;
    background-position:center;
    padding:40px 20px 90px;
    overflow:hidden;
}

.contact-hero::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(26,115,232,.18);
    border-radius:50%;
    top:-250px;
    right:-180px;
    filter:blur(30px);
}

.contact-hero::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-150px;
    left:-120px;
}

.hero-container{
    max-width:1250px;
    margin:auto;
    position:relative;
    z-index:2;
}

.hero-tag{
    display:inline-block;
    background:#1a73e8;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:10px;
    box-shadow:0 10px 30px rgba(26,115,232,.35);
}

.contact-hero h1{
    font-size:65px;
    line-height:1.08;
    color:#fff;
    max-width:850px;
    margin-bottom:25px;
    font-weight:700;
}

.contact-hero p{
    max-width:720px;
    color:#e8edf7;
    font-size:20px;
    line-height:1.9;
}

/* MAIN */

.contact-main{
    padding:0 20px 100px;
    margin-top:-80px;
    position:relative;
    z-index:5;
}

.contact-wrapper{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:420px 1fr;
    gap:35px;
}

/* LEFT CARD */

.contact-sidebar{
    background:#fff;
    border-radius:35px;
    padding:45px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.04);
    position:relative;
    overflow:hidden;
}

.contact-sidebar::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(26,115,232,.07);
    border-radius:50%;
    top:-70px;
    right:-70px;
}

.contact-sidebar h2{
    font-size:40px;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.contact-sidebar p{
    color:#666;
    line-height:1.9;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}

.contact-info{
    display:flex;
    gap:18px;
    margin-bottom:32px;
    position:relative;
    z-index:2;
}

.contact-icon{
    width:72px;
    height:72px;
    background:linear-gradient(135deg,#1a73e8,#0b57d0);
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
    flex-shrink:0;
    box-shadow:0 10px 25px rgba(26,115,232,.25);
}

.contact-text h4{
    font-size:23px;
    margin-bottom:8px;
}

.contact-text a,
.contact-text p{
    color:#555;
    text-decoration:none;
    line-height:1.8;
}

/* FORM */

.contact-form-box{
    background:#fff;
    border-radius:35px;
    padding:50px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.04);
    position:relative;
    overflow:hidden;
}

.contact-form-box::before{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(26,115,232,.05);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.form-heading{
    position:relative;
    z-index:2;
    margin-bottom:35px;
}

.form-heading h2{
    font-size:50px;
    margin-bottom:15px;
    line-height:1.2;
}

.form-heading p{

    color:#666;
    line-height:1.9;
    max-width:700px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    position:relative;
    z-index:2;
}

.form-group.full{
    grid-column:1/-1;
}

.form-group input,
.form-group textarea{
    width:100%;
    background:#f7f9fc;
    border:2px solid transparent;
    padding:18px 22px;
    border-radius:18px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#1a73e8;
    background:#fff;
    box-shadow:0 8px 25px rgba(26,115,232,.12);
}

.form-group textarea{
    height:170px;
    resize:none;
}

.submit-btn{
    background:linear-gradient(135deg,#1a73e8,#0b57d0);
    color:#fff;
    border:none;
    padding:18px 45px;
    border-radius:60px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 12px 30px rgba(26,115,232,.28);
}

.submit-btn:hover{
    transform:translateY(-5px);
}

/* LOCATIONS */

.locations{
    padding:0 20px 100px;
}

.locations-container{
    max-width:1250px;
    margin:auto;
}

.location-title{
    text-align:center;
    margin-bottom:65px;
}

.location-title span{
    color:#1a73e8;
    font-size:15px;
    letter-spacing:1px;
    font-weight:600;
}

.location-title h2{
    font-size:60px;
    margin-top:18px;
    color:#111;
}

.location-title p{
    color:#666;
    font-size:18px;
    margin-top:15px;
}

/* LOCATION GRID */

.location-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.location-card{
    background:#fff;
    border-radius:30px;
    padding:38px 32px;
    position:relative;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 45px rgba(0,0,0,.06);
}

.location-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent,rgba(26,115,232,.05));
    opacity:0;
    transition:.4s;
}

.location-card:hover::before{
    opacity:1;
}

.location-card:hover{
    transform:translateY(-12px);
}

.location-card i{
    width:75px;
    height:75px;
    background:linear-gradient(135deg,#1a73e8,#0b57d0);
    color:#fff;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:28px;
    box-shadow:0 12px 30px rgba(26,115,232,.25);
}

.location-card h3{
    font-size:28px;
    margin-bottom:18px;
    line-height:1.4;
}

.location-card p{
    color:#666;
    line-height:2;
    font-size:16px;
}

/* MAP */

.map-section{
    padding:0 20px 100px;
}

.map-box{
    max-width:1250px;
    margin:auto;
    overflow:hidden;
    border-radius:35px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.map-box iframe{
    width:100%;
    height:520px;
    border:0;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .location-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .contact-hero{
        padding:40px 20px 90px;
    }

    .contact-hero h1{
        font-size:44px;
    }

    .contact-hero p{
        font-size:17px;
    }

    .contact-sidebar,
    .contact-form-box{
        padding:30px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .location-grid{
        grid-template-columns:1fr;
    }

    .location-title h2{
        font-size:40px;
    }

    .form-heading h2{
        font-size:36px;
    }

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#fff;
    color:#111;
    overflow-x:hidden;
}

/* HERO */

.about-hero{
    position:relative;
    padding:140px 20px 120px;
    background:
    linear-gradient(rgba(10,20,40,.72),rgba(10,20,40,.82)),
    url('https://images.unsplash.com/photo-1498049794561-7780e7231661?q=80&w=1920');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.about-hero::before{
    content:'';
    position:absolute;
    width:550px;
    height:550px;
    background:rgba(26,115,232,.15);
    border-radius:50%;
    top:-220px;
    right:-180px;
    filter:blur(30px);
}

.hero-container{
    max-width:1250px;
    margin:auto;
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    background:#1a73e8;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:28px;
    box-shadow:0 10px 30px rgba(26,115,232,.3);
}

.about-hero h1{
    font-size:78px;
    color:#fff;
    line-height:1.08;
    max-width:850px;
    margin-bottom:25px;
}

.about-hero p{
    max-width:760px;
    color:#edf2fa;
    font-size:20px;
    line-height:1.9;
}

/* ABOUT SECTION */

.about-section{
    padding:40px 20px;
}

.about-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* IMAGE */

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:35px;
    display:block;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.experience-box{
    position:absolute;
    bottom:35px;
    right:-20px;
    background:#fff;
    padding:28px 35px;
    border-radius:28px;
    box-shadow:0 15px 50px rgba(0,0,0,.12);
}

.experience-box h2{
    font-size:54px;
    color:#1a73e8;
    line-height:1;
}

.experience-box p{
    color:#666;
    margin-top:10px;
    line-height:1.7;
}

/* CONTENT */

.about-content span{
    color:#1a73e8;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
}

.about-content h2{
    font-size:58px;
    line-height:1.15;
    margin:20px 0 25px;
}

.about-content p{
    color:#666;
    line-height:2;
    margin-bottom:25px;
    font-size:17px;
}

/* FEATURES */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:40px;
}

.feature-box{
    background:#fff;
    border-radius:24px;
    padding:28px;
    box-shadow:0 12px 40px rgba(0,0,0,.06);
    transition:.4s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box i{
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#1a73e8,#0b57d0);
    color:#fff;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
    box-shadow:0 12px 30px rgba(26,115,232,.25);
}

.feature-box h3{
    font-size:24px;
    margin-bottom:15px;
}

.feature-box p{
    color:#666;
    line-height:1.9;
    margin:0;
}

/* STATS */

.stats-section{
    padding:0 20px 110px;
}

.stats-container{
    max-width:1250px;
    margin:auto;
    background:linear-gradient(135deg,#1a73e8,#0b57d0);
    border-radius:40px;
    padding:70px 50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
    color:#fff;
    box-shadow:0 20px 60px rgba(26,115,232,.22);
}

.stat-box h2{
    font-size:64px;
    margin-bottom:12px;
}

.stat-box p{
    font-size:18px;
    opacity:.95;
}

/* CTA */

.cta-section{
    padding:0 20px 120px;
}

.cta-box{
    max-width:1250px;
    margin:auto;
    background:
    linear-gradient(rgba(7,20,45,.78),rgba(7,20,45,.88)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1920');
    background-size:cover;
    background-position:center;
    border-radius:40px;
    padding:90px 50px;
    text-align:center;
    color:#fff;
}

.cta-box h2{
    font-size:62px;
    line-height:1.2;
    max-width:900px;
    margin:auto auto 25px;
}

.cta-box p{
    max-width:750px;
    margin:auto;
    line-height:2;
    color:#e5eaf3;
    font-size:18px;
}

.cta-btn{
    display:inline-block;
    margin-top:40px;
    background:#1a73e8;
    color:#fff;
    padding:18px 42px;
    border-radius:60px;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 12px 35px rgba(26,115,232,.28);
}

.cta-btn:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:1100px){

    .about-container{
        grid-template-columns:1fr;
    }

    .stats-container{
        grid-template-columns:repeat(2,1fr);
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .about-hero{
        padding:100px 20px 90px;
    }

    .about-hero h1{
        font-size:44px;
    }

    .about-hero p{
        font-size:17px;
    }

    .about-content h2{
        font-size:38px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .stats-container{
        grid-template-columns:1fr;
        padding:50px 30px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:40px;
    }

    .cta-box{
        padding:70px 30px;
    }

    .cta-box h2{
        font-size:38px;
    }

    .experience-box{
        position:relative;
        right:0;
        bottom:0;
        margin-top:25px;
    }

}

/* MOBILE FOOTER FIX */

@media(max-width:768px){

    .footer-grid{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    /* ABOUT US FULL WIDTH */
    
    .footer-col:first-child{
        grid-column:1/-1;
    }

    /* QUICK LINKS LEFT */

    .footer-col:nth-child(2){
        grid-column:1/2;
    }

    /* RENTAL SERVICES RIGHT */

    .footer-col:nth-child(3){
        grid-column:2/3;
    }

    /* CONTACT US FULL WIDTH */

    .footer-col:nth-child(4){
        grid-column:1/-1;
    }

    .footer-col h4{
        font-size:20px;
        margin-bottom:18px;
    }

    .footer-col ul li{
        margin-bottom:10px;
    }

    .footer-col ul li a{
        font-size:14px;
        line-height:1.7;
    }

}

/* EXTRA SMALL MOBILE */

@media(max-width:480px){

    .footer-grid{
        gap:15px;
    }

    .footer-col{
        padding:0;
    }

    .footer-col h4{
        font-size:18px;
    }

    .footer-col ul li a{
        font-size:13px;
    }

}
.foot-about{color: #000;
    text-align: justify; font-size: 15px;}
	

.location-section{
    padding:0px;
    background:#FFFFFF;
    position:relative;
    overflow:hidden;
}

.location-heading h2 {
    font-size: 30px;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
}
.location-container{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.location-heading{
    text-align:center;
    margin-bottom:20px;
}

.location-heading span{
    display:inline-block;
    background:#1a73e8;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
}

.location-heading h2{
    font-size:35px;
    color:#000000; font-weight:bold;
    margin-bottom:15px;
}

.location-heading p{
    font-size:18px;
    color:#bbb;
    max-width:750px;
    margin:auto;
    line-height:1.8;
}

/* GRID */

.location-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.location-card{
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    padding:35px 28px;
    border-radius:22px;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.location-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#1a73e8;
}

.location-card:hover{
    transform:translateY(-8px);
    border-color:#1a73e8;
}

.location-icon{
    width:65px;
    height:65px;
    background:#1a73e8;
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:25px;
}

.location-card h3{
    font-size:18px;
    color:#fff;
    margin-bottom:18px;
    line-height:1.5;
}

.location-card p{
    color:#cfcfcf;
    line-height:1.9;
    font-size:16px;
}

/* CONTACT */

.location-contact-box{
    margin-top:60px;
    background:#111;
    border:1px solid rgba(255,255,255,0.08);
    padding:50px 30px;
    border-radius:25px;
    text-align:center;
}

.location-contact-box h3{
    font-size:42px;
    color:#fff;
    margin-bottom:25px;
}

.call-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#1a73e8;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
    transition:.4s;
}

.call-btn:hover{
    background:#fff;
    color:#1a73e8;
}

.website-btn{
    display:block;
    color:#bbb;
    text-decoration:none;
    font-size:19px;
    margin-top:10px;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .location-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .location-grid{
        grid-template-columns:1fr;
    }

    .location-heading h2{
        font-size:34px;
    }

    .location-contact-box h3{
        font-size:30px;
    }

    .call-btn{
        font-size:17px;
        padding:14px 24px;
    }

}
	