* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* body {
  background-color: #f9f9f9;
  color: #333;
}*/


body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;

  /* Premium soft background */
  background: linear-gradient(to bottom, #f8fafc, #eef2f7);

  color: #1e293b;

  /* Smooth feel */
  line-height: 1.6;
  letter-spacing: 0.3px;

  /* Better rendering */
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}


/* ----------------------header----------------- */



.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-section img {
  height: 50px;
  width: 50px;
  border-radius: 8px;
}

.brand-text h2 {
  font-size: 18px;
  margin: 0;
  color: #ffffff;
}

.brand-text span {
  font-size: 12px;
  color: #38bdf8;
  letter-spacing: 1px;
}

/* Nav Links */

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #e2e8f0;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

/* underline animation */
.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #38bdf8;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #38bdf8;
}

/* Call Button */

.call-btn {
  padding: 10px 18px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.call-btn i {
  margin-right: 5px;
}

.call-btn:hover {
  transform: scale(1.05);
}

/* Mobile */

.menu-icon {
  display: none;
  font-size: 22px;
  color: white;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0f172a;
    width: 100%;
    flex-direction: column;
    text-align: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .call-btn {
    display: none;
  }
} 




/* ------------------slider------------------- */

.hero {
  position: relative;
}

.slideshow-container {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.mySlides {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}


.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  
}




@media (max-width: 768px) {

  .slideshow-container {
    height: 60vh;   /* smaller height for mobile */
  }

  .mySlides img {
    object-fit: cover;
    object-position: center top;  /* show building top */
  }

}

/* DARK OVERLAY (premium feel) */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* TEXT STYLE */
.hero-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  z-index: 2;
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 600;
  max-width: 500px;
  line-height: 1.3;
}

/* FADE ANIMATION */
.fade {
  animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
  from {opacity: 0.4;}
  to {opacity: 1;}
}

/* DOTS */
.dot {
  height: 10px;
  width: 10px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s;
}

.dot.active {
  background-color: #38bdf8;
}






  

  .text {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 2px 2px 8px #000;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 90vw;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  
  .slideshow-container {
    position: relative;
  }
  
  .mySlides {
    position: relative;
  }


  

  .fade .text {
    animation: fadeText 1.5s ease-out forwards;
  }
  
  @keyframes fadeText {
    from {
      opacity: 0;
      transform: translate(-50%, 20px);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
  

  
  

/* -------------------our service---------------- */






/* our services */

.services-section {
  padding: 90px 20px;
  background: linear-gradient(to bottom, #f8fafc, #eef2f7);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */

.service-card i {
  font-size: 30px;
  color: #38bdf8;
  margin-bottom: 15px;
}

/* TEXT */

.service-card h3 {
  font-size: 16px;
  color: #1e293b;
}

/* HOVER */

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* MORE BUTTON */

.more-btn-container {
  margin-top: 30px;
}

.more-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  background: #38bdf8;
  cursor: pointer;
  font-weight: 600;
}

/* HIDDEN */

.hidden-services {
  display: none;
  margin-top: 20px;
}


.service-card p {
  font-size: 13px;
  color: #64748b;
  margin-top: 8px;
}


.hidden-services {
  display: none;
  transition: all 0.3s ease;
}









/* ----------------------completed construction site -----------------*/




.projects-section {
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Title */

.section-title {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 40px;
}

/* Grid */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}


/* CARD */

.card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */

.card img {
  width: 100%;
  height: 375px;
  object-fit: cover;
  transition: 0.5s ease;
}

/* OVERLAY */

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: 0.4s ease;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* TEXT */

.card-overlay h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
}

.card-overlay p {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
  padding: 0 10px;
}

/* BUTTON */

.view-btn {
  padding: 8px 18px;
  background: #38bdf8;
  color: #000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.view-btn:hover {
  background: #0ea5e9;
  transform: scale(1.05);
}

/* HOVER EFFECT */

.card:hover img {
  transform: scale(1.1);
}

.card:hover .card-overlay {
  opacity: 1;
}



/* ------------------------------construction cycle flex---------------- */




.construction-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8fafc, #eef2f7);
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Titles */

.section-title {
  font-size: 32px;
  color: #0f172a;
}

.section-subtitle {
  color: #64748b;
  margin-bottom: 50px;
  font-size: 15px;
}

/* Grid */

.construction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Card */

.step-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Step Number */

.step-number {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #38bdf8;
  color: #000;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
}

/* Image */

.step-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* Title */

.step-card h3 {
  padding: 15px;
  font-size: 16px;
  color: #1e293b;
}







/* ------------architect design -----------*/



.architect-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8fafc, #eef2f7);
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Titles */

.section-title {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #64748b;
  margin-bottom: 50px;
  font-size: 15px;
}

/* Grid */

.architect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Card */

.design-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.design-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image */

.card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

/* Title */

.design-card h3 {
  padding: 15px;
  font-size: 18px;
  color: #1e293b;
}

/* Images */

.box1 { background-image: url('image/arch/floor1.avif'); }
.box2 { background-image: url('image/arch/3d-elevation2.avif'); }
.box3 { background-image: url('image/arch/structural.avif'); }
.box4 { background-image: url('image/arch/modern.avif'); }












/* -----------------------Achivements------------------------------ */


.project-info {
  background: linear-gradient(to bottom, #f8fafc, #eef2f7);
  padding: 90px 20px;
  text-align: center;
}

.project-info h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #0f172a;
  letter-spacing: 1px;
}

/* GRID */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */

.info-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 35px 20px;
  border-radius: 20px;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.4);
}

/* ICON */

.info-card i {
  font-size: 38px;
  margin-bottom: 15px;
  color: #38bdf8;
}

/* NUMBER */

.info-card h3 {
  font-size: 30px;
  margin: 10px 0;
  color: #0f172a;
}

/* TEXT */

.info-card p {
  font-size: 14px;
  color: #64748b;
  letter-spacing: 0.5px;
}

/* HOVER EFFECT */

.info-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}


  
/* --------------------team our-------------------------- */
/* SECTION */

.our-team {
  padding: 90px 20px;
  background: linear-gradient(to bottom, #f8fafc, #eef2f7);
  text-align: center;
}

.our-team h2 {
  font-size: 34px;
  color: #0f172a;
  margin-bottom: 50px;
}

/* GRID */

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */

.team-member {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  background: #fff;
}

/* IMAGE */

.team-member img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: 0.5s ease;
}

/* TEXT */

.team-member h3 {
  margin-top: 15px;
  font-size: 18px;
  color: #0f172a;
}

.team-member p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 15px;
}

/* HOVER EFFECT */

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-member:hover img {
  transform: scale(1.1);
}




/* ----------------------map---------------------------- */



.map-section {
  padding: 90px 20px;
  background: linear-gradient(to bottom, #f8fafc, #eef2f7);
  text-align: center;
}

/* TITLE */

.map-section h3 {
  font-size: 34px;
  color: #0f172a;
  margin-bottom: 40px;
}

/* CONTAINER */

.map-container {
  max-width: 1000px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;

  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

/* MAP */

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* HOVER EFFECT */

.map-container:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}



.map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;

  background: rgba(0,0,0,0.7);
  color: #fff;

  padding: 15px 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.map-overlay h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.map-overlay p {
  font-size: 13px;
  color: #cbd5e1;
}






  
  


/* --------------contact section--------------- */


.contact-section {
  background: #0f172a;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.contact-card {
  background: #1e293b;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.contact-card:hover {
  transform: translateY(-8px);
  border: 1px solid #38bdf8;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.contact-card i {
  font-size: 28px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-card p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Social Icons */

.social-icons {
  text-align: center;
  margin-top: 40px;
}

.social-icons a {
  margin: 0 10px;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #38bdf8;
  color: #000;
}