:root {
  --primary: #000000;      /* Black (primary) */
  --secondary: #b5b5b7;    /* Silver */
  --accent: #FFFFFF;       /* White (kept) */
  --dark: #000000;         /* Pure black */
  --text: #2b2b2b;         /* Softer readable dark gray */
  --light: #f5f5f5;        /* Light background tint */
  --border: #d9d9d9;       /* Light silver-gray border */
  --footer: #0b0b0b;       /* Slightly deeper black for separation */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .loader{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }

  .neon {
    color: var(--dark);
    font-size: 50px;
  }

 .hero {
  position: relative;
  background: url('Photos/leak\ fix\ june\ 26\ before.jpg') center center/cover no-repeat;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem;
  width: 90%;
}

.overlay-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(7px);
  border-radius: 20px;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e9f6ff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.overlay-box h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-description {
  font-size: 30px;
  line-height: 1.6;
  color: var(--accent);
  width: 90%;
  margin: 0 auto 2rem;
}

.hero-btn {
  display: inline-block;
  background-color: var(--dark);
  color: var(--secondary);
  padding: 0.85rem 2.25rem;
  font-size: 26px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
  background-color: var(--secondary);
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(98, 108, 114, 0.4);
}
.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 25px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top: 40px;
    background: linear-gradient(90deg, #b5b5b7, #000000);
    background-size: 100% 100%;
    background-position: left;
    color: #fff;
    transition: all 0.5s ease;
}

.cta-btn:hover {
    background-position: right; /* shifts the gradient smoothly */
    transform: scale(1.05);
    background-size: 200% 100%;
}

.col-2 .hero-btn {
  background-color: var(--secondary);
  color: var(--dark);
  padding: 0.85rem 2.25rem;
  font-size: 26px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  text-align: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.col-2 .hero-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}
@media (max-width: 768px) {
  .col-2 .hero-btn {
    font-size: 22px;
    padding: 0.8rem 1.75rem;
  }
}

/* Phones */
@media (max-width: 576px) {
  .col-2 .hero-btn {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    font-size: 20px;
    text-align: center;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .col-2 .hero-btn {
    font-size: 18px;
    padding: 0.75rem 1.25rem;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .overlay-box h1 {
    font-size: 40px;
  }
  .overlay-box{
    padding: 2rem 1rem;
  }
  .hero{
    margin-top: 120px;
  }

  .tagline {
    font-size: 20px;
  }
  .hero-content{
    width: 100%;
    padding: 1rem;
  }

  .hero-description {
    font-size: 22px;
  }

  .hero-btn {
    font-size: 25px;
    padding: 0.75rem 1.75rem;
  }
}
  
  .explore p {
    margin: 10px;
    font-size: 30px;
    color: white;
  }
  
  .picture {
    margin: 1rem;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  a {
    color: black;
    cursor: pointer;
  }
  @media (max-width: 1090px) {
    h1 {
      font-size: 40px;
    }
  }
  @media (max-width: 800px) {
    .neon{
      font-size: 40px;
    }
  }
  
  body {
    font-family: 'Wittgenstein', serif;
    background: black;
    width: 100%;
  }
  html{
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  .fade-in-section {
    opacity: 0;
    transform: translateY(20px); /* Initial slight downward position */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
  
  /* Class to apply when the section is in view */
  .fade-in {
    opacity: 1;
    transform: translateY(0); /* Move to normal position */
  }
  
 header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 20px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  width: 100%;
  transition: background 0.3s ease;
  border-bottom: 2px solid var(--accent);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo img {
    max-height: 80px;
    width: auto;
    border-radius: 8px;
}

.logo img:hover {
    transform: scale(1.03);
}
.navbar i{
  color: var(--dark);
  font-size: 30px;
  margin-right: 10px;
}
header .navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

  /* JavaScript controls opening/closing */
header .navbar ul li ul {
    display: none;
}

header .navbar ul li ul.open {
    display: block;
}
/* === Base Styles === */
header .navbar ul li {
  position: relative;
  padding: 20px;
  font-size: 30px;
}



/* === Style and position second-level dropdowns === */
header .navbar ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  display: none;
  width: auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 999;
    border-radius: 8px;
}

/* === Position third-level dropdowns (e.g. Residential -> House Washing) === */
header .navbar ul li ul li:hover > ul,
header .navbar ul li ul li:focus-within > ul {
  display: block;
}

header .navbar ul li ul li ul {
  position: absolute;
  top: 0;
  left: 100%;
  background: white;
  display: none;
  width: auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* === Link styles in dropdowns === */
header .navbar ul li ul li a {
  display: block;
  padding: 12px 16px;
  color: var(--primary);
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

header .navbar ul li ul li a:hover {
  background-color: var(--secondary);
  color: var(--primary);
    border-radius: 8px;
}


#menu-bar {
  display: none;
}

header label {
  font-size: 24px;
  color: white;
  cursor: pointer;
  display: none;
  margin-bottom: 0px;
}

/* Responsive Adjustments */
@media (max-width: 1325px) {
header {
    padding: 10px 5%;
  }
}
@media (max-width: 1270px) {
  header {
    padding: 16px 4%;
  }
  header .logo {
    font-size: 20px;
  }
  
 
}

@media (max-width: 991px) {
  header {
    flex-wrap: wrap;
    padding: 16px;
  }
  
header .navbar ul li a {
    font-size: 25px;
    padding: 5px 5px;
    color: var(--dark);
  }
  header label {
    display: initial;
      font-size: 20px;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    padding: 10px 0;
  }

  header .navbar ul {
    flex-direction: column;
  }

  header .navbar ul li {
    text-align: center;
    width: 100%;
    padding: 10px;
    color: var(--dark);
    font-weight: 500;
  }

  header .navbar ul li ul {
    position: relative;
    width: 100%;
    background: var(--accent);
    box-shadow: none;
    margin-top: 10px;
  }

  header .navbar ul li ul li {
    border: none;
  }
  header .navbar ul li ul li ul {
    left: 0;
  }

  #menu-bar:checked ~ .navbar {
    display: flex;
  }
  /* Make all submenus position static so they flow vertically */
  header .navbar ul li ul,
  header .navbar ul li ul li ul {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
  }

  /* Hide submenus by default */
  header .navbar ul li ul,
  header .navbar ul li ul li ul {
    display: none;
  }

  /* Adjust link styling for mobile submenu */
  header .navbar ul li ul li a {
    padding-left: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 23px;
  }
}

  a {
    text-decoration: none;
    color: white;
  }
  
  p {
    color: white;
    font-size: 18px;
  }
  
  .container {
    width: 90%;
    margin: auto;
   
  }
  
  .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .row-home {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .reasons-container3 {
  position: relative;
  padding: 60px 20px;
background: url('Photos/pexels-pixabay-261403.jpg') center/cover no-repeat;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  margin-top: 70px;
}

.reasons-container3::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 50, 0.7); /* dark blue overlay */
  z-index: 0;
}

.reasons-container3 * {
  position: relative;
  z-index: 1;
}

.reasons-container3 h1 {
  font-size: 60px;
  margin-bottom: 30px;
  color: #50ade6;
  font-weight: 800;
}

.reasons-container3 h2 {
  font-size: 45px;
  color: white;
  margin-bottom: 10px;
}

.reasons-container3 p {
  font-size: 25px;
  color: #ddd;
  margin-bottom: 30px;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.reasons-container3 ul {
  padding: 0;
  margin: 0 auto 30px;
  width: 75%;
}

.reasons-container3 li {
  font-size: 1.2em;
  font-weight: 500;
  color: white;
  margin: 10px 0;
  list-style: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 10px;
}
  
  .reasons-container {
    border-radius: 10px;
    text-align: center;
  width: 100%;
  height: 100%;
  background: #50ade6;
  }
  
  .reasons-container h2{
      text-align: center;
      font-size: 50px;
      color: white;
  }
  
  .reasons-container li {
    font-size: 40px;
    line-height: 1.5;
    color: white;
    text-align: center;
    list-style: none;
  }
  .reasons-container p{
    color: black;
    text-align: center;
    font-size: 30px;
    padding: 10px;
    margin: 10px;
    font-weight: 500;
  }
  
  
  .reasons-container button{
    width: 75%;
    background: black;
    color: #50ade6;
    height: 50%;
    font-size: 40px;
    margin-top: 30px;
    padding: 10px;
  }
  
  .reasons-container button:hover{
    border-width: 3px;
    transition: 0.5s;
    cursor: pointer;
    background: white;
    color: black;
  }
  
  
  .outerdiv
  {
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .innerdiv
  {
      transform: scale(1.1);
      margin: 1rem;
      display: grid;
      grid-gap: 1.5rem;
      grid-template-rows: repeat(2,22rem);
      grid-template-columns: repeat(4,17rem);
  }
  
  .eachdiv
  {
      padding: 1rem 2rem;
      border-radius: 0.8rem;
      color: white;
  }
  .div1
  {
      background: black;
      grid-column: 1/3;
      grid-row: 1/2;
    
  }
  .div2
  {
      background:blue;
      grid-column: 3/4;
      grid-row: 1/2;
  }
  .div3
  {
      background: white;
      grid-column: 4/5;
      grid-row: 1/3;
      color: black;
  }
  .div4
  {
      background: white;
      grid-column: 1/2;
      grid-row: 2/3;
      color: black;
  }
  .div5
  {
      background: black;
      grid-column: 2/4;
      grid-row: 2/3;
  }
  .userdetails
  {
      display: flex;
  }
  .imgbox
  {
      margin-right: 1rem;
  }
  .imgbox img
  {
      border-radius: 50%;
      width: 2rem;
      border: 2px solid #cec5c5;
  }
  .detbox
  {
      display: flex;
      flex-direction: column;
      justify-content: center;
  }
  .detbox p
  {
      margin: 0;
  }
  .detbox .name
  {
      color: white;
      font-size: 0.9rem;
      margin-bottom: 0.1rem;
      font-weight: 600;
  }
  .detbox .name.dark
  {
      color: black;
  }
  .detbox .designation
  {
      color: white;
      opacity: 80%;
      font-size: 0.8rem;
  }
  .detbox .designation.dark
  {
      color: black;
  }
  .review h4
  {
      font-size: 1.4rem;
      color: #F3DEFF;
      font-weight: 600;
      line-height: 1.5;
      margin-bottom: 0.8rem;
  }
  .review.dark h4{
      color:black;
  }
  .review p
  {
      font-size: 0.95rem;
      color: white;
      font-weight: 500;
      opacity: 80%;
      line-height: 1.5;
  }
  .review.dark p{
      color: black;
  }
  
  h1{
    text-align: center;
  }
  @media only screen and (max-width: 1000px)
  {
      .innerdiv
      {
          transform: scale(0.7);
      }
  }
  @media only screen and (max-width: 800px)
  {
      .innerdiv
      {
          transform: scale(0.6);
      }
    .innerdiv:hover{
      scale: none;
    }
    .reasons-container3{
      margin-top: 50px;
      padding: 60px 10px;
    }
    .reasons-container3 h1{
      font-size: 50px;
    }
    .reasons-container3 h2{
      font-size: 40px;
    }
  }
  @media only screen and (max-width: 600px)
  {
      .div1 {
          background-position-x: 10rem;
      }
      .innerdiv
      {
          display: flex; 
          flex-direction: column;
          transform: scale(1);
          margin: 2rem;
          margin-bottom: 5rem;
      }
      .attribution
      {
          position: relative;
      }
  }
  .service-area-page {
  background: var(--accent);
background: linear-gradient(160deg, var(--accent) 50%, var(--secondary) 100%); 
 padding: 30px 20px;
}

.service-area-header {
  text-align: center;
  margin-bottom: 40px;
}

.service-area-header h2 {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-area-header p {
  font-size: 25px;
  color: var(--dark);
  margin-bottom: 15px;
}

.service-area-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.map-container, .service-list {
  flex: 1;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* City List */
.service-list h2 {
  font-size:35px;
  margin-bottom: 20px;
  color: var(--dark);
    text-shadow: 0 0 7px rgba(53, 49, 49, 0.7);

}

.service-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 500px; /* scrollable if too long */
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-list li {
  font-size: 23px;
  padding: 10px 15px;
  background: #111116;
  border-left: 5px solid var(--secondary);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  color: var(--accent);
}

.service-list li:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media(max-width: 1024px) {
  .service-area-content {
    flex-direction: column;
    gap: 10px;
  }
  .service-list ul {
    grid-template-columns: 1fr;
    max-height: none;
  }
}

/* Custom Scrollbar */
.service-list ul::-webkit-scrollbar {
  width: 12px;
}

.service-list ul::-webkit-scrollbar-track {
  background: #111116; /* track color */
  border-radius: 10px;
}

.service-list ul::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, black, black); /* fun gradient */
  border-radius: 10px;
  border: 3px solid #111116; /* gives padding around thumb */
  transition: background 0.3s;
}

.service-list ul::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(black);
}

/* Firefox */
.service-list ul {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) var(--dark);
}

.site-footer {
 background:var(--footer);
  color:var(--accent);
    padding: 40px 0 20px;
    border-top: 2px solid var(--secondary);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer h4 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary);
}

.footer-links a {
  font-size: 21px;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(4px);
    border-bottom: 2px solid var(--secondary);
}
.footer-brand p{
  font-size: 22px;
}
.footer-brand img{
  width: 300px;
  height: auto;
  border-radius: 15%;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 15px;
}

.site-footer h4 {
  margin-bottom: 15px;
  font-size: 30px;
}

.site-footer p,
.site-footer a {
  color: var(--accent);
  margin-bottom: 10px;
    font-size: 25px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}
.footer-bottom .bwd{
  color: var(--secondary);
}
.bwd {
  margin-top: 6px;
}

.bwd a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s ease;
  position: relative;
}

/* subtle underline effect */
.bwd a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.bwd a:hover::after {
  transform: scaleX(1);
}

.bwd a:hover {
  color: #ffffff;
}
  
  .btn {
    display: inline-block;
    background: rgb(71, 29, 29);
    color: white;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 0.5s;
  }
  
  .header .row {
    margin-top: 70px;
  }
  
  .catergories {
    margin: 70px 0;
  }
  
  .col-3 {
    flex-basis: 50%;
    min-width: 250px;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
  }
  
  .col-3 img{
    width: 100%;
  }
  
  .col-3 h1 {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 40px;
  }
  
  .col-3 p{
  font-size: 30px;
  }
  .small-container {
    max-width: 100%;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
    
  }
  
  .col-4 {
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
  }
  
  .col-4 img {
    width: 100%;
  }
  
  .title {
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: white;
    font-size: 30px;
  }
  
  .title::after {
    content: '';
    background: #ff523b;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  h4 {
    color: white;
    font-weight: normal;
    font-size: 20px;
  }
  
  .col-4 p {
    font-size: 17px;
  }
  
  .rating .fa {
    color: #ff523b;
  }
  
  .col-4:hover {
    transform: translateY(-5px);
  }
  
  .offer {
    margin-top: 80px;
    padding: 20px 0;
  }
  
  .col-2 .offer img {
    padding: 50px;
  }
  
  small {
    color: white;
    font-size: 16px;
  }
  
  .fa-solid.fa-quote-left.fa-bounce {
    font-size: 34px;
  }
  
  .col-3 p {
    font-size: 30px;
    margin: 12px 0;
    color: black;
  }
  
  .testimonial .col-3 h3 {
    font-weight: 600;
    font-size: 16px;
  }
  
  h3 {
    color: white;
    font-size: 40px;
  }
  
  .col-2 button {
  text-align: center;
  font-size: 25px;
  border-radius: 6px;
  padding: 14px 32px;
  border: none;
  font-weight: 600;
    color: white;
  width: 100%;
  cursor: pointer;
  transition: 0.5s;
  
  }
  
  .col-2 button:hover{
  transform: translate(10%,0%);
  }
  
  h1{
    font-size: 50px;
    color: white;
    letter-spacing: 3px;
  }
  
  @media only screen and (max-width: 1200px){
    iframe{
      width: 800px;
    } 
  }
  @media only screen and (max-width: 800px) {
    iframe{
      width: 500px;
    }
   .footer-grid {
  grid-template-columns: 1fr;
}
    .explore p{
      font-size: 25px;
    }
  .row-home .col-2{
  flex-basis: 100%;
  }
  .reasons-container p{
    text-align: center;
  }
  .reasons-container h2{
    text-align: center;
    font-size: 40px;
  }
  .reasons-container li{
    font-size: 35px;
  }
  .reasons-container img{
    width: 100%;
    float: none;
  }
  .reasons-container p{
    font-size: 25px;
  }
  .articles{
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
  
  }
  }
  
  @media only screen and (max-width: 600px) {
    .row {
        text-align: center;
    }
    .col-2, .col-3, .col-4 {
        flex-basis: 100%;
        
    }
     .row-home .col-2 iframe{
      width: 420px;
      height: 250px;
    }
 
    .col-2 p{
      font-size: 25px;
    }
  
    .reasons-container li{
      font-size: 25px;
    }
    .reasons-container h2{
      font-size: 30px;
    }
    .reasons-container p{
      font-size: 20px;
    }
  
   .reasons-container button{
      font-size: 30px;
    }
    .articles{
      grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    
    }
  }
  
  @media only screen and (max-width: 500px){
  .col-2 img{
    width: 90%;
  }
  .col-3 p{
    font-size: 15px;
  }
  .col-3 {
  flex-basis: 90%;
  }
  
  .reasons-container li{
    font-size: 22px;
  }
  
  iframe{
    width: 300px;
  }
  .articles{
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  
  }
  h2{
    font-size: 50px;
  }
  .reasons-container button{
    width: 80%;
    font-size: 20px;
  }
  }
  
  
  .container-contact {
  min-height: 95vh;
  background: url('Photos/Front\ Clean\ 2.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-top: 120px;
  border-bottom: 3px solid var(--dark);
}

.container-contact form {
  width: 65%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.container-contact form h1 {
  font-size: 42px;
  font-weight: 700;
  color: #50ade6;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.container-contact form h2 {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  margin-bottom: 5px;
}

.container-contact form input,
.container-contact form textarea {
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s, color 0.3s;
  background-color: #fafafa;
  color: #222;
  width: 100%;
}

.container-contact form input:focus,
.container-contact form textarea:focus {
  border-color: #50ade6;
  color: #000;
  background-color: #fff;
}

.container-contact form input::placeholder,
.container-contact form textarea::placeholder {
  color: #aaa;
}

.container-contact form textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 200px;
}

.container-contact form #send {
  background-color: #50ade6;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  padding: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.container-contact form #send:hover {
  background-color: #1d8fcc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container-contact form {
    padding: 30px 20px;
    width: 90%;
  }

  .container-contact form h1 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .container-contact form h1 {
    font-size: 28px;
  }

  .container-contact form {
    padding: 25px 15px;
  }

  .container-contact form input,
  .container-contact form textarea {
    font-size: 0.95rem;
  }

  .container-contact form #send {
    font-size: 1rem;
  }
}

  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: min(85%, 90%);
    margin: 40px auto 0;
}

.card {
    width: 100%;
}
.card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 60px 20px;
background-image: 
  linear-gradient(135deg, #0b0f14 0%, #010203 50%, #0b0f14 100%);
     box-shadow: 0 15px 40px rgba(0, 120, 212, 0.3);
  border-top: 2px solid var(--secondary);
}

.card-section .section-title {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0px;
  color: var(--accent);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  user-select: none;
}

.card {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 20px;
box-shadow: 0 0 12px rgba(255, 255, 255, 1),
    inset 0 0 50px rgba(255, 255, 255, .2);
  cursor: pointer;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition:
    transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: #cce6ff;
  display: flex;
  align-items: flex-end;
  padding: 20px 10px 30px;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(.1px); /* Much lighter blur */
  border-radius: 20px;
  z-index: 0;
  pointer-events: none;
  transition: background 0.45s ease;
}

.card:hover::after {
  background: linear-gradient(180deg, rgba(69, 71, 73, 0.35) 0%, rgba(0, 0, 0, 0.6) 100%);
  backdrop-filter: blur(6px); /* Slightly stronger blur on hover for effect */
}


/* Container for card text content, sits above overlay */
.card-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

/* Title */
.card-content h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

/* Description */
.card-content p {
  font-size: 25px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.4;
  margin: 0 auto;
}
.card-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 16px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
    font-size: 25px;
}

.card-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    color: var(--dark);
}
/* Background images */
.card-1 {
  background-image: url('Photos/leak\ fix\ june\ 26\ before.jpg');
}

.card-2 {
  background-image: url('Photos/wall\ install\ june\ 26\ after.jpg');
}

.card-3 {
  background-image: url('Photos/Clean\ Driveway.jpg');
}
.card-4 {
  background-image: url('Photos/gutter\ cleaning.jpg');
}
.card-5 {
  background-image: url('Photos/painting\ 1.jpg');
}
.card-6 {
  background-image: url('Photos/rot\ before.jpg');
}
/* Hover effect */
.card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.5),
    inset 0 0 70px rgba(255 255 255 / 0.2);
    cursor:default;
}

.card:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(65, 67, 68, 0.85) 100%);
}
@media (max-width: 1200px) {
 .card-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 10px auto 0;
}
}
/* Responsive */
@media (max-width: 768px) {
  .card-section {
    padding: 40px 10px;
  }
  .card-section .section-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
  .card {
    flex: 1 1 90%;
    max-width: 100%;
    min-height: 320px;
    padding: 25px 15px 30px;
  }
  .card-content h3 {
    font-size: 35px;
  }
  .card-content p {
    font-size: 22px;
  }
    .card-grid {
    grid-template-columns: repeat(1, 1fr);
    margin: 0px auto 0;
}
}


/* Container and Wrapper */
.testimonial-container {
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  color: var(--dark);
  background: var(--accent);
  user-select: none;
}

.testimonial-wrapper {
  backdrop-filter: saturate(180%) blur(14px);
  background: rgba(255 255 255 / 0.7);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6);
}

/* Header */
.testimonial-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--dark);
  margin-bottom: 3rem;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 87, 184, 0.3);
  user-select: none;
}


.testimonial-slider {
    position: relative;
    min-height: 180px;
}

/* Individual Testimonials */
.testimonial {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--dark);
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  background: rgba(255 255 255 / 0.85);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 85, 142, 0.1);
  border: 1px solid rgba(0, 112, 255, 0.15);
  transition: opacity 0.8s ease-in-out;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.testimonial.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Client Name */
.testimonial h4 {
  font-weight: 700;
  font-size: 30px;
  color: var(--dark);
  letter-spacing: 0.05em;
  margin: 0;
  text-shadow: 0 0 5px rgba(61, 63, 63, 0.6);
}

/* Testimonial Text */
.testimonial p {
  margin: 0;
  font-style: italic;
  font-size: 24px;
  color: var(--dark);
  text-shadow: 0 0 2px rgba(0, 70, 140, 0.15);
}

/* Indicators */
.testimonial-indicators {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--dark);
  background-color: transparent;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(56, 61, 65, 0.6);
  transition: all 0.35s ease;
}

.indicator:hover {
  background-color: var(--dark);
  box-shadow: 0 0 12px var(--dark);
  transform: scale(1.25);
}

.indicator.active {
  background-color: var(--dark);
  box-shadow: 0 0 20px var(--dark);
  transform: scale(1.5);
}

/* ===========================
   Large Tablets (992px)
=========================== */
@media (max-width: 992px) {
    .testimonial-container {
        padding: 1.75rem;
    }

    .testimonial-wrapper {
        padding: 2.5rem;
    }

    .testimonial {
        max-width: 100%;
        padding: 2rem;
    }

    .testimonial-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .testimonial h4 {
        font-size: 1.75rem;
    }

    .testimonial p {
        font-size: 1.2rem;
    }
}

/* ===========================
   Tablets (768px)
=========================== */
@media (max-width: 768px) {
    .testimonial-container {
        padding: 1.25rem;
    }

    .testimonial-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .testimonial {
        padding: 1.75rem;
        gap: 1rem;
    }

    .testimonial-title {
        font-size: 35px;
        margin-bottom: 2rem;
    }

    .testimonial h4 {
        font-size: 1.5rem;
    }

    .testimonial p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .testimonial-indicators {
        gap: 1rem;
    }

    .indicator {
        width: 14px;
        height: 14px;
    }
}

/* ===========================
   Phones (576px)
=========================== */
@media (max-width: 576px) {
    .testimonial-container {
        padding: 1rem;
    }

    .testimonial-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 14px;
    }

    .testimonial {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .testimonial-title {
        font-size: 25px;
        letter-spacing: .05em;
        margin-bottom: 1.5rem;
    }

    .testimonial h4 {
        font-size: 24px;
        text-align: center;
    }

    .testimonial p {
        font-size:21px;
        text-align: center;
        line-height: 1.6;
    }

      .testimonial-indicators {
        margin-top: 2rem;
        gap: .8rem;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 300px; /* Adjust as needed */
        margin-left: auto;
        margin-right: auto;
    }

    .indicator {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

}

/* ===========================
   Small Phones (400px)
=========================== */
@media (max-width: 400px) {
    .testimonial-title {
        font-size: 1.3rem;
    }

    .testimonial h4 {
        font-size: 1.15rem;
    }

    .testimonial p {
        font-size: .95rem;
    }

    .testimonial-wrapper {
        padding: 1.25rem .75rem;
    }

    .testimonial {
        padding: 1rem;
    }
}


.col-2 .hero-btn:hover {
  background-color: var(--accent);
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(98, 108, 114, 0.4);
}
.row-pic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.row-pic .col-2 {
    width: 100%;
    margin: 0 auto 50px;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

/* Each pic container fills its grid cell */
.pic-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* keep square */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}



/* Images fill container nicely */
.pic-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Slider styling */
.pic-container .slider {
  width: 100%;
}


/* Laptop */
@media (max-width: 1200px) {
  .row-pic {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

}

/* Tablet */
@media (max-width: 992px) {
  .row-pic {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

}

/* Large Phones */
@media (max-width: 768px) {
  .row-pic {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }



  .slider::-webkit-slider-thumb {
    width: 50px;
    height: 50px;
  }
}

/* Small Phones */
@media (max-width: 576px) {
  .row-pic {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .col-2 .container{
    width: 100%;
    margin: 0 auto;
  }
  .pic-container {
    max-width: 420px;
    margin: 0 auto;
  }


  .slider::-webkit-slider-thumb {
    width: 42px;
    height: 42px;
  }
}

/* Very Small Phones */
@media (max-width: 400px) {
  .pic-container {
    max-width: 320px;
  }

  .slider::-webkit-slider-thumb {
    width: 36px;
    height: 36px;
    border-width: 2px;
  }
}


.pic-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.my-img{
  clip-path: polygon(0 0 , 50% 0, 50% 100%, 0 100%);
}
.slider{
  position: relative;
  -webkit-appearance: none;
  width: calc(100% + 40px);
  height: 100%;
  background-color: transparent;
  margin-left: -20px;
  outline: none;
}
.slider::-webkit-slider-thumb{
  -webkit-appearance: none;
  height: 60px;
  width: 60px;
  background: url(Photos/elevator_11862851.png), rgba(255, 255, 255, .3);
  border: 3px solid white;
  border-radius: 50%;
  background-size: contain;
  cursor: pointer;
}
.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}



.col-2 {
    flex-basis: 100%;
    color: white;
    align-items: center;
    margin-top: 120px;
}


.col-2 img {
    text-align: center;
    justify-content: center;
    align-items: center;
}

.col-2 h1 {
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  color: var(--secondary);
  padding: 20px;
  font-weight: 700;

}

.col-2 p{
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  width: 100%;
  padding: 20px;
}

.quick-facts {
  background: linear-gradient(0deg, white, black);
  padding: 60px 20px;
  margin-top: 30px;
}

.quick-facts-container {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.quick-facts h2 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 30px;
}

.facts-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.facts-list li {
  background: #ffffff;
  border-left: 5px solid var(--dark);
  border-right: 5px solid var(--primary);
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.facts-list li strong {
  color: var(--dark);
}
@media (max-width: 600px) {
  .quick-facts {
    padding: 40px 15px;
  }

  .quick-facts h2 {
    font-size: 35px;
  }
  .quick-facts-container{
    width: 95%;
  }

  .facts-list li {
    font-size:25px;
    padding: 12px 16px;
  }
}


@keyframes popUp {
  0% {
    transform: scale(0.5) translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* TEAM SECTION */
.team-section {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 100px;
}

.team-section h1 {
  font-size: 2.4rem;
  color: #50ade6;
  margin-bottom: 30px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: 0 0 8px #50ade6aa;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.team-section,.about-sections,.fun-facts {
  padding: 40px 20px;  /* Adds vertical padding inside sections */
}

.team-member {
  background: linear-gradient(145deg, #132639, #0c1a2e);
  border: 1px solid #50ade6;
  border-radius: 12px;
  box-shadow: 0 0 12px #50ade6bb;
  padding: 30px 15px 30px;
  width: 60%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px #50ade6ee;
}

.team-member img {
  width: 65%;
  height: 450px;
  border-radius: 25%;
  border: 3px solid #50ade6;
  object-fit: cover;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 6px #50ade6cc);
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: #a0d8ff;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.team-member p {
  font-size: 1.2rem;
  color: white;
  line-height: 1.4;
  margin: 0;
}
.speaking-hero {
  padding: 60px 0;
  background: linear-gradient(
  135deg,
  rgba(0, 0, 0, 0.75),
  rgba(71, 71, 68, 0.65)
),
    url("photos/House\ Clean\ 2.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  background-attachment: fixed;
  border-bottom: 2px solid var(--secondary);
  margin-top: 120px;
}

.speaking-intro img {
  display: block;
  margin: 0 auto 40px auto; /* centers + space below */
  max-width: 500px; /* controls size */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.speaking-hero h1 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: var(--accent);
}

.speaking-hero .subtitle {
  font-size: 30px;
  width: 85%;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--accent);
}

/* ABOUT SECTIONS */
.about-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
}
.hero-socials {
    margin-top: 2rem;
    display: flex;
    gap: 1.2rem;
    justify-content: center;   /* or flex-start if you want */
}

.hero-socials .social-link {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(2px);
}

.hero-socials .social-link i {
    font-size: 30px;
    color: white;  /* change if you want brand colors */
    transition: color 0.25s ease;
}

.hero-socials .social-link:hover {
    transform: scale(1.12);
    border-color: var(--dark);
}

.hero-socials .social-link:hover i {
    color: var(--secondary);
}
.story-container {
  margin: 30px auto;
  text-align: center;
  position: relative;
}

.story-container h2 {
  font-size: 50px;
  color: var(--accent);
  margin-bottom: 10px;
}

.story-container p {
  font-size: 25px;
  color: white;
  margin-bottom: 60px;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 4px;
  background: var(--secondary);
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right::before {
  left: -10px;
}

.timeline-item .content {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 25px;
  border-radius: 12px;
  display: inline-block;
  transition: transform 0.5s, opacity 0.5s;
  opacity: 0;
  transform: translateY(50px);
  border: 3px solid var(--secondary);
}

.timeline-item.show .content {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item h2 {
  color: var(--secondary);
  font-size: 35px;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 22px;
  line-height: 1.6;
  color: var(--accent);
}
@media (max-width: 768px) {
  /* center the entire item regardless of its previous left value */


  /* make the dot sit exactly in the center of the item */
  .timeline-item::before {
    left: 50% !important;
    transform: translateX(-50%);
  }

  /* content should sit below the dot */
  .timeline-item .content {
    margin-top: 28px;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .timeline {
    position: relative;
    margin: 0 auto;
    padding: 0;
  }
  .story-container{
    width: 95%;
  }
  .story-container h1{
    font-size: 40px;
  }
  .story-container p{
    font-size: 23px;
  }
  /* Make the timeline line centered and lighter for clarity */
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: rgba(59, 59, 55, 0.4);
  }

  /* Stack all timeline items in a single centered column */
  .timeline-item {
    width: 100%;
    margin: 0px auto;
    text-align: center;
    position: relative;
    padding: 20px 0px;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    left: 50.1% !important;        /* override inline or other lefts */
    transform: translateX(-50%); /* center the item itself */
  }

  .timeline-item::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(65, 64, 64, 0.5);
  }

  /* Style the content boxes */
  .timeline-item .content {
    background: #000000;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  }

  .timeline-item h2 {
    color: var(--secondary);
    font-size: 35px;
    margin-bottom: 10px;
  }

  .timeline-item p {
    font-size: 25px;
    line-height: 1.6;
    color: white;
  }
}

.info-block {
  background: linear-gradient(135deg, #000000, #282b31);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 0 10px var(--accent);
  transition: box-shadow 0.3s ease;
  text-align: center;
}

.info-block:hover {
  box-shadow: 0 0 22px var(--accent);
}

.info-block h2 {
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 6px var(--secondary);
}

.info-block p, 
.info-block ul {
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--accent);
}

.info-block ul {
  padding-left: 1.4rem;
  margin-top: 0;
  list-style: none;
}

.info-block ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  letter-spacing: 0.02em;
}

.info-block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
  text-shadow: 0 0 6px var(--accent);
}

/* FUN FACTS */
.fun-facts {
  text-align: center;
}

.fun-facts h2 {
  font-size: 2.2rem;
  color: #50ade6;
  margin-bottom: 40px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 0 10px #50ade6bb;
}

.fact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.fact-box {
  background: linear-gradient(135deg, #0e1c2b, #0b1722);
  box-shadow: 0 0 14px #50ade6bb;
  padding: 20px 30px;
  border-radius: 14px;
  width: 22%;
  flex: 1 1 220px;
  transition: transform 0.25s ease;
  cursor: default;
  height: auto;
}

.fact-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 26px #50ade6ee;
}

.fact-box h3 {
  color: #50ade6;
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-shadow: 0 0 8px #50ade6bb;
}

.fact-box p {
  color: #ccc;
  font-size: 1.3rem;
  line-height: 1.45;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) { 
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
  .speaking-hero .subtitle {
  font-size: 30px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--accent);
}
  .team-member{
    width: 90%;
  }
  .fact-grid {
    flex-direction: column;
    align-items: center;
  }
  .team-section,.about-sections,.fun-facts {
  padding: 20px 20px;  /* Adds vertical padding inside sections */
  margin-bottom: 20px; /* Adds space below each section */
}
.team-section{
  margin-top: 80px;
}
.about-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90%, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
}
.fact-box{
  width: 90%;
  flex: 1 1 100%;
}
.team-member img{
  height: 400px;
  width: 100%;
}
}
@media (max-width: 350px) { 
.team-section{
  margin-top: 100px;
}
}
.location-section {
  background: linear-gradient(145deg, #132639, #0c1a2e);
  border: 1px solid #50ade6;
  border-radius: 12px;
  box-shadow: 0 0 12px #50ade6bb;
  padding: 30px;
  width: 75%;
  margin: 40px auto;
  text-align: center;
  color: #ffffff;
}

.location-section h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #50ade6;
}

.location-section p {
  font-size: 1.4em;
  margin-bottom: 20px;
}
.map-responsive {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.container-contact > div,
.container-contact > div > div {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex;
    justify-content: center;
}
.feedback-section {
  position: relative;
  overflow: hidden;
  padding: 3rem 2rem;
  width: 100%;
  margin: 0 auto;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 85, 142, 0.1);
  z-index: 1;
}

/* Subtle glowing ripple in the corner */
.feedback-section::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: var(--dark);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(3px);
  animation: ripplePulse 6s ease-in-out infinite;
}
.feedback-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: var(--dark);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(3px);
  animation: ripplePulse 8s ease-in-out infinite;
}


@keyframes ripplePulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
}

/* Make sure form content appears above ripple */
.feedback-section > * {
  position: relative;
  z-index: 1;
}

#feedback {
  width: 75%;
  margin: 0 auto; /* centers horizontally */
  display: block; /* ensures margin auto works */
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: var(--dark);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  text-align: center;
  color: var(--dark);
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

.form-block {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.form-heading {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 500;
}

.input-group {
  display: flex;
  align-items: center;
  background: #eaf7ff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--secondary);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
}

.input-group-icon {
  background: var(--dark);
  color: #fff;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.input-group-icon i {
  font-size: 1rem;
}

.form-control {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #00334e;
}

.form-control::placeholder {
  color: var(--secondary)
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.btn-primary {
  background: linear-gradient(145deg, #383838, #000000);
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1.05rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  box-shadow: 0 4px 10px rgba(0, 126, 188, 0.3);
  position: relative;
  z-index: 1;
   margin: 0 auto; /* centers horizontally */
  display: block; /* ensures margin auto works */
  width: 75%;
}

.btn-primary:hover {
  background: linear-gradient(145deg, #000000, #383838);
  box-shadow: 0 6px 15px rgba(0, 126, 188, 0.4);
  transform: translateY(-1px);
    transition: 0.5s ease;
}
/* === FAQ === */
.faq {
    background-color:var(--dark);
  padding: 2rem 1rem;
  border-top: 2px solid var(--secondary);
}
.faq .container{
  width: 90%;
}


.faq h2 {
  font-size: 45px;
  letter-spacing: 1px;
  text-align: center;
  padding-bottom: 2rem;
  color: var(--secondary);
}

.faq details {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.2rem 1rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.3s ease;
    background: linear-gradient(135deg, white 0%, var(--secondary) 100%);
}

.faq details:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq summary {
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  font-size: 24px;
  position: relative;
  padding-right: 20px;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 24px;
  color: #475569;
  transition: transform 0.3s ease;
}

.faq details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq p {
  font-size: 22px;
  color: var(--dark);
  margin-top: 1rem;
  line-height: 1.6;
  font-weight: 400;
}
.faq details[open] p {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .form-group {
    flex-direction: column;
  }

  .input-group {
    flex-direction: column;
  }

  .input-group-icon {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .form-control {
    width: 100%;
    border-radius: 0 0 8px 8px;
  }
   #feedback {
    width: 90%;
  }
}
