

#navBar{
    padding: 10px;
    position:fixed;
    z-index: 200;
    width: 100%;
    margin-left: -10px;
    margin-top: -20px;
    background-color: rgba(255, 255, 255, 0.255);
    backdrop-filter: blur(5px);
     display: flex;
    border: none;

}

#navBar a{
    margin: 20px;
    color: rgb(68, 68, 68);
    text-decoration: none;
    font-size: 19px;
    font-family:Georgia, 'Times New Roman', Times, serif;
}


#logo{
    width: 60px;
    height: 60px;
}

#links{
    margin-top: 20px;
    margin-left: 25px;
}

#heroSection{
    margin-top: 10px;
}

#heroSection img{
    width: 100%;
    margin-top: 0px;
}

#heroText{
    position: absolute;
    margin-top: 100px;
    font-size: 50px;
    color: white;
    margin-left: 20px;
}

#heroBtn{
    margin-left: 100px;
}
#heroBtn button{
    width: 200px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.369);
    border: none;
    backdrop-filter: blur(20px);
    color: white;
    font-size: 15px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 10px 10px 30px #00000029;
}

#smallScreenHeroImg, #MobNav, #Moblogo, #mobileHeroImg, #homePageImgesmall{
    display: none;
}


#homeAboutSection{
    text-align: center;
    font-size: 40px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
}

#homeAboutSection img{
    width: 100%;
}

#homeAboutInfo{
    display: flex; 
    flex-wrap: wrap;
    justify-content: center; 
    gap: 10px;
    margin-top: 30px;
}
#homeAboutInfo1{
    padding: 20px;
    font-size: 25px;
}

#servicesCards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 100;
    background: linear-gradient(60deg, rgb(162, 216, 250), rgb(218, 255, 247), rgb(255, 228, 176));
      transition: 0.5s;
}


#card{
    padding: 25px;
    margin: 20px;
    width: 250px;
    font-size: 25px;
    background-color: rgba(255, 255, 255, 0.415);
    border-radius: 15px;
      margin-top: 150px;
    margin-bottom: 150px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.49);
      transition: 0.5s;
}
#servicesCards :hover{
    transition: 0.5s;
    scale: 1.1;
    transform: translateY(-1%);
      transition: 0.5s;
}

    #card p{
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        font-weight: 100;
    }

    #blob{
        width: 300px;
        height: 300px;
        background-color: rgb(204, 255, 0);
        position: absolute;
        border-radius: 50%;
        transform: translate(-100%,100%);
    }

    #blob2{
        width: 300px;
        height: 300px;
        background-color: rgb(119, 0, 255);
        position: absolute;
        border-radius: 50%;
        transform: translate(100%,30%);
    }

    #WeDoservices{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px;
        gap: 20px;
    }
    #featureI{
        position: absolute;
        z-index: -100;
        width: 99%;
    }

    #mobFeature{
        display: none;
        position: absolute;
        z-index: -100;
        width: 99%;
    }
    #mobFeature1, #mobFeature2{
        display: none;
        position: absolute;
        z-index: -100;
        width: 99%;
    }


    #WeDoCard1{
        z-index: 100;
        width: 270px;
        background-color: rgba(240, 248, 255, 0.261);
        backdrop-filter: blur(5px);
        border: 1px solid white;
        border-radius: 15px;
        padding: 20px;
        height: 300px;
        margin-top: 200px;
        font-size: 20px;
        justify-content: center;
        font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }
    #WeDoCard1 h2{
        color: white;
    }

    #logo3d{
        justify-content: center;
        align-items: center;
        margin-left: 450px;
        margin-top: 20px;
        transition: 0.5s;
    }

    #logo3d :hover{
        transition: 0.5s;
        transform: rotate(90deg);
        scale: 2;
    }

    #MapContact {
  display: flex;
  flex-direction: column; /* Mobile default */
  gap: 20px;
}

/* Make both children take full width on mobile */
#MapContact > div {
  width: 100%;
}

/* Full-width section */
.logo-container {
  width: 100%;
  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center (if height given) */
margin-top: 100px;
margin-bottom: 50px;
}

/* Logo */
#logo3d {
  width: 90px; /* mobile */
  display: block; /* important fix */
  margin: auto;   /* fallback centering */

  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.3s ease;
  cursor: pointer;

  /* box-shadow: 0 100px 25px rgba(0, 0, 0, 0.3); */
  border-radius: 12px;
}

/* Spin */
#logo3d:hover {
  transform: rotateY(360deg);
  /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4); */
}

#logo3d:active {
  transform: rotateY(360deg);
}

/* Tablet */
@media (min-width: 768px) {
  #logo3d {
    width: 130px;
  }
}

/* Laptop */
@media (min-width: 1024px) {
  #logo3d {
    width: 180px;
  }
}

/* Laptop / larger screens */
@media (min-width: 1024px) {
  #MapContact {
    flex-direction: row; /* Side by side */
    align-items: stretch;
  }

  #MapContact > div {
    width: 50%; /* Split screen */
  }

  /* Make map and form same height */
  #MapContact iframe {
    height: 100%;
    min-height: 500px;
  }

  .contact-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

   

/* This applies to screens 768px wide or smaller (Tablets/Phones) */
@media (max-width: 768px) {
    #navBar{
        display: none;
    }

    #heroText{
    position: absolute;
    margin-top: 100px;
    font-size: 20px;
    color: white;
    text-align: center;
}

    #largScreenHeroImg{
        display: none;
    }

    #smallScreenHeroImg{
        transform: translateY(-40%);
        position: relative;
        z-index: -1000;
        display: block;
    }

   
    #heroBtn{
        margin-left: -10px;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

    #lowerHeroBtn{
        margin-top: 10px;
    }

    #mobileHeroImg{
         transform: translateY(-40%);
          position: relative;
        z-index: -1000;
        display: block;
    }   
    #Moblogo{
        display: block;
        margin-left: 10px;
        margin-top: 10px;
    }

    #MobNav{
        display: block;
        float: right;
        transform: translateY(-120%);
    }

    #MobNav button{
        background: none;
        border: none;
    }

    #homeAboutSection{
        margin-top: -200px;
        font-size: 30px;
    }
    #homeAboutText{
    background-color: white;
    padding: 20px;
    /* box-shadow: 2px 2px 20px #ccc; */
    margin-bottom: 50px;
    }

    #homePageImgebig{
        display: none;
    }
    #homePageImgesmall{
        display: block;
    }
    #homeAboutInfo1{
        font-size: 20px;
        padding: 15px;
    }

    #homeAboutInfo{
        justify-content:flex-start;
        gap: 1px;
        margin-top: 0px;
    }

    #card{
        margin-top: 10px;
         margin-bottom: 10px;
    }
     #blob,  #blob2{
        width: 250px;
        height: 250px;
     }

     #blob{
         transform: translate(0%,100%);
     }

     #blob2{
         transform: translate(0%,450%);
     }

     #featureI{
        display: none;
     }
     #mobFeature, #mobFeature1, #mobFeature2{
        display: block;
     }
     #mobFeature1{

    transform: translateY(100%);
     }

      #mobFeature2{

    transform: translateY(180%);
     }


}

@media screen and (min-width: 430px)  and (max-width: 768){
    #heroBtn{
        margin-left: 80px;
        width: 20px;
    }
    #mobFeature2{

    transform: translateY(-10%);
     }
}

/* Fix for the large banner text on mobile */
#trustedBannerText {
    text-align: center; 
    font-size:60px; 
    color: white; 
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
    text-shadow: 2px 2px 1px #000000;
    margin-top: 50px;
}

/* NEW: Testimonials Styling */
#testimonialsSection {
  padding: 0px;
  text-align: center;
  overflow: hidden;
  /* margin: 50px; */
}

#testimonialsSection h1 {
  margin-bottom: 30px;
  font-size: 2rem;
}

/* Slider */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

/* Track animation */
.testimonial-track {
  display: flex;
  gap: 15px;
  width: max-content;
  margin: 55px;
  animation: scroll 45s linear infinite;
}

/* Pause on hover (nice UX) */
.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

/* Cards */
.testCard {
  min-width: 280px;
  max-width: 280px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.testCard:hover {
  transform: translateY(-8px) scale(1.02);
}

/* User Info */
.userInfo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* Avatar base */
.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Different colors */
.avatar1 { background: linear-gradient(45deg, #ff6b6b, #ff9f43); }
.avatar2 { background: linear-gradient(45deg, #6c5ce7, #a29bfe); }
.avatar3 { background: linear-gradient(45deg, #00b894, #55efc4); }
.avatar4 { background: linear-gradient(45deg, #0984e3, #74b9ff); }
.avatar5 { background: linear-gradient(45deg, #fd79a8, #fab1a0); }
.avatar6 { background: linear-gradient(45deg, #ff7675, #d63031); }
.avatar7 { background: linear-gradient(45deg, #00cec9, #81ecec); }
.avatar8 { background: linear-gradient(45deg, #e17055, #fab1a0); }
.avatar9 { background: linear-gradient(45deg, #2d3436, #636e72); }
.avatar10 { background: linear-gradient(45deg, #fdcb6e, #ffeaa7); }

/* Stars */
.stars {
  color: gold;
  font-size: 14px;
}

/* Text */
.testCard p {
  font-size: 14px;
  color: #444;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* NEW: Contact Form Styling */
.contact-section {
  width: 90%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  box-shadow: 2px 2px 30px #ccc;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  text-align: center;
}

.contact-description {
  color: rgb(107 114 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 98%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background-color: black;
  color: #fff;
  padding: 13px 5px;
  border-radius: 0.375rem;
}

select.form-input {
  height: 2.5rem;
  width: 100%;
  background-color: white;
  cursor: pointer;
}

/* NEW: Footer Styling */
/* Footer Base */
#footer {
  background: #111;
  color: #fff;
  padding: 10px;
}

/* Layout */
.footerContent {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

/* Columns */
.footerCol h3,
.footerCol h4 {
  margin-bottom: 10px;
}

.footerCol p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
}

/* Links */
.footerCol a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footerCol a:hover {
  color: #fff;
}

/* Bottom */
.footerBottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* Tablet */
@media (min-width: 768px) {
  .footerContent {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Laptop */
@media (min-width: 1024px) {
  .footerContent {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* MOBILE RESPONSIVE FIXES FOR THE LOWER PART */
@media (max-width: 768px) {
    /* Fix Features background and cards */
    #featureI {
        height: 100%;
        object-fit: cover;
    }
    #WeDoCard1 {
        margin-top: 20px; /* Reduce the huge gap on mobile */
        width: 90%;
        height: auto;
    }
    #trustedBannerText {
        font-size: 30px; /* Smaller text for phones */
    }
    #logo3d {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 150px;
    }
    #testimonialsSection h1 {
        font-size: 25px;
    }
    #formContainer {
        padding: 20px;
    }
}
/* Styling for General Section Headings */
.sectionHeading {
    text-align: center;
    font-family: 'Gill Sans', sans-serif;
    margin-top: 80px;
    font-size: 40px;
}
.sectionSub {
    text-align: center;
    font-family: 'Lucida Sans', sans-serif;
    opacity: 0.7;
    margin-bottom: 40px;
}

/* Image Placeholder Design */
.imgPlaceholder {
    width: 100%;
    height: 240px;
    background: #e0e0e0;
    border-radius: 12px; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;

}

.imgPlaceholderSmall {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    /* border-radius: 50%; */
    margin: 0 auto 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: white;
    text-align: center;
    padding: 10px;
}

/* Conditions Section Grid */
#conditionsSection {
    padding: 20px 20px;
    max-width:100%;
    margin: auto;
}
#conditionsGrid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.conditionCard {
    width: 280px;
    height: 360px;
    background: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.136);
    transition: 0.3s;
    text-align: center;
}
.conditionCard:hover {
    transform: translateY(-5px);
}
.conditionCard h3 {
    font-family: 'Gill Sans', sans-serif;
    margin-bottom: 10px;
}

/* Recovery Process Section */
#processSection {
    background: #111;
    padding: 80px 20px;
    color: white;
    margin-top: 50px;
}
#processContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
    flex-wrap: wrap;
}
.processStep {
    text-align: center;
    width: 250px;
    position: relative;
}
.stepNumber {
    font-size: 50px;
    font-weight: bold;
    color: #75FB4C;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 10px;
}
.processArrow {
    font-size: 30px;
    color: #75FB4C;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .sectionHeading {
        font-size: 30px;
    }
    .processArrow {
        transform: rotate(90deg); /* Arrow points down on mobile */
        margin: 20px 0;
    }
    .conditionCard {
        width: 100%; /* Full width on mobile */
    }
    .processStep {
        width: 100%;
    }
}