/* ============================================================
   ASPIRE WINDOWS — MAIN THEME CSS
   Black background | White text | #6daf46 green accents
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: #000 !important;
  color: #fff !important;
  font-family: 'Josefin Sans', sans-serif !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; }
p { line-height: 1.8; margin-bottom: 15px; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- HEADER ---- */
.header {
  width: 100% !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  background: rgba(0,0,0,0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(109,175,70,0.2) !important;
  transition: background 0.3s ease;
  height: 80px !important;
  transform: none !important;
}

.header .header__row {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 20px;
}

.header .logo { display: flex; align-items: center; height: 80px; }
.header .logo img { max-height: 65px; width: auto; transition: all 0.3s ease; }

/* ---- NAVIGATION ---- */
@media (min-width: 1280px) {
  .navbar ul { display: flex; justify-content: flex-end; align-items: center; margin-top: 0; }
  .navbar ul li { position: relative; }
  .navbar a, .navbar a:focus {
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .navbar a:hover, .navbar a.hilink { color: #6daf46 !important; }
  .navbar .dropdown ul {
    background: #111 !important;
    border: 1px solid #222;
    border-top: 2px solid #6daf46;
    min-width: 220px;
  }
  .navbar .dropdown ul a { color: #ddd !important; font-size: 13px; padding: 10px 18px; text-transform: none; }
  .navbar .dropdown ul a:hover { color: #6daf46 !important; background: rgba(109,175,70,0.08); }
}

/* ---- STICKY SCROLL OVERRIDE (neutralise style.css broken .sticky) ---- */
.header.sticky,
.header.scrolled {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 80px !important;
  z-index: 99999 !important;
  background: rgba(0,0,0,0.98) !important;
  border-bottom: 1px solid rgba(109,175,70,0.25) !important;
  animation: none !important;
  transform: none !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.6) !important;
}

/* ---- MOBILE NAV TOGGLE ---- */
.mobile-nav-show {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: 0.3s;
}
.mobile-nav-hide {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: 0.3s;
}
.mobile-nav-show:hover, .mobile-nav-hide:hover { color: #6daf46; }

/* ---- WHATSAPP FLOAT ---- */
.float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 30px;
  right: 20px;
  left: auto;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  z-index: 99998;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.6); color: #fff; }
.my-float { line-height: 1; }

/* ---- PAGE PADDING FOR FIXED HEADER ---- */
.d_slider, .m_slider { margin-top: 80px; }

/* ---- SLIDERS ---- */
.d_slider { height: calc(100vh - 80px); position: relative; overflow: hidden; }
.m_slider { display: none; }
.d_slider .carousel { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.d_slider .carousel-item img { width: 100%; height: calc(100vh - 80px); object-fit: cover; }
/* Mobile slider custom structure */
.m_slide_track { position: relative; width: 100%; overflow: hidden; }
.m_slide { display: none; }
.m_slide.active, .m_slide[style*="display:block"], .m_slide[style*="display: block"] { display: block; }
.carousel-caption {
  bottom: auto;
  top: 20%;
  left: 5%;
  right: 5%;
  text-align: center;
  padding: 0;
}
.carousel-caption h1, .carousel-caption h2 { font-size: 36px; font-weight: 700; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.7); margin-bottom: 20px; }
.carousel-caption p { font-size: 18px; color: #f0f0f0; text-shadow: 0 1px 4px rgba(0,0,0,0.7); }
.carousel-caption-inner {
  position: absolute;
  bottom: 10%;
  left: 10%;
  right: 10%;
  z-index: 10;
  text-align: center;
  color: #fff;
}
.carousel-caption-inner p { font-size: 22px; font-weight: 600; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }

/* banner info */
.banner_info { text-align: center; }
.banner_info img { width: 40px !important; height: 40px !important; margin-bottom: 8px; }
.banner_info h5 { font-size: 13px; font-weight: 700; color: #fff; margin: 4px 0; }
.banner_info p { font-size: 11px; color: #ddd; margin: 0; line-height: 1.4; }

/* ---- BUTTONS ---- */
.btn-primary-green {
  display: inline-block;
  background: #6daf46;
  color: #fff !important;
  padding: 13px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid #6daf46;
  cursor: pointer;
  text-decoration: none !important;
}
.btn-primary-green:hover { background: #5a9638; border-color: #5a9638; color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(109,175,70,0.4); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  padding: 13px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  text-decoration: none !important;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff !important; }

.hero-cta-btns { display: flex; gap: 15px; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* ---- SECTION TAG ---- */
.section-tag {
  display: inline-block;
  background: rgba(109,175,70,0.15);
  color: #6daf46;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid rgba(109,175,70,0.3);
}

/* ---- HERO STATS BAR ---- */
.hero-stats-bar {
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  border-top: 1px solid rgba(109,175,70,0.2);
  border-bottom: 1px solid rgba(109,175,70,0.2);
  padding: 30px 0;
}
.hero-stats-bar .stat-item { padding: 15px 10px; }
.hero-stats-bar .stat-number { display: block; font-size: 36px; font-weight: 800; color: #6daf46; line-height: 1; margin-bottom: 8px; }
.hero-stats-bar .stat-label { display: block; font-size: 13px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }

/* ---- SECTION BASE ---- */
section { padding: 80px 0; }
section.about, section.Project, section.Projects { margin-top: 0; }

/* ---- ABOUT / WHO WE ARE ---- */
.about { text-align: left; padding: 80px 0; }
.about h2 { font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.about p { font-size: 16px; color: #ccc; line-height: 1.9; }
.read_more { margin-top: 25px; }
.read_more a {
  display: inline-block;
  background: #fff;
  color: #000 !important;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid #fff;
  transition: all 0.3s;
  text-decoration: none !important;
}
.read_more a:hover { background: #6daf46; color: #fff !important; border-color: #6daf46; }

/* ---- PRODUCT CATEGORY BOXES ---- */
.pro_cat { background: #0d0d0d; padding: 40px 0; }
.container-fluid .box, .container-fluid .add_box {
  position: relative;
  height: 220px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}
.container-fluid .box:hover, .container-fluid .add_box:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(109,175,70,0.2); }
.container-fluid .box img, .container-fluid .add_box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.container-fluid .box:hover img { transform: scale(1.05); }
.container-fluid .box .box__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 20px 15px 12px;
  transition: 0.4s;
}
.container-fluid .box .box__title h6 { color: #fff; text-transform: uppercase; font-size: 13px; font-weight: 700; margin: 0 0 4px; }
.container-fluid .box .box__title p { color: #ccc; font-size: 12px; margin: 0; opacity: 0; transition: opacity 0.3s; }
.container-fluid .box:hover .box__title p { opacity: 1; }

/* ---- PRODUCTS SECTION ---- */
.Project { padding: 60px 0 30px; }
.Project h2 { font-size: 42px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 15px; }
.Project p { font-size: 16px; color: #bbb; text-align: center; max-width: 700px; margin: 0 auto; }

.Projects .row { display: flex; flex-wrap: wrap; align-items: stretch; margin: 0; }
.Projects .col-sm-6 { padding: 0; display: flex; flex-direction: column; }
.Projects .col-sm-6 > img { width: 100%; height: 100%; min-height: 350px; object-fit: cover; flex: 1; display: block; }
.proj_area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px;
  background: #000;
}
.cat_bg .proj_area { background: #0a0a0a; }
.proj_area h3 { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 15px; line-height: 1.2; }
.proj_area p { color: #bbb; font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.proj_area ul li { color: #ccc; font-size: 14px; margin-bottom: 8px; padding-left: 18px; position: relative; }
.proj_area ul li::before { content: '→'; position: absolute; left: 0; color: #6daf46; }

/* ---- FEATURES SECTION ---- */
.features-section { padding: 80px 0; background: #050505; }
.features-section h2 { font-size: 36px; font-weight: 700; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.feature-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s;
}
.feature-card:hover { border-color: #6daf46; transform: translateY(-5px); box-shadow: 0 10px 30px rgba(109,175,70,0.15); }
.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(109,175,70,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(109,175,70,0.3);
}
.feature-icon i { font-size: 24px; color: #6daf46; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: #888; line-height: 1.7; margin: 0; }

/* ---- STATS SECTION ---- */
.stats-section { padding: 80px 0; background: #6daf46; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stats-section .stat-item { padding: 20px 10px; }
.stats-section .stat-number { display: block; font-size: 48px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 10px; }
.stats-section .stat-label { display: block; font-size: 14px; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ---- TESTIMONIALS ---- */
.testim { background: #0a0a0a; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; padding: 60px 0; }
.testim .wrap { max-width: 900px; padding: 30px 20px; margin: auto; }
.testim .cont > div { padding: 0 0 50px; }
.testim .cont div h2 { color: #6daf46; font-size: 18px; font-weight: 700; margin: 15px 0 10px; }
.testim .cont div p { color: #bbb; font-size: 15px; width: 80%; margin: auto; line-height: 1.8; }
.testim .cont div .img img { width: 80px; height: 80px; border-radius: 50%; border: 3px solid #6daf46; }
.testim .arrow { color: #6daf46; font-size: 1.8em; }
.testim .arrow:hover { color: #fff; }
.testim .arrow.left { left: 30px; }
.testim .arrow.right { right: 30px; }
.testim .dots .dot { border-color: #6daf46; }
.testim .dots .dot.active, .testim .dots .dot:hover { background: #6daf46; }

/* ---- BRANDS SECTION ---- */
.brands-section { padding: 80px 0; background: #000; }
.brands-section h2 { font-size: 36px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 10px; }
.brands-section > .container > p { color: #888; text-align: center; margin-bottom: 50px; }
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 30px; }
.brand-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s;
}
.brand-card:hover { border-color: #6daf46; transform: translateY(-4px); box-shadow: 0 8px 25px rgba(109,175,70,0.1); }
.brand-card img { width: 100%; max-height: 160px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }
.brand-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.brand-card p { font-size: 14px; color: #888; line-height: 1.7; margin: 0; }

/* ---- GALLERY SECTION ---- */
.gallery-section { padding: 80px 0; background: #050505; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(109,175,70,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 30px; color: #fff; }

/* ---- HOME CTA SECTION ---- */
.home-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
  text-align: center;
  border-top: 1px solid rgba(109,175,70,0.2);
  border-bottom: 1px solid rgba(109,175,70,0.2);
}
.home-cta-section h2 { font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 15px; }
.home-cta-section p { font-size: 17px; color: #bbb; margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---- FAQ SECTION ---- */
.faq-section { padding: 80px 0; background: #000; }
.faq-section h2 { font-size: 36px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 50px; }
.faq-item {
  border: 1px solid #222;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active { border-color: #6daf46; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: #111;
  transition: background 0.3s;
}
.faq-question:hover { background: #151515; }
.faq-item.active .faq-question { background: rgba(109,175,70,0.08); }
.faq-question h4 { font-size: 15px; color: #fff; margin: 0; font-weight: 600; flex: 1; padding-right: 15px; }
.faq-icon { font-size: 14px; color: #6daf46; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer.open { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p { font-size: 14px; color: #aaa; line-height: 1.8; margin: 0; }

/* ---- IPHONE FRAME SECTION (Reel) ---- */
.reel-section { padding: 100px 0; background: #050505; }
.reel-section .col-sm-6 { padding: 20px; }
.reel-section h2 { font-size: 40px; font-weight: 700; color: #fff; margin-bottom: 20px; line-height: 1.2; }
.reel-section p { font-size: 15px; color: #bbb; line-height: 1.9; margin-bottom: 25px; }
.reel-section ul li { font-size: 14px; color: #ccc; padding: 6px 0 6px 30px; position: relative; }
.reel-section ul li::before { content: '✓'; position: absolute; left: 0; color: #6daf46; font-weight: 700; }
.reel-section ul { margin-bottom: 30px; }

.iphone-frame-wrap { display: flex; justify-content: center; align-items: center; padding: 20px 0; }
.iphone-frame {
  position: relative;
  width: 230px;
  height: 480px;
  background: #111;
  border-radius: 38px;
  padding: 14px 8px;
  box-shadow:
    0 0 0 2px #333,
    0 0 0 4px #1a1a1a,
    0 20px 60px rgba(0,0,0,0.6),
    inset 0 0 0 1px #444;
}
.iphone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.iphone-frame::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: #444;
  border-radius: 4px;
}
.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  position: relative;
}
.iphone-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.iphone-screen-fallback { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 28px; }

/* ---- ABOUT PAGE SECTIONS ---- */
.breadcrumb-section { padding: 15px 0; background: #0a0a0a; border-bottom: 1px solid #1a1a1a; }
.breadcrumb { background: transparent !important; padding: 0; margin: 0; }
.breadcrumb > li { color: #888; font-size: 13px; }
.breadcrumb > li a { color: #6daf46; }
.breadcrumb > li + li::before { color: #555; content: '/ '; }
.breadcrumb > li.active { color: #fff; }
.breadcrumb-section + section,
.breadcrumb-section + .carousel { margin-top: 0; }

.inner_section { padding: 70px 0; }
.inner_section h1 { font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.inner_section p { color: #ccc; font-size: 15px; line-height: 1.8; }

/* priorities */
.bg2 { background: rgba(255,255,255,0.05) !important; border: 1px solid #222; border-radius: 16px; padding: 40px 20px; }
.bg2 h4 { color: #fff !important; font-size: 16px; font-weight: 700; }
.bg2 img { max-height: 60px; margin-bottom: 15px; }
.priorities { text-align: center; padding: 15px 10px; }

/* system partners */
.s_partnerb { background: #111 !important; border: 1px solid #222; border-radius: 12px; padding: 30px 20px; margin-bottom: 25px; box-shadow: none !important; }
.s_partnerb:hover { border-color: #6daf46; }
.s_partnerb img { width: 120px; height: 120px; object-fit: cover; display: block; margin: 0 auto 20px; border: 3px solid #6daf46; }
.s_partnerb h4 { color: #6daf46; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 12px; }
.s_partnerb p { color: #bbb; font-size: 14px; line-height: 1.8; }
.content, .content2, .content3 { position: relative; }
.content-inner, .content-inner2, .content-inner3 { max-height: 395px; overflow: hidden; }
.read-more, .read-more2, .read-more3 { display: block; cursor: pointer; color: #6daf46; font-size: 13px; font-weight: 600; margin-top: 10px; text-align: center; }

/* facility */
.facility-section { padding: 80px 0; background: #050505; }
.facility-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.facility-item { background: #111; border: 1px solid #222; border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.facility-item:hover { border-color: #6daf46; transform: translateY(-4px); box-shadow: 0 8px 25px rgba(109,175,70,0.1); }
.facility-item img { width: 100%; height: 200px; object-fit: cover; }
.facility-item-body { padding: 20px; }
.facility-item-body h4 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.facility-item-body p { color: #888; font-size: 14px; margin: 0; line-height: 1.7; }

/* why choose */
.why-choose-section { padding: 80px 0; background: #000; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { list-style: none; padding: 0; margin-top: 30px; }
.why-list li { display: flex; gap: 20px; margin-bottom: 25px; align-items: flex-start; }
.why-icon { width: 44px; height: 44px; background: rgba(109,175,70,0.1); border: 1px solid rgba(109,175,70,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon i { color: #6daf46; font-size: 18px; }
.why-text h4 { color: #fff; font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.why-text p { color: #888; font-size: 14px; line-height: 1.7; margin: 0; }
.why-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-image-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; transition: transform 0.4s; }
.why-image-grid img:hover { transform: scale(1.04); }

/* team */
.team-section { padding: 80px 0; background: #050505; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.team-card { background: #111; border: 1px solid #222; border-radius: 12px; padding: 30px 20px; text-align: center; transition: all 0.3s; }
.team-card:hover { border-color: #6daf46; transform: translateY(-4px); }
.team-avatar { width: 70px; height: 70px; background: rgba(109,175,70,0.1); border: 2px solid #6daf46; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.team-avatar i { font-size: 28px; color: #6daf46; }
.team-card h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.team-card p { color: #888; font-size: 13px; margin: 0; }

/* awards */
.awards-section { padding: 80px 0; background: #000; }
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.award-card { background: #111; border: 1px solid #222; border-radius: 12px; padding: 30px 20px; text-align: center; transition: all 0.3s; }
.award-card:hover { border-color: #6daf46; transform: translateY(-4px); box-shadow: 0 8px 25px rgba(109,175,70,0.1); }
.award-icon { width: 60px; height: 60px; background: rgba(109,175,70,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; border: 1px solid rgba(109,175,70,0.3); }
.award-icon i { font-size: 22px; color: #6daf46; }
.award-card h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.award-card p { color: #888; font-size: 13px; margin: 0; line-height: 1.6; }

/* timeline */
.timeline-section { padding: 80px 0; background: #050505; }
.timeline { list-style: none; padding: 0; position: relative; }
.timeline::before { display: none; }
.timeline-item { display: grid; grid-template-columns: 100px 1fr; gap: 30px; margin-bottom: 40px; align-items: center; }
.timeline-year { text-align: center; }
.timeline-year span { display: inline-flex; align-items: center; justify-content: center; width: 90px; height: 90px; border-radius: 50%; background: rgba(109,175,70,0.1); border: 2px solid #6daf46; color: #6daf46; font-size: 18px; font-weight: 800; }
.timeline-content { background: #111; border: 1px solid #222; border-radius: 12px; padding: 25px; transition: border-color 0.3s; }
.timeline-content:hover { border-color: #6daf46; }
.timeline-content h4 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.timeline-content p { color: #888; font-size: 14px; line-height: 1.8; margin: 0; }

/* cta */
.cta-section { padding: 100px 0; background: linear-gradient(135deg, #0a2000 0%, #0d1a00 50%, #071000 100%); text-align: center; border-top: 1px solid rgba(109,175,70,0.3); }
.cta-section h2 { color: #fff; font-size: 38px; font-weight: 700; }
.cta-section p { color: #ccc; }

/* ---- CONTACT PAGE ---- */
.contact-form-section { padding: 80px 0; }
.seo-contact-form .form-group { margin-bottom: 20px; }
.seo-contact-form label { display: block; color: #aaa; font-size: 13px; font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.seo-contact-form input[type="text"],
.seo-contact-form input[type="email"],
.seo-contact-form input[type="tel"],
.seo-contact-form select,
.seo-contact-form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #fff;
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  transition: border-color 0.3s;
  display: block;
}
.seo-contact-form input:focus,
.seo-contact-form select:focus,
.seo-contact-form textarea:focus { outline: none; border-color: #6daf46; box-shadow: 0 0 0 3px rgba(109,175,70,0.1); }
.seo-contact-form select { appearance: none; cursor: pointer; }
.seo-contact-form select option { background: #111; color: #fff; }
.seo-contact-form textarea { min-height: 130px; resize: vertical; }
.seo-contact-form input[type="submit"] {
  background: #6daf46;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.seo-contact-form input[type="submit"]:hover { background: #5a9638; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(109,175,70,0.4); }

/* ---- WHY US PAGE ---- */
.why-us-sec { padding: 70px 0; }
.why-us-sec h1 { font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 15px; }
.why-us-sec .tabs { display: flex; list-style: none; padding: 0; margin: 0 0 30px; gap: 0; border-bottom: 2px solid #222; }
.why-us-sec .tabs li { padding: 12px 28px; cursor: pointer; font-size: 15px; font-weight: 600; color: #888; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.3s; }
.why-us-sec .tabs li.active, .why-us-sec .tabs li:hover { color: #6daf46; border-bottom-color: #6daf46; }
.wu-box { position: relative; background: #111; border-radius: 10px; overflow: hidden; margin-bottom: 20px; }
.wu-box img { width: 100%; height: 300px; object-fit: cover; }
.carousel-info { padding: 20px; }
.carousel-info h3 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.carousel-info p { color: #bbb; font-size: 14px; line-height: 1.7; margin: 0; }
.wew-info { padding: 40px; }
.wew-info h4 { color: #fff; font-size: 28px; font-weight: 700; margin-bottom: 20px; }
.wew-info ul { list-style: none; padding: 0; }
.wew-info ul li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.wew-info ul li img { max-width: 50px; flex-shrink: 0; }
.wew-info ul li p { color: #ccc; font-size: 14px; line-height: 1.7; margin: 0; }

/* ---- BROCHURE PAGE ---- */
.brochure-section { padding: 80px 0; }
.brochure-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  margin-bottom: 25px;
}
.brochure-card:hover { border-color: #6daf46; transform: translateY(-4px); box-shadow: 0 10px 30px rgba(109,175,70,0.15); }
.brochure-card-header { background: rgba(109,175,70,0.1); padding: 20px 25px; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid #222; }
.brochure-card-header i { font-size: 28px; color: #e53935; }
.brochure-card-header h4 { color: #fff; margin: 0; font-size: 17px; font-weight: 700; }
.brochure-card-body { padding: 25px; text-align: center; }
.brochure-card-body p { color: #888; font-size: 14px; margin-bottom: 20px; }
.db {
  background: rgba(255,255,255,0.05);
  border: 1px solid #222;
  border-radius: 10px 10px 0 0;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.db a { color: #fff; }
.db:hover { background: rgba(109,175,70,0.1); }

/* ---- FOOTER ---- */
footer {
  background: #0a0a0a;
  border-top: 2px solid rgba(109,175,70,0.3);
  padding: 70px 0 40px;
  color: #fff;
}
.footer-logo { max-height: 70px; max-width: 160px; margin-bottom: 20px; }
.footer-logo-wrap { margin-bottom: 20px; }

footer h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}
footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #6daf46;
}
footer p { font-size: 14px; color: #888; line-height: 1.8; margin-bottom: 10px; }
footer p a { color: #888; transition: color 0.3s; }
footer p a:hover { color: #6daf46; }

ul.footer_link { padding: 0; margin: 0; list-style: none; }
ul.footer_link li { margin-bottom: 10px; }
ul.footer_link li a { color: #888; font-size: 14px; transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
ul.footer_link li a::before { content: '›'; color: #6daf46; font-size: 18px; line-height: 1; }
ul.footer_link li a:hover { color: #6daf46; padding-left: 5px; }

ul.footer_social { padding: 0; margin: 15px 0 0; list-style: none; display: flex; gap: 10px; flex-wrap: wrap; }
ul.footer_social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(109,175,70,0.1);
  border: 1px solid rgba(109,175,70,0.3);
  border-radius: 50%;
  color: #6daf46;
  font-size: 16px;
  transition: all 0.3s;
}
ul.footer_social li a:hover { background: #6daf46; color: #fff; border-color: #6daf46; transform: translateY(-3px); }

.copyright { background: #050505; border-top: 1px solid #1a1a1a; padding: 18px 0; }
.copyright p { color: #555; margin: 0; padding: 0; font-size: 13px; }
.copyright a { color: #6daf46 !important; }

/* All pages dropdown */
.all-pages-section { text-align: center; margin-top: 10px; }
.all-pages-btn {
  background: rgba(109,175,70,0.1);
  border: 1px solid rgba(109,175,70,0.3);
  color: #6daf46;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}
.all-pages-btn:hover { background: rgba(109,175,70,0.2); }
.all-pages-dropdown { background: #111; border: 1px solid #222; border-radius: 10px; padding: 25px; margin-top: 15px; text-align: left; }
.all-pages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pages-col h5 { color: #6daf46; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pages-col ul { padding: 0; margin: 0; list-style: none; }
.pages-col ul li { margin-bottom: 6px; }
.pages-col ul li a { color: #666; font-size: 12px; transition: color 0.3s; }
.pages-col ul li a:hover { color: #6daf46; }

/* ---- FLOATING CONTACT FORM ---- */
.nb-form { background: #111 !important; border: 1px solid #222; border-radius: 12px 12px 0 0; }
.nb-form .title { background: #6daf46 !important; border-radius: 12px 12px 0 0; font-size: 15px !important; }
.nb-form p { color: #888 !important; }
.nb-form input, .nb-form textarea { background: #1a1a1a; color: #fff; border: 1px solid #333; border-bottom: 1px solid #333; }
.nb-form input[type='submit'] { background: #6daf46 !important; border-radius: 6px !important; }

/* ---- INSPIRATION PAGE ---- */
.insp { display: block; }
.insp img { max-width: 100%; height: auto; border-radius: 8px; }
.insp .item { border-radius: 10px; overflow: hidden; }
.insp .overlay { border-radius: 0; }
#imp_slider1, #imp_slider2, #imp_slider3, #imp_slider4, #imp_slider5, #imp_slider6, #imp_slider7 {
  background: #111 !important;
  padding: 50px 0;
  border-bottom: 1px solid #222;
}
.imp_slider_heading { padding: 30% 20px; }
.imp_slider_heading h4 { color: #fff !important; font-size: 32px; font-weight: 800; line-height: 1.3; }

/* ====================================================
   MOBILE FULL-SCREEN NAV (aspire-main.css loads last)
   ==================================================== */
@media (max-width: 1279px) {

  /* ── Hamburger button (in header) ── */
  .mobile-nav-show {
    display: block;
    font-size: 34px;
    color: #fff;
    cursor: pointer;
    float: right;
    margin-top: 2px;
    line-height: 1;
    position: relative;
    z-index: 100001;
  }
  .mobile-nav-show:hover { color: #6daf46; }

  /* ── Full-screen overlay slides in from right ── */
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 100000;
    background: #000;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    /* kill menu.css absolute+inset on ul by context */
  }
  .mobile-nav-active .navbar { right: 0; }

  /* ── X close button (inside .navbar) ── */
  .mobile-nav-hide {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 100002;
    line-height: 1;
    display: none;
  }
  .mobile-nav-hide:hover { color: #6daf46; }
  .mobile-nav-active .mobile-nav-hide { display: block; }

  /* ── "ASPIRE WINDOWS" brand strip at top of panel ── */
  .navbar::before {
    content: 'ASPIRE WINDOWS';
    display: block;
    flex-shrink: 0;
    padding: 20px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #6daf46;
    border-bottom: 1px solid #1c1c1c;
  }

  /* ── UL: override menu.css (position:absolute; inset:0; overflow-y:auto) ── */
  .navbar ul {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: hidden;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    background: transparent;
    justify-content: space-evenly;
  }

  /* ── Top-level list items: equal height rows ── */
  .navbar > ul > li {
    flex: 1;
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #111;
    position: relative;
  }

  /* ── Top-level links ── */
  .navbar > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 22px;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    text-decoration: none;
  }
  .navbar > ul > li > a.hilink { color: #6daf46; }
  .navbar > ul > li > a:hover  { color: #6daf46; background: rgba(109,175,70,0.06); }

  /* ── Dropdown arrow ── */
  .navbar a .bi-chevron-down { font-size: 11px; transition: transform 0.3s; }
  .navbar .dropdown-open > a .bi-chevron-down { transform: rotate(180deg); }

  /* ── Dropdown sub-list ── */
  .navbar .dropdown ul {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    z-index: 5;
    background: #0a0a0a;
    border-left: 3px solid #6daf46;
    padding: 6px 0;
    margin: 0;
    overflow-y: hidden;
    box-shadow: 0 -6px 24px rgba(0,0,0,0.6);
  }
  .navbar .dropdown ul.dropdown-active { display: block; }

  .navbar .dropdown ul li {
    border: none;
    flex: none;
  }
  .navbar .dropdown ul a {
    font-size: 13px;
    padding: 9px 18px 9px 28px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: #bbb;
    height: auto;
    display: block;
    width: 100%;
  }
  .navbar .dropdown ul a:hover { color: #6daf46; background: rgba(109,175,70,0.05); }
}

/* Desktop: hide hamburger buttons */
@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide { display: none !important; }
}

/* ---- GENERAL RESPONSIVE ---- */

/* Tablet */
@media (max-width: 1279px) and (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .all-pages-grid { grid-template-columns: repeat(2, 1fr); }
  .proj_area { padding: 40px 30px; }
  .carousel-caption h1, .carousel-caption h2 { font-size: 26px; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 20px; }
}

/* Mobile */
@media (max-width: 767px) {
  /* Header */
  .header { height: 65px; }
  .header .header__row { height: 65px; }
  .header .logo img { max-height: 50px; }
  .d_slider, .m_slider { margin-top: 65px; }

  /* Sliders */
  .d_slider { display: none; }
  .m_slider { display: block !important; height: auto; }

  /* Sections */
  section { padding: 50px 0; }
  .about { padding: 50px 0; }
  .about h2 { font-size: 28px; }
  .Project h2 { font-size: 28px; }
  .inner_section h1 { font-size: 30px !important; }

  /* Products */
  .proj_area { padding: 35px 20px !important; }
  .proj_area h3 { font-size: 24px; }
  .Projects .col-sm-6 > img { min-height: 220px; }

  /* Grids */
  .features-grid { grid-template-columns: 1fr; gap: 15px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .stats-section .stat-number { font-size: 32px; }
  .brands-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .why-grid { grid-template-columns: 1fr; gap: 30px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .facility-grid { grid-template-columns: 1fr; }
  .why-image-grid { grid-template-columns: repeat(2, 1fr); }
  .all-pages-grid { grid-template-columns: 1fr 1fr; }

  /* iPhone frame */
  .reel-section { padding: 50px 0; }
  .reel-section .col-sm-6 { padding: 15px; }
  .iphone-frame { width: 190px; height: 400px; }
  .reel-section h2 { font-size: 28px; }

  /* Timeline */
  .timeline-item { grid-template-columns: 1fr; gap: 15px; text-align: center; }
  .timeline-year { display: flex; justify-content: center; }
  .timeline-year span { width: 70px; height: 70px; font-size: 15px; }

  /* Footer */
  footer { padding: 50px 0 30px; }
  footer .col-sm-3 { margin-bottom: 30px; }
  .f_mer { margin-top: 0; }
  .all-pages-grid { grid-template-columns: 1fr; }

  /* Banner info */
  .banner_info img { width: 24px !important; height: 24px !important; }
  .banner_info h5 { font-size: 10px !important; }
  .banner_info p { display: none; }

  /* Stats bar */
  .hero-stats-bar .stat-number { font-size: 26px; }
  .hero-stats-bar .stat-label { font-size: 11px; }

  /* Home CTA */
  .home-cta-section { padding: 60px 0; }
  .home-cta-section h2 { font-size: 28px; }
  .hero-cta-btns { flex-direction: column; gap: 12px; }
  .btn-primary-green, .btn-outline-white { width: 100%; text-align: center; padding: 14px 20px; }

  /* Contact */
  .contact-form-section .col-sm-7, .contact-form-section .col-sm-5 { width: 100%; padding: 10px 15px; }
  .contact-form-section .col-sm-7 > div, .contact-form-section .col-sm-5 .contact-info-card { margin-bottom: 20px; }

  /* FAQ */
  .faq-section h2 { font-size: 26px; margin-bottom: 30px; }

  /* Why Us */
  .why-us-sec { padding: 40px 0; }
  .why-us-sec h1 { font-size: 28px; }
  .why-us-sec .tabs { overflow-x: auto; }
  .wew-info { padding: 20px; }
  .wew-info h4 { font-size: 22px !important; }

  /* Brochure */
  .d_pdf iframe { display: none !important; }

  /* Inspiration */
  .insp { display: none !important; }
  .imp_slider_heading { padding: 15px 15px !important; }
  .imp_slider_heading h4 { font-size: 22px !important; text-align: center !important; }

  /* Floating form */
  .nb-form { display: none !important; }

  /* WhatsApp */
  .float { width: 46px !important; height: 46px !important; bottom: 20px !important; right: 15px !important; left: auto !important; font-size: 22px !important; }

  /* sticky — keep fixed, never hide */
  .header.sticky,
  .header.scrolled {
    position: fixed !important;
    top: 0 !important;
    height: 65px !important;
    display: flex !important;
    animation: none !important;
    transform: none !important;
  }
}

/* Extra small */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .all-pages-grid { grid-template-columns: 1fr; }
  .iphone-frame { width: 165px; height: 350px; }
}

/* ---- UTILITY ---- */
.text-green { color: #6daf46; }
.bg-black { background: #000; }
.section-pad { padding: 80px 0; }

/* override bootstrap breadcrumb */
.breadcrumb-section .breadcrumb { background: transparent !important; }

/* override Bootstrap overrides from old code */
.container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 20px !important;
  margin: 0 auto !important;
}
.container-fluid { padding: 0 !important; }
.row { margin: 0; }

@media (max-width: 767px) {
  .container { padding: 0 15px !important; }
  .col-sm-6, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-12 { width: 100%; float: none; padding: 0 10px; }
  .col-6 { width: 50%; float: left; }
  .col-4 { width: 33.33%; float: left; }
  .order-firstm { order: -1; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-sm-3 { width: 50%; float: left; }
  .col-sm-4 { width: 33.33%; float: left; }
  .col-sm-6 { width: 50%; float: left; }
}
