html, body {
    overflow-x: hidden;
}






/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}



/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* SLIDES */
.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Dark overlay */
.slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}

.slide.active {
  opacity: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
  padding: 100px 50px;
}

.subheading {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #2ec4b6;
}

.description {
  margin: 20px 0;
  font-size: 16px;
  color: #ddd;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #2ec4b6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #26a69a;
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 30px;
  left: 50px;
  z-index: 3;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #2ec4b6;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .hero-content {
    padding: 80px 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}


.top-right {
    margin-left: 150px;
    display: flex;
    align-items: center;
  justify-content: flex-end;
  
}


/* TOP BAR */
.top-bar {
    background: #4b4653;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
     /* FIX */
}

.top-left span {
   
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 30px;   /* space between items */

}

/* NAVBAR */
.navbar {
    background: #ffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    position: relative;
    width: 100%;
}

/* IMPORTANT: PUSH PAGE CONTENT DOWN */



/* When scrolling */
.navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  background: #ffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Prevent content jump */
body.scrolled {
  padding-top: 90px; /* same as navbar height */
}


.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 80px;
    
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: #71d8e6;
  color: #0097a7;
  border-radius: 5px;
}


.btn {
    background: #2fbfa7;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    
}

/* HERO */
.hero {
    position: relative;
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e') no-repeat center/cover;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(60, 60, 70, 0.7);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 700px;
    margin-left: 5%;
}

.hero h4 {
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #2fbfa7;
}

.hero p {
    margin-bottom: 20px;
}

.hero-btn {
    background: #2fbfa7;
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        background: #fff;
        width: 200px;
        flex-direction: column;
        display: none;
    }

    .nav-links.active {
        display: flex;
        background-color: white;
    }

    .nav-links li {
        padding: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }
}



.top-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* EACH INFO BLOCK */
.top-item {
    display: flex;
    align-items: center;
    margin: 5px 8px;
}

.top-item i {
    font-size: 20px;
    margin-right: 10px;
    color: #2fbfa7;
}

.top-item strong {
    display: block;
    font-size: 13px;
}

.top-item p {
    font-size: 14px;
}

/* SOCIAL */
.social-icons {
    display: flex;
    align-items: center;
}

.social-icons span {
    margin-right: 10px;
    font-size: 13px;
}

.social-icons i {
    margin: 0 6px;
    cursor: pointer;
    transition: 0.3s;
    color: #ffffff;
}

.social-icons i:hover {
    color: #2fbfa7;
}

/* RESPONSIVE BEHAVIOR */
@media (max-width: 768px) {
    .top-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-item {
        width: 100%;
        margin: 10px 0;
    }

    .social-icons {
        margin-top: 10px;
    }
}
/* SERVICES SECTION */
.services {
    padding: 80px 0;
    background: #f8f9fb;
}

.services-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT TEXT */
.services-text {
    flex: 1;
    min-width: 300px;
}

.services-text h4 {
    color: #2fbfa7;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.services-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.services-text p {
    color: #555;
}
/* GENERAL */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f7f7f7;
}

.services {
  padding: 60px 20px;
  text-align: center;
  background: #f3f3f3;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Make sure parent is positioned */
.dropdown {
  position: relative;
}

/* Hide dropdown initially */
.dropdown-menu {
  position: absolute;
  top: 100%; /* right below Services */
  left: 0;
  background: #ffffff;
  min-width: 200px;
  
  display: none; /* IMPORTANT */
  list-style: none;
  padding: 0;
  margin: 0;

  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Show dropdown ONLY when hovering Services */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Links inside dropdown */
.dropdown-menu li a {
  display: block;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

/* Hover effect on items */
.dropdown-menu li a:hover {
  background: #f1f5f9;
  color: #0ea5e9;
}

/* TITLE */
.services h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.card {
  background: #e9e9e9;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s;
  cursor: pointer;
}

.card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.card h3 {
  margin: 0;
  font-size: 16px;
}

/* FEATURES */
.features {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-weight: 600;
  color: #28a745;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .services h2 {
    font-size: 28px;
  }

  .features {
    flex-direction: column;
    gap: 10px;
  }
}


/* GENERAL */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f7f7f7;
}

.services {
  padding: 60px 20px;
  text-align: center;
  background: #f3f3f3;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.services h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.subtitle {
  max-width: 750px;
  margin: 0 auto 40px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


/* CARD */
.card {
  background: #e8e8e8;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s;
  cursor: pointer;
}

.card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon {
  font-size: 38px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 15px;
  margin: 0;
}

/* FEATURES */
.features {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-weight: 600;
  color: #28a745;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .services h2 {
    font-size: 28px;
  }

  .features {
    flex-direction: column;
    gap: 10px;
  }
}


.civil-section {
  background: #f7f7f7;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.civil-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* SERVICES */
.services {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background: #eaeaea;
  padding: 30px;
  width: 230px;
  border-radius: 12px;
  transition: 0.3s;
  cursor: pointer;
}

.card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #2ec4b6;
}

.card h3 {
  font-size: 18px;
  color: #222;
}

.card:hover {
  background: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON HIGHLIGHT */
.card:hover i {
  color: #2ec4b6;
  transform: scale(1.2);
}
.card:hover {
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* FEATURES */
.features {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #07bb64;
  font-weight: bold;
}

.features span {
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .civil-section h2 {
    font-size: 28px;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }

  .features {
    flex-direction: column;
    gap: 15px;
  }
}




/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER EFFECT */
.service-card:hover {
  background: #2bb673;
  color: #fff;
  transform: translateY(-8px);
}

.service-card:hover p {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}


.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white; /* important so it doesn't become transparent */
}






.arch-section {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.arch-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* SERVICES */
.services {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: #eaeaea;
  padding: 35px 25px;
  width: 220px;
  border-radius: 15px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* ICON */
.card i {
  font-size: 45px;
  margin-bottom: 15px;
  color: #333;
  transition: 0.4s;
}

/* TEXT */
.card h3 {
  font-size: 18px;
  color: #222;
}

/* HOVER EFFECT */
.card:hover {
  background: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON HIGHLIGHT */
.card:hover i {
  color: #2ec4b6;
  transform: scale(1.2);
}

/* GLOW EFFECT */
.card::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(46,196,182,0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.card:hover::before {
  width: 300px;
  height: 300px;
}

/* FEATURES */
.features {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #2ec4b6;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .arch-section h2 {
    font-size: 28px;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }

  .features {
    flex-direction: column;
    gap: 15px;
  }
}





.mep-section {
  background: #f4f7f9;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.mep-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* SERVICES */
.services {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: #ffffff;
  padding: 35px 25px;
  width: 220px;
  border-radius: 15px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ICON BASE */
.card i {
  font-size: 45px;
  margin-bottom: 15px;
  transition: 0.4s;
}

/* INDIVIDUAL ICON COLORS */
.card:nth-child(1) i {
  color: #ff6b6b; /* Electrical - red */
}

.card:nth-child(2) i {
  color: #4dabf7; /* HVAC - blue */
}

.card:nth-child(3) i {
  color: #20c997; /* Plumbing - green */
}

.card:nth-child(4) i {
  color: #f59f00; /* Maintenance - orange */
}

/* TEXT */
.card h3 {
  font-size: 18px;
  color: #222;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON HIGHLIGHT */
.card:hover i {
  transform: scale(1.3);
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
}

/* GLOW BACKGROUND */
.card::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

/* DIFFERENT GLOW COLORS */
.card:nth-child(1):hover::before {
  background: rgba(255,107,107,0.2);
}

.card:nth-child(2):hover::before {
  background: rgba(77,171,247,0.2);
}

.card:nth-child(3):hover::before {
  background: rgba(32,201,151,0.2);
}

.card:nth-child(4):hover::before {
  background: rgba(245,159,0,0.2);
}

.card:hover::before {
  width: 300px;
  height: 300px;
}

/* FEATURES */
.features {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-weight: bold;
}

.features span {
  color: #2bb673;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mep-section h2 {
    font-size: 28px;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }

  .features {
    flex-direction: column;
    gap: 15px;
  }
}

.estimate-section {
  background: #f4f6f8;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, sans-serif;

}

.estimate-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* SERVICES */
.services {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: #ffffff;
  padding: 35px 25px;
  width: 220px;
  border-radius: 15px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ICON */
.card i {
  font-size: 45px;
  margin-bottom: 15px;
  transition: 0.4s;
}

/* UNIQUE ICON COLORS */
.card:nth-child(1) i {
  color: #ff6b6b; /* Cost */
}

.card:nth-child(2) i {
  color: #4dabf7; /* BOQ */
}

.card:nth-child(3) i {
  color: #20c997; /* Budget */
}

.card:nth-child(4) i {
  color: #f59f00; /* Analysis */
}

/* TEXT */
.card h3 {
  font-size: 18px;
  color: #222;
}

/* HOVER CARD */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON HIGHLIGHT */
.card:hover i {
  transform: scale(1.3);
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
}

/* GLOW EFFECT */
.card::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

/* DIFFERENT GLOW COLORS */
.card:nth-child(1):hover::before {
  background: rgba(255,107,107,0.2);
}

.card:nth-child(2):hover::before {
  background: rgba(77,171,247,0.2);
}

.card:nth-child(3):hover::before {
  background: rgba(32,201,151,0.2);
}

.card:nth-child(4):hover::before {
  background: rgba(245,159,0,0.2);
}

.card:hover::before {
  width: 300px;
  height: 300px;
}

/* FEATURES */
.features {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-weight: bold;
}

.features span {
  color: #2bb673;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .estimate-section h2 {
    font-size: 28px;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }

  .features {
    flex-direction: column;
    gap: 15px;
  }
}





.about-hero .overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}



.enable-section {
  background: #f4f7f9;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.enable-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.subtitle {
  max-width: 750px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* SERVICES */
.services {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: #ffffff;
  padding: 30px 25px;
  width: 250px;
  border-radius: 15px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ICON */
.card i {
  font-size: 45px;
  margin-bottom: 15px;
  transition: 0.4s;
}

/* ICON COLORS */
.card:nth-child(1) i {
  color: #ff6b6b; /* clearance */
}

.card:nth-child(2) i {
  color: #4dabf7; /* roads */
}

.card:nth-child(3) i {
  color: #20c997; /* utilities */
}

.card:nth-child(4) i {
  color: #f59f00; /* facilities */
}

/* TEXT */
.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* HOVER */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON HIGHLIGHT */
.card:hover i {
  transform: scale(1.3);
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
}

/* GLOW EFFECT */
.card::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.card:nth-child(1):hover::before {
  background: rgba(255,107,107,0.2);
}

.card:nth-child(2):hover::before {
  background: rgba(77,171,247,0.2);
}

.card:nth-child(3):hover::before {
  background: rgba(32,201,151,0.2);
}

.card:nth-child(4):hover::before {
  background: rgba(245,159,0,0.2);
}

.card:hover::before {
  width: 300px;
  height: 300px;
}

/* FEATURES */
.features {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-weight: bold;
}

.features span {
  color: #2ec4b6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .enable-section h2 {
    font-size: 28px;
  }

  .card {
    width: 100%;
    max-width: 320px;
  }

  .features {
    flex-direction: column;
    gap: 15px;
  }
}

.material-section {
  background: #f4f7f9;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, sans-serif;

}





.material-section img {
    width: 100%;
    max-height: 400px;   /* control height */
    object-fit: cover;   /* crop nicely */
    border-radius: 10px;
}





.material-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.subtitle {
  max-width: 750px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* SERVICES */
.services {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: #ffffff;
  padding: 30px 25px;
  width: 250px;
  border-radius: 15px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ICON */
.card i {
  font-size: 45px;
  margin-bottom: 15px;
  transition: 0.4s;
}

/* ICON COLORS */
.card:nth-child(1) i {
  color: #ff6b6b;
}

.card:nth-child(2) i {
  color: #4dabf7;
}

.card:nth-child(3) i {
  color: #20c997;
}

.card:nth-child(4) i {
  color: #f59f00;
}

/* TEXT */
.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ICON HIGHLIGHT */
.card:hover i {
  transform: scale(1.3);
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
}

/* GLOW EFFECT */
.card::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.card:nth-child(1):hover::before {
  background: rgba(255,107,107,0.2);
}

.card:nth-child(2):hover::before {
  background: rgba(77,171,247,0.2);
}

.card:nth-child(3):hover::before {
  background: rgba(32,201,151,0.2);
}

.card:nth-child(4):hover::before {
  background: rgba(245,159,0,0.2);
}

.card:hover::before {
  width: 300px;
  height: 300px;
}

/* FEATURES */
.features {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-weight: bold;
}

.features span {
  color: #2ec4b6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .material-section h2 {
    font-size: 28px;
  }

  .card {
    width: 100%;
    max-width: 320px;
  }

  .features {
    flex-direction: column;
    gap: 15px;
  }
}




/* NAVBAR */
nav {
  background: transparent;
  padding: 15px 30px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  position: relative;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;

  width: 220px;
  list-style: none;
  padding: 10px 0;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);

  display: none;
  z-index: 999;
}

.dropdown-menu li {
  padding: 10px 15px;
}

.dropdown-menu li a {
  color: #fff;
  display: block;
  transition: 0.3s;
  border-radius: 6px;
}

.dropdown-menu li a:hover {
  background: rgba(255,255,255,0.15);
  padding-left: 10px;
}

/* show class */
.dropdown-menu.show {
  display: block;
}





.contact-section {
  padding: 80px 0;
  background: #f4f8fb;
}



.contact-section h1 { 
    margin-top: 40px;
text-align: center;    
font-size: 36px;
  color: #222;
}

.contact-section p {
  max-width: 700px;
  margin: 15px auto;
  color: #666;
  line-height: 1.6;
}


.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE */
.contact-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
  margin-bottom: 20px;
}

.info-box p {
  margin: 10px 0;
  font-weight: 500;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
}

.input-group label {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #888;
  font-size: 14px;
  transition: 0.3s;
  background: #fff;
  padding: 0 5px;
}

/* FLOAT LABEL */
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #2bb673;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 12px;
  background: #2bb673;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #249e61;
}

.success-msg {
  margin-top: 10px;
  color: green;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}






.services-section {
    padding: 80px 20px;
    background: #f7f7f7;
    text-align: center;
}

.services-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a3c;
    margin-bottom: 10px;
}

.services-section .subtitle {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
}

/* Hexagon Shape */
.hex {
    width: 160px;
    height: 180px;
    margin: 0 auto 15px;
    position: relative;
    clip-path: polygon(
        25% 5%, 75% 5%, 
        100% 50%, 75% 95%, 
        25% 95%, 0% 50%
    );
    overflow: hidden;
    border: 4px solid #1a1a3c;
    transition: 0.3s;
}

.hex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover Effect */
.service-card:hover .hex {
    transform: translateY(-8px);
    border-color: #ff6b00;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a3c;
}

.service-card p {
    font-size: 14px;
    color: #666;
    padding: 0 10px;
}

/* Tablet */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hex {
        width: 130px;
        height: 150px;
    }
}



/* FOOTER */


.footer {
  background: #111;
  color: #fff;
}

.footer-main {
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
}

.footer-box p {
  margin: 8px 0;
  font-size: 14px;
}

.footer-box a {
  color: #ccc;
  text-decoration: none;
}

.footer-box a:hover {
  color: #fff;
}

.footer-box i {
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #000;
  font-size: 14px;
}

/* Newsletter Section */
.newsletter {
  background: url('images/footer11.jpg') center/cover no-repeat;
  height: 180px;
  position: relative;
}

.newsletter-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter-btn {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s;
}

.newsletter-btn:hover {
  background: #fff;
  color: #000;
}

/* Social Bar */
.social-bar {
  display: flex;
}

.social {
  flex: 1;
  text-align: center;
  padding: 25px 0;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}

.instagram {
  background: #5fa8dc;
}

.facebook {
  background: #4b6ea8;
}

.linkedin {
  background: #0e6a8a;
}

.social:hover {
  opacity: 0.85;
}

/* Footer Bottom */
.footer-bottom {
  background: #000;
  color: #ccc;
  text-align: left;
  padding: 15px 30px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .social-bar {
    flex-direction: column;
  }

  .footer-bottom {
    text-align: center;
  }

  .newsletter {
    height: 140px;
  }

  .newsletter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* HIDE MENU ICON ON DESKTOP */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* NAV LINKS DEFAULT (DESKTOP) */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        text-align: center;
        display: none;   /* hidden by default */
        padding: 20px 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    /* SHOW MENU WHEN ACTIVE */
    .nav-links.active {
        display: flex;
    }
}

/* add css changes for mobile dropdown  */

/* Hide dropdown by default */
.dropdown-menu {
    display: none;
}

/* Show when active */
.dropdown.open .dropdown-menu {
    display: block;
}

/* Optional: better mobile styling */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: #333;
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* full width cards */
    }
}





.page-slider {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.page-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.page-slide.active {
  opacity: 1;
  z-index: 1;
}






.project-section {
  padding: 60px 20px;
  background: #f8f9fb;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}



.box-style {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #007bff;
  border-radius: 30px;
  font-size: 34px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #007bff;
  text-align: center;
}

.project-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Images */
.project-images {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 15px;
}

.project-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
}

.project-images img:hover {
  transform: scale(1.05);
}

/* Details */
.project-details {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.project-details h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0a2540;
}

.location {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.status {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.description {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
}

.line {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .project-card {
    flex-direction: column;
  }

  .project-images {
    grid-template-columns: 1fr;
  }
}




