*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Oswald', sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}
.logo img {
    height: 55px;     /* Perfect for premium header */
    width: 100%;
    display: block;
}

/* Optional: Slight hover effect */
.logo img:hover {
    opacity: 0.9;
    transition: 0.3s ease;
}
/* ================= HEADER ================= */
/* HEADER */
.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 60px;
    z-index: 1000;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo img {
    height: 50px;
    background: black;
}

/* NAV DESKTOP */
.nav {
    display: flex;
    align-items: center;
    gap: 35px;
    background:#0c0c0c ;
    padding: 10px 20px 10px 20px;
}

.nav a {
    color: #f9f5f5;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.nav a:hover {
    color:#585551;
}

/* DROPDOWN DESKTOP */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 45px;
    left: 0;
    min-width: 220px;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 10px 0;

    display: none;
    flex-direction: column;

    z-index: 999;
}

.dropdown-menu a {
    padding: 10px 20px;
    color: #ddd;
}

.dropdown-menu a:hover {
    background: rgba(56, 55, 54, 0.1);
    color: #8b8987;
}

/* ACTIVE STATE (click controlled) */
.dropdown.active .dropdown-menu {
    display: flex;
}
/* HAMBURGER */
.menu-toggle {
    
    font-size: 28px !important;
    color: #fff !important;
    cursor: pointer !important;
}
/* Default Desktop */
.menu-toggle {
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}


/* ================= MOBILE ================= */

@media (max-width: 992px) {

    .header {
        padding: 20px 30px;
    }

    .menu-toggle {
        display: block;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
    }

    .nav {
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background: rgba(0,0,0,0.95);
      backdrop-filter: blur(8px);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 20px 30px;
      gap: 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
}

.nav.active {
    max-height: 1000px;
}

    .nav.active {
        max-height: 700px;   /* slightly bigger */
    }

    /* Remove desktop hover dropdown */
    .dropdown-menu {
        position: static;
        background: none;
        padding-left: 15px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
    }

}


/* ================= HERO ================= */
.hero{
    width: 100%;
    height:100vh;
    position:relative;
    overflow:hidden;
}
.slider{
    height:100%;
    position:relative;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;   /* important */
    
    display: flex;
    align-items: flex-end;      /* bottom */
    justify-content: flex-start; /* left */

    padding: 80px;   /* spacing from edges */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease;
}
.slide.active{
    opacity:1;
    z-index:1;
}
.overlay {
    max-width: 600px;
    background: rgba(0,0,0,0.65);
    padding: 40px;
    backdrop-filter: blur(6px);
}
.overlay h1{
    font-size:60px;
}
.overlay h1 span{
    color:#8b8987;
}
.overlay p{
    margin-top:15px;
    font-size:18px;
    letter-spacing:2px;
    color:#ccc;
}
/* ================= RESPONSIVE ================= */
@media(max-width:992px){
    .nav{
        display:none;
    }
    .overlay h1{
        font-size:42px;
    }
}
@media(max-width:600px){
    .overlay h1{
        font-size:30px;
    }
    .overlay{
        padding:20px;
    }
}
/* ================= ABOUT SECTION ================= */
.about {
    background: #111;
    padding: 50px 0;
    
}
.about-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
/* LEFT SIDE */
.about-content {
    flex: 1;
}
.about-tag {
    color: #8b8987;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.about-tag span {
    width: 40px;
    height: 2px;
    background: black;
    margin-right: 10px;
}
.about-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-content p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}
.about-features {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}
.about-features ul {
    list-style: none;
}
.about-features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}
.about-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #8b8987;
}
/* BUTTON */
.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #8b8987;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.about-btn:hover {
    background: #fff;
    color: black;
}
/* RIGHT SIDE IMAGES */
.about-images {
    flex: 1;
}
.img-large {
    position: relative;
}
.img-large img {
    width: 100%;
    height: 380px;       /* control main image height */
    object-fit: cover;
    display: block;
    border-radius: 5px;
}
.experience-box {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #8b8987;
    padding: 20px;
    text-align: center;
}
.experience-box h3 {
    font-size: 32px;
    color: #000;
}
.experience-box p {
    font-size: 14px;
    color: #000;
}
.img-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.img-row img {
    width: 50%;
    height: 180px;      /* control small image height */
    object-fit: cover;
    border-radius: 5px;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    .about-content h2 {
        font-size: 36px;
    }
    .about-features {
        flex-direction: column;
        gap: 20px;
    }
    .img-row {
        flex-direction: column;
    }
    .img-row img {
        width: 100%;
    }
}
/* ================= MARQUEE SECTION ================= */
.marquee-section {
    background: #000;
    padding: 25px 0;
    overflow: hidden;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}
.marquee-track span {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
}
.marquee-track span::after {
    content: "•";
    color: #8b8987;
    margin-left: 40px;
}
/* Animation */
@keyframes scrollMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* Responsive */
@media (max-width: 768px) {
    .marquee-track span {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .experience-box  {
        display: none;
    }
}

/* ------ SERVICE SECTION ------ */

/* SECTION */
.services-horizontal-section{
background:#111;
color:#fff;
overflow:hidden;
}

/* heading */
.services-heading{
text-align:center;
padding:80px 20px;
}

.section-tag{
font-size:18px;
letter-spacing:3px;
color:#8b8987;
}

.services-heading h2{
font-size:40px;
margin-top:10px;
}

.services-heading span{
color:#8b8987;
}

/* wrapper */
.services-wrapper{
height:100vh;
overflow:hidden;
position:relative;

}

/* horizontal track */
.services-track{
display:flex;
height:100%;
}

/* service card */
.service-card{
min-width:100vw;
display:flex;
align-items:center;
justify-content:center;
gap:60px;
padding:0 8%;
transform: translateY(-150px);
}

/* image */
.service-card img{
width:45%;
height:520px;
object-fit:cover;
border-radius:20px;
}

/* content */
.service-content{
max-width:500px;
}

.service-number{
font-size:70px;
font-weight:700;
color:rgba(255,122,0,0.15);
display:block;
}

.service-content h2{
font-size:42px;
margin:10px 0;
}

.service-content p{
color:#aaa;
font-size:18px;
line-height:1.7;
}

/* next section example */
.next-section{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
font-size:40px;
background:#222;
color:white;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

.services-heading h2{
font-size:28px;
}

.service-card{
flex-direction:column;
text-align:center;
gap:30px;
}

.service-card img{
width:100%;
height:250px;
}

.service-number{
font-size:50px;
}

.service-content h2{
font-size:26px;
}

.service-content p{
font-size:16px;
}

}
/* ===== PRICING SECTION ===== */

.pricing-section {
  background: #0c0c0c;
  padding: 100px 5%;
  color: #fff;
  text-align: center;
}

.section-header {
  margin-bottom: 70px;
}

.section-header .overline {
  color: #8b8987;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 48px;
  margin: 15px 0;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #aaa;
  font-size: 15px;
}

/* GRID FIX */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.pricing-card {
  background: #1a1a1a;
  padding: 50px 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.4s ease;
  border: 1px solid #222;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: #060605;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.price {
  font-size: 38px;
  color: #8b8987;
  font-weight: bold;
  margin-bottom: 25px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 12px;
  color: #ddd;
  font-size: 14px;
}

.pricing-btn {
  background: #8b8987;
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.pricing-btn:hover {
  background: #f0f0f0;
  color: #0f0f0f;
}

/* RESPONSIVE */
/* Tablet + Mobile 2x2 */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card {
    padding: 35px 20px;
  }

  .price {
    font-size: 28px;
  }

  .pricing-btn {
    padding: 10px;
    font-size: 14px;
  }
}

/* Very Small Phones */
@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TESTIMONIAL SECTION ===== */

.testimonial-section {
  background: #0c0c0c;
  padding: 50px 5%;
  color: #fff;
}

.testimonial-container {
  display: flex;
  gap: 60px;
  align-items: stretch; /* IMPORTANT */
  max-width: 1200px;
  margin: auto;
}


/* LEFT IMAGE */
.testimonial-image {
  flex: 1;
  position: relative;
  aspect-ratio: 2 / 1;   /* 2:3 portrait ratio */
  overflow: hidden;
  border-radius: 12px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: #8b8987;
  opacity: 0.8;
}

/* RIGHT CONTENT */
.testimonial-content {
  flex: 1;
}

.testimonial-content .overline {
  color: #8b8987;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-content h2 {
  font-size: 42px;
  margin: 20px 0 40px;
  line-height: 1.3;
}

.accent {
  color: #8b8987;
}

/* TESTIMONIAL CARDS */
.testimonial-cards {
  display: flex;
  gap: 25px;
}

.testimonial-card {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  flex: 1;
  transition: 0.3s ease;
  border: 1px solid #222;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #8b8987;
}

.stars {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.reviewer h4 {
  margin: 0;
  font-size: 16px;
}

.reviewer span {
  font-size: 13px;
  color: #8b8987;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-container {
    flex-direction: column;
  }

  .testimonial-cards {
    flex-direction: column;
  }

  .testimonial-content h2 {
    font-size: 32px;
  }
}

.innovative-gallery {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

#galleryCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.gallery-ui {
  position: absolute;
  top: 20%;
  left: 10%;
  color: #fff;
  z-index: 10;
  pointer-events: none;
}

.gallery-title {
  font-size: 5vw;
  line-height: 1.1;
}

.gallery-title span {
  color: #ff5e14;
}

.gallery-desc {
  margin-top: 20px;
  font-size: 1.4vw;
  max-width: 450px;
}

.gallery-btn {
  margin-top: 30px;
  background: #ff5e14;
  color: #fff;
  padding: 1vw 2vw;
  font-size: 1.2vw;
  border: none;
  cursor: pointer;
}




/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  padding: 80px 5% 20px;
  color: #ccc;
  border-top: 1px solid #222;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* Logo */
.footer-logo {
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}

/* Headings */
.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Paragraph */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.footer-col ul li:hover {
  color: #8b8987;
  transform: translateX(5px);
}

/* Button */
.footer-btn {
  display: inline-block;
  background: #8b8987;
  color: #fff;
  padding: 10px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  width: auto;
}
/* Footer Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.footer-logo {
    width: 160px;   /* adjust if needed */
    margin-bottom: 20px;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.7;
    max-width: 260px;
}

/* Push button slightly down */

.footer-btn:hover {
  background: #f0f0f0;
  color:#0f0f0f
}

/* Contact */
.contact-info li {
  margin-bottom: 10px;
}

/* Social */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #1a1a1a;
  color: #fff;
  border-radius: 5px;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff5e14;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 13px;
  color: #888;
}

/* ===== RESPONSIVE ===== */

/* ================= FOOTER MOBILE FIX ================= */

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer {
    padding: 60px 25px;
  }

  /* Each column spacing */
  .footer-col {
    padding-bottom: 30px;
    border-bottom: 1px solid #1a1a1a;
  }

  .footer-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Brand column */
  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-btn {
    margin-top: 20px;
  }

  /* List alignment */
  .footer-col ul {
    padding: 0;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  /* Social icons centered properly */
  .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .social-icons a {
    margin: 0 8px;
  }

  /* Footer bottom */
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
  }
}

/* ================= FAQ SECTION ================= */

.faq-section {
  background: #111111;
  padding: 0px 5%;
  color: #fff;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-tag {
  color: #8b8987;
  font-size: 30px;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.faq-tag::before,
.faq-tag::after {
  content: "";
  width: 40px;
  height: 2px;
  background:#8b8987 ;
  position: absolute;
  top: 50%;
}

.faq-tag::before {
  left: -50px;
}

.faq-tag::after {
  right: -50px;
}

.faq-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.faq-header p {
  max-width: 600px;
  margin: auto;
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

/* CONTAINER */
.faq-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
}

/* LEFT SIDE */
.faq-left {
  flex: 1;
}

.faq-item {
  background: #2a2a2a;
  margin-bottom: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item.active {
  background: #8b8987;
}

.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item.active .faq-question {
  color: #fff;
  background: #8b8987;
}

/* ACCORDION ANIMATION */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  background: #1e1e1e;
  color: #ddd;
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

.arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* BUTTON */
.faq-btn {
  display: inline-block;
  margin-top: 25px;
  background: #8b8987;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-btn:hover {
  background: #fefdfc;
  color: black;
}

/* RIGHT SIDE */
.faq-right {
  flex: 1;
}

.faq-right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {

  .faq-container {
    flex-direction: column;
    gap: 40px;
  }

  .faq-right {
    order: -1;
  }

  .faq-header h2 {
    font-size: 34px;
  }

}

/* Mobile */
@media (max-width: 576px) {

  .faq-section {
    padding: 45px 20px;
  }

  .faq-header h2 {
    font-size: 26px;
  }

  .faq-header p {
    font-size: 13px;
  }

  .faq-question {
    padding: 15px;
    font-size: 14px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .faq-btn {
    width: 100%;
    text-align: center;
  }

}

/* ================= DARK ABOUT SECTION ================= */

.about-dark {
  background: #000;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 6%;
  margin-top: 30px;
}

.about-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* LEFT SIDE */
.about-left {
  flex: 1;
}

.about-tag {
  display: inline-block;
  background: #111;
  color:#8b8987;
  padding: 6px 14px;
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-sub {
  color: #8b8987;
  font-size: 20px;
  margin-bottom: 20px;
}

.about-description {
  font-size: 16px;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 90%;
}

/* FEATURES GRID */
.about-features-dark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
  border-left: 3px solid #222;
  padding-left: 15px;
  transition: 0.3s ease;
}

.feature-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes white on black */
}

.feature-box:hover {
  border-left: 3px solid #8b8987;
  color: #8b8987;
}

.feature-box.highlight {
  border-left: 3px solid #8b8987;
  color: #8b8987;
}

.feature-box.highlight img {
  filter: none; /* keep original color if needed */
}
.feature-box:hover {
  border-left: 3px solid #8b8987;
  color: #8b8987;
}

.feature-box.highlight {
  border-left: 3px solid #8b8987;
  color: #8b8987;
}

/* RIGHT SIDE IMAGE */
.about-wrapper{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:70px;
}

.about-left{
flex:1.1;
}

.about-right{
    flex:0.9;
    display:flex;
    flex-direction:column;
    gap:25px;
    margin-top:75px;
}
/* leadership */

.leadership-title{
color:#fff;
font-size:26px;
margin-bottom:10px;
}

.leader-card{
background:#111;
border:1px solid #2a2a2a;
padding:24px;
border-radius:10px;
transition:0.3s;
}

.leader-card:hover{
border-color:#555;
transform:translateY(-4px);
}

.leader-card p{
color:#cfcfcf;
font-size:16px;
line-height:1.7;
margin-bottom:18px;
}

.leader-info{
display:flex;
align-items:center;
gap:12px;
}

.leader-info img{
width:45px;
height:45px;
border-radius:50%;
object-fit:cover;
}

.leader-info h4{
margin:0;
font-size:15px;
color:#fff;
}

.leader-info span{
font-size:13px;
color:#9a9a9a;
}

/* FEATURES GRID */

.about-features-dark{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
margin-top:30px;
}

/* MOBILE */

@media(max-width:1000px){

.about-wrapper{
flex-direction:column;
}

.about-right{
margin-top:40px;
}

.about-features-dark{
grid-template-columns:1fr;
}

}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .about-dark {
    height: auto;
    padding: 100px 20px;
  }

  .about-wrapper {
    flex-direction: column;
  }

  .about-right img {
    max-height: 400px;
  }

  .about-heading {
    font-size: 32px;
  }

  .about-features-dark {
    grid-template-columns: 1fr;
  }

}

/* ================= DRIVE SECTION ================= */

.drive-section {
  background: #000;
  color: #fff;
  padding: 70px 8%;
}

.drive-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}

.drive-label {
  color: #8b8987;
  font-size: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.drive-left h2 {
  font-size:25px;
  margin-bottom: 25px;
}

.drive-left p {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Vision Card */
.vision-card {
  background: #111;
  padding: 50px;
  border-left: 3px solid #8b8987;
}

.vision-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.vision-card p {
  color: #bbb;
  line-height: 1.7;
}

/* Divider */
.drive-divider {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 40px 0;
}

/* Mission Section */
.mission-title {
  font-size: 28px;
  margin-bottom: 25px;
 
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.mission-card {
  background: #0d0d0d;
  padding: 20px 20px;
  border: 1px solid #1a1a1a;
  transition: 0.3s ease;
}

.mission-card:hover {
  border-color: #8b8987;
  transform: translateY(-5px);
}

.mission-icon {
  font-size: 28px;
  color: #cac8c6;
  margin-bottom: 25px;
}

.mission-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.mission-card p {
  color: #aaa;
  line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .drive-top {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .drive-left h2 {
    font-size: 22px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

}

/* ================= LEADERS SECTION ================= */

.leaders-section {
  background: #000;
  padding: 100px 6%;
  color: #fff;
}

.leaders-wrapper {
  display: grid;
  grid-template-columns: 1fr 500px 1fr;
  gap: 50px;
  align-items: start;
  max-width: 1400px;
  margin: auto;
}

/* LEFT */
.leaders-left h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.leaders-left p {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* FEATURES */
.leaders-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-box {
  width: 45px;
  height: 45px;
  border: 2px solid #8b8987;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b8987;
  font-weight: bold;
}

.feature-item span {
  font-size: 15px;
  color: #ddd;
}

/* CENTER IMAGE */
.leaders-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* RIGHT */
.leaders-right h3 {
  font-size: 28px;
  color: #8b8987;
  margin-bottom: 20px;
}

.leaders-right p {
  font-size: 15px;
  color: #bbb;
  line-height: 1.7;
}
/* RIGHT COLUMN */
.leaders-right {
    padding-left: 20px;
}

.leaders-right h3 {
    color: #8b8987;
    font-size: 28px;
    margin-bottom: 20px;
}

.leaders-right p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Standards List */
.standards-list {
    margin-bottom: 30px;
}

.standard-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.standard-item span {
    color: #8b8987;
    font-size: 18px;
    margin-right: 12px;
}

.standard-item p {
    margin: 0;
    color: #eee;
    font-size: 15px;
}

/* Button */
.standards-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #8b8987;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.standards-btn:hover {
    background: rgb(255, 255, 255);
    color: #000;
}
/* ================= RESPONSIVE FIX ================= */

@media (max-width: 1200px) {

  .leaders-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: left;
  }

  .leaders-image {
    order: 2;
  }

  .leaders-right {
    order: 3;
    padding-left: 0;
  }

  .leaders-left {
    order: 1;
  }

  .leaders-image img {
    width: 100%;
    height: auto;
  }

  /* Fix features alignment */
  .leaders-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .feature-item span {
    line-height: 1.6;
  }

  .icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

}


/* MOBILE */
@media (max-width: 576px) {

  .leaders-section {
    padding: 0px 20px;
  }

  .leaders-left h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .leaders-left p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .feature-item span {
    font-size: 14px;
  }

  .leaders-right h3 {
    font-size: 20px;
  }

  .leaders-right p {
    font-size: 14px;
    line-height: 1.6;
  }

  .standards-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .standard-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .standards-btn {
    width: 100%;
    text-align: center;
    margin-top: 25px;
  }

}
/* ================= WHY SECTION ================= */

.why-section {
    background: #000;
    padding: 20px 8%;
    color: #fff;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-tag {
    color: #8b8987;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.why-header h2 {
    font-size: 20px;
    line-height: 1.2;
}

.why-header h2 span {
    color:#8b8987;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

/* CARDS */
.why-card {
    background: #939090;
    padding: 40px 30px;
    transition: 0.3s ease;
    border: 1px solid #1f1f1f;
    color: rgb(22, 21, 21);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: #8b8987;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-card p {
    color: #262626;
    font-size: 18px;
    line-height: 1.6;
}

/* Highlight card */
.why-card.highlight {
   
  color: rgb(22, 21, 21);
}

.why-card.highlight p {
    color: #262626;
}

/* Commitment Block */
.commitment-block {
    max-width: 900px;
    margin: 80px auto 0;
    text-align: center;
}

.commitment-block h3 {
    font-size: 34px;
    color: #8b8987;
    margin-bottom: 20px;
}

/* Accent Divider */
.commitment-divider {
    width: 80px;
    height: 3px;
    background: #8b8987;
    margin: 20px auto 40px;
}

/* Lead line */
.commitment-lead {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Normal paragraph */
.commitment-block p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Highlight last line */
.commitment-highlight {
    margin-top: 25px;
    font-weight: 600;
    color: #fff;
}
/* ROUND ICON CONTAINER */
.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #0e0e0e;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

/* ICON SIZE */
.why-icon img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-header h2 {
        font-size: 28px;
    }

    .why-card {
        padding: 30px 20px;
    }
}
.contact-page{
background:#0b0b0b;
color:#e5e5e5;
padding:80px 20px;
font-family:Arial, Helvetica, sans-serif;
}

.contact-container{
max-width:1200px;
margin:auto;
}

.contact-title{
font-size:42px;
font-weight:700;
margin-bottom:10px;
color:#ffffff;
}

.brand{
color:#9a9a9a;
margin-bottom:25px;
font-weight:500;
}

.intro{
color:#cfcfcf;
line-height:1.7;
margin-bottom:20px;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
margin-top:40px;
}

.contact-info h3,
.contact-form h3,
.why-contact h3,
.appointment h3{
color:#ffffff;
margin-bottom:15px;
font-size:24px;
}

.contact-info p{
line-height:1.7;
margin-bottom:15px;
color:#cfcfcf;
}

.phone{
font-size:18px;
color:#ffffff;
}

.services{
margin:15px 0 20px;
padding-left:18px;
}

.services li{
margin-bottom:8px;
}

.form{
display:flex;
flex-direction:column;
gap:12px;
margin-top:15px;
}

.form input,
.form textarea{
background:#1a1a1a;
border:1px solid #333;
padding:12px;
color:white;
border-radius:4px;
font-size:14px;
}

.form textarea{
min-height:120px;
resize:vertical;
}

.form button{
background:#ffffff;
color:#000;
border:none;
padding:12px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.form button:hover{
background:#cfcfcf;
}

.why-contact{
margin-top:60px;
padding-top:40px;
border-top:1px solid #2a2a2a;
}

.why-contact ul{
padding-left:18px;
margin-bottom:20px;
}

.why-contact li{
margin-bottom:8px;
}

.appointment{
margin-top:50px;
background:#151515;
padding:40px;
border-radius:6px;
}

.call-now{
font-size:18px;
margin-top:10px;
}

.tagline{
margin-top:15px;
color:#9a9a9a;
}

/* MOBILE */

@media(max-width:768px){

.contact-title{
font-size:32px;
}

.contact-grid{
grid-template-columns:1fr;
gap:40px;
}

.appointment{
padding:30px;
}

}