/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background: #081c2c;
    color: #fff;
    font-size: 14px;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    width: 98%;
    margin: auto;
}

.top-bar i {
    color: #ff6a00;
    margin-right: 6px;
}

/* Header Two Color */
.header {
    display: flex;
    height: 80px;
}

.header-left {
    background: #fff;
    width: 30%;
    display: flex;
    align-items: center;
    padding-left: 0px;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
}

.header-left img {
    height: 78px;
}

.header-right {
    background: #ff6a00;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%)
}

.header-right nav ul {
    display: flex;
    list-style: none;
}

.header-right nav ul li {
    margin: 0 15px;
}

.header-right nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.btn-primary {
    background: #fff;
    color: #ff6a00;
    padding: 10px 18px;
    border-radius: 6px;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    color: #fff;
    margin-left: 15px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.slides {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slides::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 15, 40, 0.9),
            rgba(0, 15, 40, 0.4));
}

.slides.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 120px;
}

.vertical-text {
    position: absolute;
    left: 40px;
    top: -36px;
    transform: rotate(-90deg);
    font-size: 17px;
    opacity: 0.7;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-left: 5%;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    height: 10px;
    width: 10px;
    background: #fff;
    opacity: 0.5;
    display: inline-block;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
}

/* Responsive */
@media(max-width: 992px) {
    .header-left {
        width: 40%;
    }

    .header-right {
        width: 60%;
    }

    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media(max-width: 576px) {
    .hero-content {
        padding-left: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .vertical-text {
        display: none;
    }
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .mobile-nav {
        position: absolute;
        top: 80px;
        right: 0;
        background: #ff6a00;
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        z-index: 999;
    }

    .mobile-nav ul {
        flex-direction: column;
    }

    .mobile-nav ul li {
        margin: 15px 0;
    }

    .mobile-nav.active {
        display: flex;
    }

    .header-left img {
        height: 62px;
        margin-left: -40px;
    }
}
/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  /* Left Content */
  .about-tag {
    color: #ff6a00;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
  }
  
  .about-content h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .about-content h4 {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .about-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
  }
  
  .read-more {
    color: #ff6a00;
    font-weight: 600;
    text-decoration: none;
  }
  
  /* Right Visual */
  .about-visual {
    position: relative;
    background: #ff8a4c;
    padding: 40px;
    height: 500px;
   }
  
  .about-slider {
    position: relative;
    overflow: hidden;
  }
  
  .about-slide {
    width: 100%;
    display: none;
    border-radius: 6px;
  }
  
  .about-slide.active {
    display: block;
  }
  
  /* Experience Badge */
  .experience-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: #fff;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  
  .experience-badge span {
    font-size: 40px;
    font-weight: 700;
    display: block;
  }
  
  .experience-badge small {
    font-size: 16px;
    color: #555;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .about-grid {
      grid-template-columns: 1fr;
    }
  
    .about-visual {
      padding: 25px;
    }
  
    .experience-badge {
      left: 10px;
      bottom: 10px;
    }
  }
  
  @media (max-width: 576px) {
    .about-content h2 {
      font-size: 28px;
    }
  
    .about-content p {
      font-size: 15px;
    }
  }
  


  /* Footprint Section */
.footprint-section {
    background: #061623;
    padding: 80px 0;
    color: #fff;
  }
  
  /* Top Part */
  .footprint-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 5%;
  }
  
  .footprint-top h2 {
    font-size: 42px;
    line-height: 1.2;
  }
  
  /* Counters */
  .counters {
    display: flex;
    gap: 25px;
  }
  
  .counter-box {
    border: 2px dotted #ff6a00;
    padding: 30px;
    text-align: center;
    width: 180px;
  }
  
  .counter-box h3 {
    font-size: 36px;
    color: #fff;
  }
  
  .counter-box p {
    font-size: 14px;
    margin-top: 10px;
    color: #ccc;
  }
  




  /* Responsive */
  @media (max-width: 992px) {
    .footprint-top {
      grid-template-columns: 1fr;
    }
  
    .counters {
      justify-content: center;
      flex-wrap: wrap;
    }
  }
  
  @media (max-width: 576px) {
    .footprint-top h2 {
      font-size: 28px;
    }
  }

  .sam-services-slider-section {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
    display: flex;
    align-items: center;
  }
  
  /* viewport */
  .sam-slider-viewport {
    overflow: hidden;
    width: 100%;
  }
  
  /* sliding row */
  .sam-slider-row {
    display: flex;
    gap: 25px; /* GAP BETWEEN BOXES */
    transition: transform 0.6s ease;
  }
  
  /* card */
  .sam-service-box {
    min-width: calc(33.333% - 17px);
    background: #fff;
    padding: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 10px;
  }
  
  .sam-service-box img {
    width: 100%;
    height: 170px;
    object-fit: cover;
  }
  
  .sam-service-box h4 {
    margin: 12px 0 6px;
    color: black;
  }
  
  .sam-service-box p {
    font-size: 14px;
    color: #555;
  }
  
  .sam-service-box a {
    display: inline-block;
    margin-top: 8px;
    color: #f6451c;
    font-weight: 600;
    text-decoration: none;
  }
  
  /* buttons */
  .sam-slide-btn {
    background: #f6451c;
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
  }
  
  /* mobile */
  @media (max-width: 768px) {
    .sam-service-box {
      min-width: 100%;
    }
  }
  


  

  

  .ai-section {
    width: 100%;
    background: #fff;
    position: relative;
  }
  
  .ai-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    gap: 40px;
  }
  
  .ai-content {
    flex: 1;
  }
  
  .ai-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
  }
  
  .ai-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  .ai-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .feature span {
    font-size: 28px;
    color: #ff6a00;
  }
  
  .feature h4 {
    font-size: 16px;
    font-weight: 600;
  }
  
  .btn-primary {
    display: inline-block;
    background: #ff6a00;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
  }
  
  .ai-image {
    flex: 1;
  }
  
  .ai-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
  }
  
  /* CTA BAR */
  .cta-bar {
    background: #ff6a00;
    color: #fff;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
    border-radius: 10px;
  }
  
  .cta-bar h3 {
    font-size: 26px;
    font-weight: 700;
  }
  
  .btn-light {
    background: #fff;
    color: #000;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .ai-container {
      flex-direction: column;
    }
  
    .ai-content h2 {
      font-size: 28px;
    }
  
    .cta-bar {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }
  


  


  .sc-clients-area {
    padding: 80px 20px;
    text-align: center;
    background-color: #f6f6f6;
    margin-top: 5%;
  }
  
  .sc-clients-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
  }
  
  .sc-clients-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
  }
  
  .sc-clients-move {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease-in-out;
  }
  
  .sc-client-box {
    min-width: 320px;
    height: 180px;
    background: #d9d9d9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sc-client-box img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
  }
  
  /* dots */
  .sc-clients-dots {
    margin-top: 30px;
  }
  
  .sc-dot {
    display: inline-block;
    width: 18px;
    height: 6px;
    background: #d2b2a0;
    border-radius: 6px;
    margin: 0 6px;
    cursor: pointer;
  }
  
  .sc-dot.active {
    background: #f45c1c;
  }
  
  /* responsive */
  @media (max-width: 768px) {
    .sc-clients-title {
      font-size: 28px;
    }
  
    .sc-client-box {
      min-width: 260px;
    }
  }
  


  .sc-footer-wrap {
    position: relative;
    background: url("..//assets/images/banner1.webp") center/cover no-repeat;
    color: #fff;
  }
  
  .sc-footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
  }
  
  .sc-footer-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 80px 8%;
  }
  
  .sc-footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
  }
  
  .sc-footer-socials {
    display: flex;
    gap: 15px;
  }
  
  .sc-footer-social {
    width: 40px;
    height: 40px;
    background: #f45c1c;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  
  .sc-footer-col h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .sc-footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .sc-footer-col ul li {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .sc-footer-col a{
    color: white;
    text-decoration: none
  } 
  
  .sc-footer-contact p {
    margin-bottom: 12px;
    line-height: 1.6;
  }
  
  .sc-footer-contact i {
    color: #f45c1c;
    margin-right: 8px;
  }
  
  .sc-footer-bottom {
    position: relative;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: space-between;
    padding: 15px 8%;
    font-size: 14px;
  }
  
  .sc-footer-bottom span {
    color: #f45c1c;
    font-weight: 600;
  }
  
  /* scroll button */
  .sc-footer-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #f45c1c;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .sc-footer-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .sc-footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .sc-footer-socials {
      justify-content: center;
    }
  
    .sc-footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 8px;
    }
  }
  


 
  .if-section {
    padding: 70px 20px;
  }
  
  .if-container {
    max-width: 1200px;
    margin: auto;
  }
  
  /* HERO */
  .if-hero-wrap {
    height: 90vh;
    background: url("../assets/images/industrybanner.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .if-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
  }
  
  .if-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
  }
  
  .if-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .if-hero-content p {
    font-size: 1.2rem;
  }
  
  /* INTRO */
  .if-intro h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .if-intro p {
    text-align: center;
    max-width: 800px;
    margin: auto;
    color: #444;
  }
  
  /* GRID */
  .if-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  
  .if-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }
  
  .if-card img {
    margin-bottom: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  .if-card h3 {
    margin-bottom: 10px;
  }
  
  .if-card p {
    color: #ff8a4c;
  }
  
  .if-dark {
    background: #111;
    color: #fff;
  }
  
  /* SPLIT */
  .if-flex {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .if-text {
    flex: 1;
  }
  
  .if-text ul {
    margin-top: 15px;
  }
  
  .if-text li {
    margin-bottom: 8px;
  }
  
  .if-image {
    flex: 1;
  }
  
  .if-image img {
    width: 100%;
    border-radius: 12px;
  }
  
  /* FUTURE */
  .if-future {
    background: linear-gradient(135deg, #ff8a4c, #ff8a4c, #ff8a4c);
    color: #fff;
  }
  
  /* COMPANY */
  .if-company {
    background: #f5f7fa;
    text-align: center;
  }
  
  .if-company p {
    max-width: 850px;
    margin: auto;
    color: #444;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .if-hero-content h1 {
      font-size: 2.2rem;
    }
  }
  


  /* ====================     about us     ============================ */

  /* HERO */
.sam-about-hero {
  height: 90vh;
  background: url('../assets/images/aboutus\ banner.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sam-about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.sam-about-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.sam-about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* COMMON */
.sam-about-section {
  padding: 50px 20px;
}

.sam-about-container {
  max-width: 1200px;
  margin: auto;
}

.sam-about-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.sam-about-text {
  flex: 1;
}

.sam-about-image {
  flex: 1;
}

.sam-about-image img {
  width: 100%;
  border-radius: 12px;
}

.sam-center {
  text-align: center;
  margin-bottom: 2%;
}

.sam-about-width {
  max-width: 100%;
  margin: auto;
  line-height: 1.7;
  letter-spacing: normal;
}

/* STATS */
.sam-about-stats {
  background: #f45c1c;
  color: #fff;
  padding: 35px;
}

.sam-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.sam-stat-box {
  text-align: center;
}

.sam-stat-box h3 {
  font-size: 2.5rem;
}

/* SERVICES */
.sam-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.sam-service-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
}
.sam-service-card img{
  width: 100%;
  height: 150px;
  margin-bottom: 5%;
}
.sam-service-card h4{
  margin-bottom: 2%;
}

/* DARK */
.sam-about-dark {
  background: #111;
  color: #fff;
}

.sam-mv-box {
  flex: 1;
  background: #1c1c1c;
  padding: 30px;
  border-radius: 10px;
}
.sam-mv-box h3{
  margin-bottom: 2%;
}

/* WHY */
.sam-why-list {
  max-width: 600px;
  margin: 30px auto 0;
  list-style: none;
}

.sam-why-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .sam-about-hero-content h1 {
    font-size: 2.2rem;
  }
}

/* Our Projects Section */
.sc-projects-section {
  padding: 80px 20px;
  background: #0e0e0e;
}

.sc-projects-container {
  max-width: 1200px;
  margin: auto;
}

.sc-projects-title {
  text-align: center;
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 10px;
}

.sc-projects-subtitle {
  text-align: center;
  color: #bbbbbb;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Grid */
.sc-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Cards */
.sc-project-card {
  background: #151515;
  color: #ffffff;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.4;
  transition: all 0.3s ease;
  border-left: 4px solid #f6451c;
}

.sc-project-card:hover {
  transform: translateY(-5px);
  background: #1e1e1e;
  box-shadow: 0 8px 25px rgba(246, 69, 28, 0.25);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .sc-projects-title {
    font-size: 28px;
  }

  .sc-project-card {
    font-size: 14px;
  }
}

/* Our Clientele Section */
.sc-clientele-section {
  padding: 80px 20px;
  background: #111;
}

.sc-clientele-container {
  max-width: 1200px;
  margin: auto;
}

.sc-clientele-title {
  text-align: center;
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 10px;
}

.sc-clientele-subtitle {
  text-align: center;
  color: #bcbcbc;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Grid Layout */
.sc-clientele-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

/* Client Card */
.sc-client-card {
  background: #1a1a1a;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14.5px;
  transition: all 0.3s ease;
  border-left: 4px solid #f6451c;
}

.sc-client-card:hover {
  background: #222;
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(246, 69, 28, 0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .sc-clientele-title {
    font-size: 28px;
  }

  .sc-client-card {
    font-size: 14px;
  }
}


/* =============    contact us       =================== */

/* Contact Banner */
.sc-contact-banner {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("../assets/images/contactusbanner.jpg") center/cover no-repeat;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 0 20px;
}

.sc-contact-banner h1 {
  font-size: 42px;
  margin-bottom: 12px;
  color: white;
}

.sc-contact-banner p {
  font-size: 16px;
  color: #ddd;
}


/* Section */
.sc-contact-section {
  padding: 80px 20px;
}

.sc-contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Contact Info */
.sc-contact-info h2,
.sc-contact-form h2 {
  margin-bottom: 25px;
  font-size: 28px;
  color: white;
}

.sc-info-box {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #f6451c;
}

.sc-info-box h4 {
  margin-bottom: 20px;
  color: white ;
}

.sc-info-box a {
  color: #f6451c;
  text-decoration: none;
}

/* Form */
.sc-contact-form {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
}

.sc-contact-form input,
.sc-contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  outline: none;
}

.sc-contact-form button {
  width: 100%;
  padding: 12px;
  background: #f6451c;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.sc-contact-form button:hover {
  background: #ff5c2a;
}

/* Mobile */
@media (max-width: 768px) {
  .sc-contact-container {
    grid-template-columns: 1fr;
  }

  .sc-contact-banner h1 {
    font-size: 30px;
  }
}


/* ================     services     =========================== */

/* Banner */
.sc-services-banner {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("../assets/images/banner4.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sc-services-banner h1 {
  font-size: 42px;
  color: white;
}

.sc-services-banner p {
  color: #ddd;
}

/* Services */
.sc-services-section {
  padding: 80px 20px;
}

.sc-services-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.sc-service-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: 0.3s;
}

.sc-service-card:hover {
  transform: translateY(-8px);
}

.sc-service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.sc-service-card h3 {
  margin: 20px 0 10px;
  color: white;
}

.sc-service-card p {
  padding: 0 20px;
  color: #ccc;
  font-size: 14px;
}

.sc-service-card button {
  margin-top: 15px;
  padding: 10px 25px;
  background: #f6451c;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
}

/* Popup */
.sc-service-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.sc-popup-content {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  position: relative;
}

.sc-popup-content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.sc-popup-content input,
.sc-popup-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
}

.sc-popup-content button {
  width: 100%;
  padding: 12px;
  background: #f6451c;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.sc-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 22px;
  color: white;
}

/* Mobile */
@media(max-width: 768px) {
  .sc-services-banner h1 {
    font-size: 30px;
  }
}