
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color:white;
  
  
  /* background-color:transparent; */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 
  color: #333;
  line-height: 1.6;
  
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;    
  padding: 10px 20px;
  
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color:white;
  color: white;
  
}

.logo img {
  height: 75px; 
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: white;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}


@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    gap: 20px;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}






/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDER CONTAINER */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* SLIDES WRAPPER */
.slides {
  display: flex;
  width: 300%; /* Adjust based on number of slides */
  height: 100%;
  transition: transform 1s ease-in-out;
}

/* SINGLE IMAGE */
.slide {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  flex-shrink: 0;
}

/* OVERLAY */
.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  padding: 0 1rem;
}

/* DARK OVERLAY FOR TEXT READABILITY */
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE TEXT */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
}



















.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  background-color: cornflowerblue;
}







.about-section {
  background-color: cornflowerblue;
  padding: 4rem 2rem;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.about-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #555;
  line-height: 1.6;
}


.image-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.image-row img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(100%) brightness(0.8);
  transform: scale(1);
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-row img:hover {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
  box-shadow: 0 6px 20px pink;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}







  
.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}


ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 0.8rem 0;
  font-weight: 500;
}


.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto 0;
}

form input,
form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  padding: 0.75rem;
  background-color: #ffb703;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #ffa400;
}


footer {
  text-align: center;
  background: #111;
  color: #fff;
  padding: 1rem;
  margin-top: 3rem;
}


@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-img {
    width: 100%;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.services-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}

.section-title {
  font-size: 2.8rem;
  color:white;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0077b5;
  margin: 15px auto;
  border-radius: 5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.service-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards;
  animation-delay: calc(var(--i) * 0.2s);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
  font-size: 2.8rem;
  color: #0077b5;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #222;
  font-weight: 600;
}

.service-card p {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.6;
}


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-highlight {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
  font-weight: 700;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.project-container.reverse {
  flex-direction: row-reverse;
}

.project-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.project-text .project-number {
  font-size: 1.2rem;
  color: #0077b5;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.project-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.project-text p {
  color: #555;
  line-height: 1.6;
}

.project-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.project-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.project-image img:hover {
  transform: scale(1.03);
}


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .project-container, .project-container.reverse {
    flex-direction: column;
  }
  .project-text {
    text-align: center;
  }
}



.project-highlight {
  background: #f9f9f9;
  padding: 60px 20px;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.project-text {
  flex: 1 1 45%;
  max-width: 500px;
}

.project-text .project-number {
  color: #FF6B00;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.project-text h2 {
  font-size: 36px;
  margin: 20px 0;
  color: #0A0D1C;
  line-height: 1.3;
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #000;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-outline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #000;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.btn-outline:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.btn-outline:hover {
  color: #fff;
  border-color: #000;
}

.project-image {
  flex: 1 1 50%;
  max-width: 600px;
}

.project-image img {
  width: 300px;
  height: 250px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.project-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .project-container {
    flex-direction: column;
    text-align: center;
  }

  .project-text,
  .project-image {
    flex: 1 1 100%;
  }
}

.media-section {
  padding: 60px 20px 0;
  text-align: center;
  background: #fff;
}

.media-header {
  margin-bottom: 30px;
}

.media-tag {
  background-color: #b48c67;
  color: #fff;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

.media-header h2 {
  font-family: 'Georgia', serif;
  font-size: 48px;
  color: #0A0D1C;
  margin-top: 15px;
}

.media-visual {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.media-visual video {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 600px;
  display: block;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .media-header h2 {
    font-size: 36px;
  }

  .media-tag {
    font-size: 11px;
    padding: 4px 12px;
  }

  .media-visual video {
    max-height: 300px;
  }
}


.media-gallery {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.media-gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  font-size: 1.8rem;
  color: #222;
  background-color: #fff;
  border-radius: 50%;
  padding: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  color: #fff;
  background-color: #0077b5; 
  transform: scale(1.1);
}

.about-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #1a1a1a;
}


.gate-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 350px;
  margin: 0 auto 40px;
  overflow: hidden;
  border-radius: 10px;
  background: url('images/construction.jpg') center/cover no-repeat;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  cursor: pointer;
}

.gate {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2;
  transition: transform 1s ease;
}

.gate-left {
  left: 0;
  border-right: 1px solid #fff;
}

.gate-right {
  right: 0;
  border-left: 1px solid #fff;
}

.gate-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  pointer-events: none;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.about-hidden {
  opacity: 0;
  max-width: 900px;
  margin: 0 auto;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.about-hidden.show {
  opacity: 1;
  transform: translateY(0);
}

.about-hidden p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
  padding: 0 15px;
}

.image-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.image-row img {
  width: 280px;
  border-radius: 12px;
  transition: transform 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-row img:hover {
  transform: scale(1.05);
}


@media (max-width: 768px) {
  .gate-wrapper {
    height: 250px;
  }

  .section-title {
    font-size: 2rem;
  }

  .image-row img {
    width: 90%;
    max-width: 100%;
  }
}

.site-footer {
  background: gray;
  color: #f1f1f1;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  
}

.footer-container {
  display: flex;

  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid gray;
  padding-bottom: 30px;
  

}

.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
  
}

.footer-logo p {
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  border-left: 4px solid #fca311;
  padding-left: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fca311;
}

.social-icons a {
  color: #ccc;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: color 0.3s;
  
}

.social-icons a:hover {
  color: #fca311;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 0.95rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  
  }

  .footer-links, .footer-social {
    margin-top: 20px;
  }

.footer-social {
  background-color: #1a1a1a;
  padding: 30px 20px;
  text-align: center;
  color: #ffffff;
}

.footer-social h4 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #007bff;
  color: #ffffff;
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .footer-social h4 {
    font-size: 1.2rem;
  }

  .social-icons {
    gap: 20px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

.site-footer {
  background-color: #1a1a1a;
  padding: 15px 20px;
  text-align: center;
  color: #ffffff;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
  letter-spacing: 0.5px;
}


@media (max-width: 600px) {
  .site-footer {
    font-size: 0.8rem;
    padding: 12px 15px;
  }
}
}
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.office {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  width: 250px;
}

.office h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.office p {
  color: #555;
  font-size: 16px;
  line-height: 1.4;
}

.contact-methods a {
  display: block;
  margin: 10px 0;
  color: #1a73e8;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-methods a:hover {
  color: #0b5ed7;
}

.contact-methods p {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
}
.contact-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.contact-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 40px;
  color: #222;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gate-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  background: url('images/about-bg.jpg') center/cover no-repeat;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  margin-bottom: 40px;
}

.gate {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  transition: all 1.2s ease;
  z-index: 1;
}

.gate-left {
  left: 0;
  border-right: 2px solid #fff;
}

.gate-right {
  right: 0;
  border-left: 2px solid #fff;
}

.gate-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  z-index: 2;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}


.about-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #f9f9f9, #e9eef5);
  text-align: center;
}

.section-title {
  font-size: 42px;
  color: #222;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #1a73e8;
  margin: 12px auto 0;
  border-radius: 2px;
}

.about-content {
  max-width: 960px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.about-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-content p {
  font-size: 20px;
color: black;
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 0 10px;
  
}
.about-content strong{
  color:lab(33.61% 70.16 -85.09);
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.image-row img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-row img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
