/* 1. FONT IMPORT */
@font-face {
  font-family: 'Avalon';
  src: url('fonts/Avalon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* 2. GENERAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Avalon', 'Montserrat', sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.6;
  /* Removed padding-top so images sit behind navbar */
}

/* 3. TRANSPARENT NAVBAR */
/* Navbar base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.4) 100%);
  transition: transform 0.3s ease, background 0.3s ease;
}

.navbar.hidden { transform: translateY(-100%); }

.navbar .logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 0; /* hides text if you only want the image */
  text-decoration: none;
}

.navbar .logo img {
  height: 22px;
  margin-right: 10px;
}

/* Desktop defaults */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px; /* keep one definition only */
}
.menu-toggle 
{ display: none; }

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.nav-links li a:hover { color: #555555; }

/* Mobile overrides */
/* Default: hide toggle on desktop */
.menu-toggle {
  display: none;
}

/* Show toggle only on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;   /* make it visible */
    cursor: pointer;  /* pointer cursor for click */
    font-size: 1.5rem; /* adjust size */
    color: #333;      /* adjust color */
  }

  /* Optional: hide the full nav links on mobile */
  nav ul {
    display: none;
  }

  /* When menu is active (e.g., with JS toggle), show links */
  nav.active ul {
    display: block;
    text-align: center;
  }
}


/* 4. HERO SLIDER (The background images) */
.slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  /* background: #000; */
}

.slides img {
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slides img.active {
  opacity: 1;
}

/* Overlay text styling */
.overlay {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 10;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* 5. SECTIONS */
.services, .projects,   .our-promise {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.service-grid, .project-grid, .design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service, .project-card, .design-card {
  /* background: #fff; */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service:hover, .project-card:hover {
  transform: translateY(-10px);
}


.services {
  padding: 80px 20px;
  /* background: #f9f9f9; */
  text-align: center;
}

.services h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.services-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px;
  width: 300px;
  transition: transform 0.3s ease;
  text-align: left;
}

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

.service-card h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #555555;
}

.service-points {
  list-style: none;
  padding: 0;
}

.service-points li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

.service-points li span {
  font-weight: bold;
  color: #222;
}

/* 6. STEP VISUALS (Philosophy) */
/* --- Philosophy Section --- */
.philosophy {
  padding: 80px 0; /* Vertical padding, 0 on sides for full-width feel */
  /* background: #f9f9f9; */
  text-align: center;
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* Prevents horizontal scroll if steps are tight */
}

.philosophy h1 {
  font-family: 'Avalon', sans-serif;
  font-size: 2  rem;
  text-transform: uppercase;
  /* letter-spacing: 5px; */
  margin-bottom: 60px;
  color: #222;
}

/* --- The Steps Container --- */
.horizontal-steps {
  display: flex;
  justify-content: space-between; /* Distributes steps evenly across the screen */
  align-items: flex-start;
  flex-wrap: nowrap;             /* FORCES them into one single line */
  position: relative;
  max-width: 1800px;             /* Keeps it from getting TOO wide on huge monitors */
  margin: 0 auto;                /* Centers the full-width container */
  padding: 0 20px;

}

/* The Connecting Line */
.horizontal-steps::before {
  content: "";
  position: absolute;
  top: 20px;                     /* Centers vertically with the circles */
  left: 0;                       /* Starts at the very left edge */
  right: 0;                      /* Ends at the very right edge */
  height: 4px;
  background: #555555;           /* Matching blue from your screenshot */
  z-index: 0;
  
}

.step {
  flex: 1;
  position: relative;
  z-index: 1;                    /* Sits above the line */
  padding: 0 10px;
}

.step-number {
  display: inline-block;
  background: #555555;           /* Golden accent */
  color: #fff;
  left: 0%;
  right: 0%;
  font-weight: bold;  
  font-size: 16px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;             /* Centers number vertically */
  margin-bottom: 15px;
  box-shadow: 0 0 0 8px #f9f9f9; /* Creates a gap around the circle over the line */
}

.step h3 {
  font-family: 'Avalon', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #333;
}

.step p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #777;
  line-height: 1.4;
}

/* Responsive: If the screen is too small for one line, we scale down the text */
/* Mobile-specific adjustments */
/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .horizontal-steps {
    flex-wrap: wrap;        /* allow wrapping */
    flex-direction: column; /* stack steps vertically */
    align-items: center;    /* center them */
  }

  .step {
    width: 100%;            /* full width for each step */
    margin: 20px 0;         /* spacing between steps */
    text-align: center;     /* center text */
  }

  .step-number {
    margin-bottom: 10px;    /* space between number and text */
  }

  .step h3 {
    font-size: 1rem;        /* readable size */
    margin-bottom: 5px;
  }

  .step p {
    display: block;         /* ensure text is visible */
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
  }

  /* Optional: hide the connecting line on mobile */
  .horizontal-steps::before {
    display: none;
  }
}


/* 7. CONTACT FORM */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form button {
  background: #555555;
  color: #fff;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

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

/* 8. FOOTER */
/* --- Balanced Two-Panel Footer --- */

/* Footer Contact Items */
.contact-item i {
  color: #555555;   /* bright accent color for icons */
  font-size: 1.2rem;
  margin-top: 5px;
}

/* Footer Contact Text */
.contact-text small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #8892b0;   /* subtle gray-blue */
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact-text a,
.contact-text span,
.contact-text p {
  font-size: 0.9rem;
  color: #fff;      /* readable white text */
  text-decoration: none;
  line-height: 1.5;
}

.footer {
  background: #1f1e1e;
  color: #ccd6f6;
  padding: 60px 40px; /* Moderate padding */
  font-family: 'Montserrat', sans-serif;
  border-top: 3px solid #222;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 60px;
}

.footer-left { flex: 1.1; }
.footer-right { flex: 0.9; }

/* --- Left Side Styling --- */
.footer-brand h2 {
  font-family: 'Avalon', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 35px;
}

.footer-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
  min-width: 200px;
}

.contact-item.full-width { flex: 100%; }

.contact-item i {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 5px;
}

.contact-text small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact-text a, .contact-text span, .contact-text p,.contact-item {
  font-size: 0.85rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.5;
}



/* --- Right Side Styling --- */
.form-container {
  background: rgba(17, 34, 64, 0.6);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #233554;
}

.form-container h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blue-footer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.blue-footer-form input, 
.blue-footer-form textarea {
  width: 100%;
  padding: 12px;
  background: #fff;
  border: 1px solid #233554;
  color: #fff;
  border-radius: 6px;
  font-size: 0.9rem;
  outline: none;
}

.blue-footer-form input:focus, 
.blue-footer-form textarea:focus {
  border-color: #cccccc;

  .blue-footer-form input,
.blue-footer-form textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;   /* match your other form fields */
  font-weight: 400;  /* normal weight */
}

}

.send-btn {
  background: #555555;
  color: #020c1b;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.send-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 992px) {
  .footer-container { flex-direction: column; }
  .form-row { flex-direction: column; }
}
/* About Section */
.about-section {
  padding: 40px 20px;
  text-align: center;
  /* background: #f9f9f9; */
}

.about-section h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}
/* Our Promise Section */
.our-promise {
  padding: 80px 20px;
  /* background: #fff; */
  text-align: center;
}

.our-promise h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.our-promise p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  background: #f9f9f9;
  padding: 20px;
  border-left: 5px solid #555555; /* golden accent */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* --- Projects Preview Section --- */
.projects-preview {
  padding: 80px 40px;
  background-color: #f9f9f9; /* Subtle light background to separate from footer */
  text-align: center;
}

.projects-preview h1 {
  font-family: 'Avalon', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: #020c1b;
  margin-bottom: 50px;
  text-transform: uppercase;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 350px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Zoom Effect */
.project-card:hover img {
  transform: scale(1.1);
}

/* Overlay Styling */
.project-overlay {
  position: absolute;
  bottom: -100%; /* Hidden by default */
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(2, 12, 27, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  text-align: left;
  transition: bottom 0.4s ease;
}

.project-card:hover .project-overlay {
  bottom: 0;
}

.project-overlay h3 {
  color: #555555;
  font-family: 'Avalon', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.project-overlay p {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.project-gallery {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.project-gallery img {
  width: 30%;
  border-radius: 5px;
}

/* View All Button */
.view-all-container {
  margin-top: 60px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 35px;
  background: transparent;
  color: #020c1b;
  border: 2px solid #555555;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: 0.3s;
}

.view-all-btn:hover {
  background: #555555;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .projects-preview { padding: 50px 20px; }
  .project-overlay { bottom: 0; background: rgba(2, 12, 27, 0.4); } /* Static overlay for mobile */
}


/* --- Global Styles for Contact Page --- */
.contact-page-wrapper {
  min-height: 90vh;
  background: #f0f4f8; /* Light gray background to make the panels pop */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.contact-two-panels {
  display: flex;
  width: 100%;
  max-width: 1200px;
  min-height: 700px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(2, 12, 27, 0.15);
}

/* --- LEFT PANEL: Information & Map --- */
.info-panel {
  flex: 1;
  background: #0f0f0f; /* Deep Navy */
  color: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
}

.info-header h1 {
  font-family: 'Avalon', sans-serif;
  font-size: 2.5rem;
  color: #A0522D; /* Electric Blue */
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.info-header p {
  color: #ccc;
  margin-bottom: 45px;
  line-height: 1.6;
}

.mini-contact-grid {
  margin-bottom: 40px;
}

.m-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.m-item i {
  font-size: 1.2rem;
  color: #A0522D;
  width: 20px;
}

.m-text small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #A0522D;
  letter-spacing: 1px;
}

.m-text span {
  font-size: 0.95rem;
  color: #ccd6f6;
}

.map-wrapper {
  flex-grow: 1;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #233554;
  margin-top: 20px;
  min-height: 250px;
}

/* --- RIGHT PANEL: Main Form --- */
.form-panel {
  flex: 1.2;
  padding: 60px;
  background: #fff;
  display: flex;
  align-items: center;
}

.glass-form-card {
  width: 100%;
}

.glass-form-card h2 {
  font-family: 'Avalon', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 35px;
  color: #020c1b;
  position: relative;
}

.glass-form-card h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: #555555;
}

.main-contact-form .field {
  margin-bottom: 25px;
}

.input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.input-row .field {
  flex: 1;
  margin-bottom: 0;
}

.main-contact-form input, 
.main-contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: #020c1b;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.main-contact-form input:focus, 
.main-contact-form textarea:focus {
  border-color: #555555;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.05);
}

.prime-btn {
  width: 100%;
  padding: 18px;
  background: #020c1b;
  color: #555555;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prime-btn:hover {
  background: #555555;
  color: #020c1b;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
  .contact-two-panels {
    flex-direction: column;
    margin-top: 50px;
  }
  
  .info-panel, .form-panel {
    padding: 40px;
  }

  .input-row {
    flex-direction: column;
    gap: 25px;
  }

  .info-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .info-panel, .form-panel {
    padding: 30px 20px;
  }
}

.main-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.main-form-container h2 {
  margin-bottom: 20px;
  color: #555555;
  font-size: 1.8rem;
}

.main-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.field {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
}

.field.full-width {
  flex: 100%;
}

.field label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #444;
}

.field input,
.field textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s;
}

.field input:focus,
.field textarea:focus {
  border-color: #555555;
  outline: none;
}

.main-send-btn {
  background: #555555;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.main-send-btn:hover {
  background: #c56d3a;
}


.about-hero {
  background: url('DESKTOP_LIGHT.jpg.jpeg') center/cover no-repeat;
  height: 50vh; /* half of the viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay for readability */
}

.about-hero .hero-overlay {
  position: relative;
  z-index: 1;
}

.info-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}


.residential, .commercial {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.residential h2, .commercial h2 {
  font-size: 2em;
  color: #555555;
  margin-bottom: 30px;
}

.design-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.design-card {
  flex: 1;
  min-width: 250px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: left;
}

.design-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.design-card h3 {
  margin: 15px;
  color: #555555;
}

.design-card p {
  margin: 0 15px 20px;
  font-size: 0.95em;
  line-height: 1.5;
}




.filter-buttons {
  margin-bottom: 20px;
}

.filter-buttons button {
  margin: 5px;
  padding: 8px 16px;
  cursor: pointer;
  border: none;
  background: #fff;
  color: #444;
  border-radius: 4px;
  transition: background 0.3s;
}

.filter-buttons button:hover {
  background: #555555;
}


/* Call-to-Action Section */
.cta-section {
  background: #f9f9f9;        /* Light background */
  text-align: center;         /* Center align text */
  padding: 80px 20px;         /* Spacing around content */
}

.cta-section h1 {
  font-size: 2.2rem;          /* Large headline */
  color: #222;                /* Dark text */
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1rem;
  color: #555;                /* Softer gray text */
  margin-bottom: 30px;
  max-width: 600px;           /* Keep text nicely contained */
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  background: #555555;        /* Orange button */
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #cccccc;        /* Darker orange on hover */
  transform: scale(1.05);     /* Slight zoom effect */
}

/* Project Details Page */
.project-details {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  /* font-family: 'Segoe UI', Arial, sans-serif; */
}

.project-details h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #222;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Hero Image (first photo half screen height) */
.hero-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.hero-image img {
  width: 100%;
  height: 50vh;          /* half screen height */
  object-fit:cover;     /* crop nicely */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Description text */
.project-details p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Key points list */
.details-points {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 600px;
  margin: 30px auto;
}

.details-points li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  background: #f9f9f9;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.details-points li:hover {
  background: #eefaff;
}

.details-points li i {
  color: #555555;
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Gallery of more photos */
.details-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.details-gallery img {
  width: 30%;
  min-width: 250px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.details-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
/* View Details Button */
.details-btn {
  display: inline-block;
  background: #fff;          /* white background */
  color: #000;               /* black text */
  border: 1px solid #000;    /* black border */
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.details-btn i {
  color: #000;               /* black icon */
  margin-left: 6px;
}

.details-btn:hover {
  background: #000;          /* black background on hover */
  color: #fff;               /* white text on hover */
}

.details-btn:hover i {
  color: #fff;               /* icon turns white on hover */
}

.project-video {
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.project-video video {
  width: 100%;
  height: 450px;         /* same as your iframe height */
  object-fit: cover;     /* crops nicely */
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-video video:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}






