 /* ===== Global Styles ===== */
    body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      background: #f5f5f5;
      color: #333;
      line-height: 1.6;
    }
    h1, h2, h3, h4 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      color: #1a1a1a;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    /* ===== Header ===== */
    header {
      background: #1a1a1a;
      padding: 15px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo img {
      height: 50px;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    nav a {
      color: #fff;
      font-weight: 600;
      transition: color 0.3s;
    }
    nav a:hover {
      color: #ffcc00;
    }
    .menu-btn {
      display: none;
      font-size: 24px;
      color: #fff;
      cursor: pointer;
    }

    
/* ===== Hero Section with Banner ===== */
.hero {
  position: relative;
  height: 100vh;
  background: url("banner.jpeg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  animation: heroZoomIn 3s ease-in-out forwards;
}

/* Dark overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Text styling */
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 2s ease-in-out forwards;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Button styling */
.hero .btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ffcc00;
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.hero .btn:hover {
  background: #ffaa00;
  color: #fff;
}

/* Banner animations */
@keyframes heroZoomIn {
  0% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}


    /* ===== Apply Now Section ===== */
.apply-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a1a, #333); /* professional dark gradient */
}

.apply-section .btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ffcc00;   /* primary color */
  color: #000;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.apply-section .btn:hover {
  background: #ffaa00;  /* darker yellow on hover */
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

/* Mobile-friendly */
@media (max-width: 768px) {
  .apply-section .btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
}


    /* ===== Key Stats ===== */
    .key-stats {
      background: #992b2b;
      padding: 60px 0;
      text-align: center;
    }

    .key-stats .section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f8b90ad3;
} 

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .stat-card {
      background: #1a1a1a;
      color: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(230, 171, 9, 0.678);
    }
    .stat-card h3 {
      font-size: 2rem;
      color: #ffcc00;
    }

    /* ========================
   REVIEWS
======================== */

    .reviews {
  padding: 60px 0;
  background: #0e0d0d;
  color: #fff;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.review-card {
  background: #8d3535;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgb(221, 163, 2);
}

.review-card p {
  font-style: italic;
  color: #f0f0f0;
}

.review-card h4 {
  margin-top: 10px;
  font-weight: bold;
}

/* ========================
   SECTION TITLE
======================== */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #f59b15;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ffcc00;   /* accent underline */
  margin: 10px auto 0;
  border-radius: 2px;
}
 

/* ========================
   WHY CHOOSE US
======================== */
.why-choose-us {
  padding: 80px 0;
  background: #992b2b; /* Light clean background */
  text-align: center;
}

.why-choose-us .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #f8b90ad3;
  position: relative;
}

.why-choose-us .section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #ff9900; /* Accent underline */
  margin: 12px auto 0;
  border-radius: 3px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.why-card {
  background: #050505;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(221, 145, 4, 0.856);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f1b306;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f0e9e9;
}


   /* ========================
   FOOTER
======================== */
footer {
  background: #1a1a1a; /* Dark background */
  color: #f0f0f0;
  padding: 60px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

footer h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ff9900; /* Accent color */
}

footer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #ff9900; /* Highlight on hover */
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #888;
}


/* Social Media Icons (Image version) */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 30px;     /* size of icons */
  height: 30px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
  filter: brightness(1.2); /* highlight effect */
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: inline-block;
}

.whatsapp-btn img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
}


/* ========================
   RESPONSIVE
======================== */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* WhatsApp Chat Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}


                      --------ABOUT US-----------------
/* Reset */
* {margin:0; padding:0; box-sizing:border-box;}
body {font-family:Arial, Helvetica, sans-serif; line-height:1.6; background:#fff; color:#333;}
.container {width:90%; max-width:1200px; margin:auto;}

/* Header */
header {background:#1a1a1a; color:#fff; padding:15px 0; position:sticky; top:0; z-index:1000;}
.header-content {display:flex; justify-content:space-between; align-items:center;}
.logo img {height:60px;}
.menu-btn {display:none; font-size:1.8rem; cursor:pointer; color:#fff;}
/* Menu Button (Hamburger) */
.menu-btn {
  display: none; /* hidden on desktop */
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
  position: absolute;   /* position inside header */
  top: 20px;            /* distance from top */
  right: 20px;          /* distance from right */
  z-index: 1001;        /* make sure it's above nav */
}

/* Show only in mobile view */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
}

.nav-links {list-style:none; display:flex; gap:25px;}
.nav-links li a {color:#fff; text-decoration:none; transition:0.3s;}
.nav-links li a:hover, .nav-links li a.active {color:#f5a623;}

/* Mobile Nav */
@media(max-width:768px){
  .menu-btn{display:block;}
  nav{display:none; width:100%;}
  nav.active{display:block; background:#1a1a1a; margin-top:10px;}
  .nav-links{flex-direction:column; align-items:center; padding:15px 0; gap:15px;}
  .nav-links li a{padding:10px; border-radius:6px;}
  .nav-links li a:hover{background:#f5a623; color:#000;}
}

/* Hero */
.about-hero {background:url('about\ banner') no-repeat center/cover; height:50vh; position:relative;}
.hero-overlay {background:rgba(0,0,0,0.6); height:100%; display:flex; justify-content:center; align-items:center;}
.hero-text {text-align:center; color:#fff; padding:0 20px;}
.hero-text h1 {font-size:2.5rem; margin-bottom:10px;}
.hero-text p {font-size:1.1rem;}

/* Story Gallery */
.story-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.story-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}



/* Sections */
.about-section {padding:60px 0; text-align:center;}
.section-title {font-size:2rem; color:#1a1a1a; margin-bottom:20px;}
.about-section p {max-width:800px; margin:auto; color:#555; line-height:1.7; font-size:1rem;}

/* Mission Vision Values */
.mvv {background:#fdfdfd;}
.mvv-grid {display:grid; grid-template-columns:repeat(auto-fit, minmax(250px,1fr)); gap:30px;}
.mvv-card {background:#367af8; padding:25px; border-radius:10px; box-shadow:0 4px 8px rgba(216, 142, 3, 0.822);}
.mvv-card h3 {color:#ffffff; margin-bottom:10px;}
.mvv-card p {color:#0a0a0a; font-size:0.95rem;}

/* ===== Leadership Section ===== */
.leadership {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.leadership .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #367af8;
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(20, 115, 192, 0.959);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #367af8;
}

.team-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #367af8;
  margin-bottom: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.team-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #121313fd;
  margin-bottom: 15px;
}

.toggle-arrow {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: #0c0c0c;
}

.team-card.active .toggle-arrow {
  transform: rotate(180deg);
}

/* Hidden bio text */
.team-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  text-align: justify;
  font-size: 0.95rem;
  color: #555;
}

.team-card.active .team-bio {
  max-height: 600px; /* enough space to expand */
  opacity: 1;
  margin-top: 10px;
}



/* Certificates Section */
.certificates {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.certificates .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #367af8;
}

.certificates .section-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #030303;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.certificate-card {
  background: #4c8afd;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(238, 164, 5, 0.89);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
}

.certificate-card p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #eeebeb;
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}




/* Footer */
footer {background:#1a1a1a; color:#fff; padding:40px 0 20px;}
.footer-content {display:flex; flex-wrap:wrap; gap:30px; justify-content:space-between;}
.footer-col {flex:1 1 250px;}
.footer-col h3 {color:#f5a623; margin-bottom:10px;}
.footer-col ul{list-style:none;}
.footer-col ul li{margin-bottom:8px;}
.footer-col ul li a{color:#bbb; text-decoration:none; transition:0.3s;}
.footer-col ul li a:hover{color:#f5a623;}
.footer-bottom{text-align:center; border-top:1px solid #444; margin-top:20px; padding-top:10px; font-size:0.9rem;}

/* Mobile */
@media(max-width:768px){
  .hero-text h1{font-size:2rem;}
  .footer-content{flex-direction:column; text-align:center;}
}


----------------SERVICES---------------------
/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, Helvetica, sans-serif; line-height: 1.6; color: #333; background: #fff; }
.container { width: 90%; max-width: 1200px; margin: auto; }

/* Header */
header { background: #1a1a1a; padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 60px; }
.menu-btn { display: none; font-size: 1.8rem; color: #fff; cursor: pointer; }
.nav-links { list-style: none; display: flex; gap: 25px; }
.nav-links li a { color: #fff; text-decoration: none; font-weight: 500; transition: 0.3s; }
.nav-links li a:hover, .nav-links li a.active { color: #f5a623; }

/* Mobile Nav */
@media(max-width: 768px) {
  .menu-btn { display: block; }
  nav { display: none; width: 100%; }
  nav.active { display: block; background: #1a1a1a; margin-top: 10px; }
  .nav-links { flex-direction: column; align-items: center; gap: 15px; padding: 15px 0; }
  .nav-links a { padding: 10px; border-radius: 6px; }
  .nav-links a:hover { background: #ffcc00; color: #000; }
}

/* Hero */
.services-hero {
  background: url('services\ banner') no-repeat center/cover;
  height: 55vh;
  display: flex; align-items: center; justify-content: center;
}
.services-hero .hero-overlay {
  background: rgba(0,0,0,0.6);
  padding: 40px; border-radius: 10px; text-align: center; color: #fff;
}

/* Services Section */
.services { padding: 60px 0; background: #fffefe; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 40px; color: #368af8; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
}
.service-card {
  background: #35a8f5; border-radius: 12px; padding: 25px; text-align: center;
  box-shadow: 0 4px 10px rgba(68, 119, 231, 0.973); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 8px 16px rgba(206, 123, 14, 0.897); }
.service-card img { width: 100px; margin-bottom: 15px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: #399dfc; }
.service-card p { font-size: 0.95rem; color: #f3dddd; }

/* Footer */
footer { background: #1a1a1a; color: #fff; padding: 40px 0 20px; margin-top: 50px; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
.footer-col { flex: 1 1 250px; }
.footer-col h3 { margin-bottom: 15px; font-size: 1.2rem; color: #f5a623; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #bbb; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: #f5a623; }
.footer-bottom { text-align: center; margin-top: 20px; border-top: 1px solid #444; padding-top: 10px; font-size: 0.9rem; }
.social-icons { display: flex; gap: 15px; margin-top: 10px; }
.social-icons img { width: 30px; height: 30px; transition: 0.3s; }
.social-icons a:hover img { transform: scale(1.1); filter: brightness(1.2); }

/* Responsive */
@media(max-width: 768px) {
  .services-hero h1 { font-size: 2rem; }
  .services-hero p { font-size: 1rem; }
  .footer-content { flex-direction: column; text-align: center; }
  .social-icons { justify-content: center; }
}

--------------------MAINTENANCE-----------------------
/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background: #fff; }
.container { width: 90%; max-width: 1200px; margin: auto; }

/* Header */
header { background: #1a1a1a; padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 60px; }
.menu-btn { display: none; font-size: 1.8rem; color: #fff; cursor: pointer; }
.nav-links { list-style: none; display: flex; gap: 25px; }
.nav-links li a { color: #fff; text-decoration: none; font-weight: 500; transition: 0.3s; }
.nav-links li a:hover { color: #f5a623; }

/* Mobile Nav */
@media(max-width: 768px) {
  .menu-btn { display: block; }
  nav { display: none; width: 100%; }
  nav.active { display: block; background: #1a1a1a; margin-top: 10px; }
  .nav-links { flex-direction: column; align-items: center; gap: 15px; padding: 15px 0; }
  .nav-links a { padding: 10px; border-radius: 6px; }
  .nav-links a:hover { background: #ffcc00; color: #000; }
}

/* Hero Section */
.hero {
  background: url('maintenance\ banner') no-repeat center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  background: rgba(0,0,0,0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-text { color: #fff; max-width: 800px; padding: 20px; }
.hero-text h1 { font-size: 2.5rem; margin-bottom: 15px; color: #f5a623; }
.hero-text p { font-size: 1.2rem; }

/* Facilities */
.facilities { padding: 60px 0; text-align: center;  background: rgba(253, 252, 252, 0.918);}
.facilities h2 { font-size: 2rem; margin-bottom: 40px; color: #ceab12de; }
.facility-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.facility-card {
  background: #519fe7;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.facility-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.facility-card h3 { margin-bottom: 10px; color: #fdfcf9; }
.facility-card p { font-size: 0.95rem; color: #110f0f; }

/* Footer */
footer { background: #1a1a1a; color: #fff; padding: 40px 0 20px; margin-top: 50px; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
.footer-col { flex: 1 1 250px; }
.footer-col h3 { margin-bottom: 15px; font-size: 1.2rem; color: #f5a623; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #bbb; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: #f5a623; }
.footer-bottom { text-align: center; margin-top: 20px; border-top: 1px solid #444; padding-top: 10px; font-size: 0.9rem; }
.social-icons { display: flex; gap: 15px; margin-top: 10px; }
.social-icons img { width: 30px; height: 30px; transition: 0.3s; }
.social-icons a:hover img { transform: scale(1.1); filter: brightness(1.2); }

/* Responsive */
@media(max-width: 768px) {
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 1rem; }
  .footer-content { flex-direction: column; text-align: center; }
  .social-icons { justify-content: center; }
}

--------------------------RENOVATION----------------
/* Renovation Hero */
.renovation-hero {
  position: relative;
  background: url('reno-banner.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.renovation-hero .hero-overlay {
  background: rgb(255, 255, 255);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.renovation-hero .hero-text h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.renovation-hero .hero-text p {
  font-size: 1.2rem;
  color: #b14a4a;
}

/* Renovation Services Grid */
.services-grid-section {
  padding: 60px 20px;
  background: #f8f3f3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #508bf8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.2rem;
  margin: 15px 10px 5px;
  color: #fafafa;
}

.service-card p {
  font-size: 0.95rem;
  color: #0c0c0c;
  margin: 0 10px 20px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(41, 94, 173, 0.2);
}

/* Responsive Text */
@media (max-width: 768px) {
  .renovation-hero .hero-text h1 {
    font-size: 1.8rem;
  }
  .renovation-hero .hero-text p {
    font-size: 1rem;
  }
}

----------------APPLY NOW-------------
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background: #222;
  color: #fff;
  padding: 10px 20px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00aaff;
}

/* Hero Section */
.apply-hero {
  background: url("apply\ banner") center/cover no-repeat;
  color: #fff;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.apply-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
}

.apply-hero h1 {
  font-size: 2.5rem;
}

.apply-hero p {
  margin-top: 10px;
  font-size: 1.2rem;
}

/* Application Form */
.apply-form-section {
  padding: 40px 20px;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.apply-form {
  max-width: 600px;
  margin: auto;
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

.apply-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

.apply-form input,
.apply-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.apply-form input:focus,
.apply-form textarea:focus {
  border-color: #007BFF;
  outline: none;
}

.submit-btn {
  display: block;
  width: 100%;
  background: #007BFF;
  color: #fff;
  padding: 14px;
  font-size: 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #0056b3;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .apply-hero {
    height: 180px;
  }

  .apply-hero h1 {
    font-size: 1.8rem;
  }

  .apply-form {
    padding: 15px;
  }

  .submit-btn {
    font-size: 1rem;
    padding: 12px;
  }
}

