:root {
    --blue: #29B7E1;
    --white: #ffffff;
    --black: #03120E;
    --lightblue: #F0F8FF;
    --background_banner: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    --background_color: rgba(246, 246, 246, 0.5);
    --golden: #FFD42A;
    --blue_semiopaque: rgba(41, 183, 225, 0.5);
    --barkelei: #12355B;
    --crimsom: #D72638;
    --orange: #FF570A;
    --text-color: #333;
    --link-color: #2980b9;
    --link-hover-color: #2c3e50;
    --nav-height: 60px; /* Adjust based on actual height */
}

.main-content {
    padding-top: var(--nav-height);
}
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    -webkit-tap-highlight-color: transparent;
    
}


button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(41, 183, 225, 0.5); 
}


button::-moz-focus-inner {
    border: 0;
}

.fa-stopwatch:before {
    content: "\f2f2";
    color: #D72638;
}

.fa-dollar-sign:before, .fa-dollar:before, .fa-usd:before{
    color: forestgreen;
}




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
   
}

body {
    background-image: var(--background_banner)
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--blue);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    height: var(--nav-height);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.nav-actions{
    display: flex;
    justify-content: space-between;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.navbar-menu li a {
    color: var(--white); /* Ensure sufficient contrast */
    text-decoration: none;
    font-size: 1.15em;
    padding: 0.4em;
    font-weight: 700;
}

.nav-icons {
    display: flex;
    gap: 15px;
}

.nav-icon {
    color: var(--white);
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
  
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
}

.nav-icon:hover {
    background-color: darken(var(--golden), 10%);
}

.kebab-menu {
    display: none;
    color: var(--white);
    font-size: 1.5em;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.kebab-menu.active {
    transform: rotate(45deg);
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    list-style: none;
    background-color: var(--blue);
    position: fixed;
    top: var(--nav-height); /* Directly below the navbar */
    width: 100%;
    padding: 0; /* Remove padding to eliminate gaps */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    color: var(--white); /* Ensure sufficient contrast */
    text-decoration: none;
    font-size: 1.15em;
    font-weight: 700;
}
@keyframes dropdownAnimation {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo > img {
    width: 90%;
    padding: 6px;
}



ul li a {
    font-size: 1.15em;
    padding: 0 .4em;
    line-height: 58px;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
}



.banner {
    position: relative; 
    width: 100vw;
    height: 45vh;
   
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
   
}

.banner .container {
    transform: translate(0%,0%); 
    text-align: center; 
    margin: auto;
}

.banner h1, .banner p {
    color: black;
    font-family: math;
}

.banner h1{
    color: var(--black);
    font-weight: 800;
    
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background_color);
    backdrop-filter: blur(3px); 
    -webkit-backdrop-filter:blur(3px); 
}
.textBanner__adaptive{
    font-size: 1.15em;
}
.container{
    gap: 15px;
    padding: 20px;
}

.service {
    margin-bottom: 5vh; 
}
.service_unit{
    justify-content:flex-start;
    gap: 5%;
    align-items: center;
}

.icon-wrapper {
    width: 40px; 
    height: 40px; 
    display: flex;
    justify-content: center;
    align-items: center;
}


.small_header{

        text-align: center;
        font-size: larger;
        margin-bottom: 2.5%;
    
}

h4 p{
    padding-inline: 5%;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15vw; 
    height: 15vw; 
    border-radius: 50%; 
    background-color: #f0f0f0; 
    margin: 0 auto 2vh; 
}

.icon-container i {
    font-size: 6vw; 
    color: #29B7E1; 
}



.golden{
    color: var(--golden);
}
.blue{
    color: var(--blue);
}

.button_base{
    font-size: 1.25em;
    padding: 7px;
    border: none;
    outline: none;
    border-radius: 4px;
    transition: all 0.3s ease-in;
    cursor: pointer;
    
}

.golden_button:hover{
    background: rgba(255, 212, 42, 1);
}

.golden_button{
    color: var(--black);
    background: rgba(255, 212, 42, 0.75);
}

.cursive{
    font-family: cursive;
    font-weight: bolder;
    
}

.crimsom{
    color: var(--crimsom);
}

.crimsom_opaque{
    background: rgba(215, 38, 56, 0.30);
}
.crimsom_bg{
    background: rgba(215, 38, 56, 0.65);
    color:white;
}

.math{
    font-family: math;
    font-weight: bolder;
}

.subheader_base{
    
    padding: 5px;
    font-family: math;
    margin-bottom: 5%;
    font-size: 36px;
}

.golden_opaque{
   background:  rgba(255, 212, 42, 0.45);
}
.blue_opaque{
    background:rgba(41, 183, 225, 0.1);
}

.forestGreen_opaque{
    background:rgba(34, 139, 34, 0.35)
}

.subheader_base p{
    margin-bottom: 3.5%;
}

.about_us__mainP{
    margin-bottom: 3.5%;
}
.h3__about_us{
    margin-bottom: 5.5%;
}
.blue_header{
    background: var(--blue_semiopaque);
}

.column{
    display: flex;
    flex-direction: column;
}

.row{
    display: flex;
}

.center{
    justify-content: center;
    align-items: center;
}



.fa-truck-moving:before {
    content: "\f4df";
    color:rgba(215, 38, 56, 0.75);
}

.fa-building:before {
    content: "\f1ad";
    color:var(--black);
}





  
  
  .pricing-plans {
    display: flex;
    justify-content: center;
  }
  
  .pricing-plan {
    text-align: center;
    margin: 0 20px;
    margin-bottom: 40px;
    width: 320px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-plan:nth-child(odd) {
    background-color: #f8f8f8;
  }
  
  .pricing-plan:nth-child(even) {
    background-color: #f0f0f0;
  }
  
  .pricing-plan figure {
    display: flex; 
    justify-content: center;
    align-items: center; 
    background-color: #dff0d8; 
    padding: 25px;
    margin-bottom: 20px;
  }
  
  .pricing-plan figure i {
    font-size: 36px;
    color: #3c763d;
    margin-right: 10px;
  }

  .altadena-stats .container h2{
    font-size: 36px;
  }
  
  .pricing-plan h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .pricing-plan p {
    font-size: 24px; 
    margin-bottom: 20px;
    color: #3c763d; 
  }
  
  .pricing-plan button {
    background-color: #3c763d; 
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
  }
  
  .pricing-plan button:hover {
    background-color: #238b33; 
  }
  footer {
    padding: 20px;
    text-align: center;
    background: var(--blue_semiopaque);
}

footer address a {
    color: var(--black);
    text-decoration: none;
  
    margin-bottom: 2%;
}



footer h2{
    text-align: left;
    background: rgba(255, 212, 42, 0.85);
}



footer address a i {
    margin-right: 5px;
}

footer address{
    align-items: start;
    padding: 7px;
    gap: 5px;
    margin-bottom: 8px;
    font-size: large;
}



.copyright{
    padding: 0;
    width: 100vw;
    text-wrap: nowrap;
   
}

.copyright p{
    width: 100vw;
    text-wrap: nowrap;
   text-align: center;
    font-weight: 800;
    font-size: large;
}

.google-map iframe{
    width:85vw; 
    border:0;
    margin-block: 5vw;
    
}

.feedback-section {
   
    padding: 7px;
   
}

.feedback-section h3 {
    margin-bottom: 5px;
    color: #333; 
}

.feedback-section a {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 212, 42, 0.75); 
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.feedback-section a:hover {
    opacity: 1;
}

.feedback-section h3{
    color: var(--black);
}

.fa-star:before {
    content: "\f005";
    color: var(--golden);
}



.social_button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.facebook_button {
    background-color: #3b5998;
    border-radius: 50%;
    opacity: 0.85;
}

.google_button {
    background-color: #db4437;
    opacity: 0.85;
    border-radius: 50%;
}
.follow_us{
    display: flex;
    justify-content: space-around;
}
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}


.contact-form {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000; 
  
    width: 75vw; 
    
  
    
}
.small:before{
    font-size:1em;
}
.contact-form h2 {
    margin-top: 0;
    text-align: center;
    padding: 10px;
    margin-bottom: 4%;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}


.form-group {
    margin-bottom: 15px;
}
textarea{
    resize: none;
 }

label {
    font-weight: bold;
}


input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 5px;
}


button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;

}

 .call_button{
     display:none;
 }

 .stats {
    width: 100%;
    background-color: var(--background_banner); /* Updated background color */
    padding: 40px 0;
}

.stats_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.stat_card {
    background: var(--white); /* Updated background color for cards */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.stat_card h3 {
    font-size: 1.5em;
    margin: 10px 0;
    color: var(--black); /* Updated text color */
}

.stat_card p {
    font-size: 1.2em;
    color: var(--text-color); /* Updated text color */
}

.stat_card i {
    font-size: 2em;
    color: var(--crimsom); /* Updated icon color */
    margin-bottom: 10px;
    position: absolute;
    top: 20px; /* Adjust as needed to align properly */
}

.stat_card .stat-content {
    margin-top: 50px; /* Adjust as needed to align properly */
}

.stat-number,
.stat-content span.percent-sign {
    font-size: 2em;
    font-weight: bold;
    color: var(--barkelei); /* Updated color for good contrast and fitting the overall design */
}




.testimonials {
    width: 100%;
    background-color: #f0f8ff;
    padding: 40px 0;
}
.testimonials .testimonial_container {
    width: 100%;
    max-width: 930px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.testimonial {
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
}
.stars {
    color: #FFD700; /* Gold color for stars */
}
.stars i {
    margin-right: 5px;
}
.review_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.review_button {
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.review_button i {
    margin-right: 8px;
}
.social_button.facebook_button {
    background-color: #3b5998;
    color: white;
    border-radius: 50%;
}
.social_button.google_button {
    background-color: #db4437;
    color: white;
    border-radius: 50%;
   
}


  @media(max-width: 768px) {

    .navbar-menu {
        display: none;
    }



    .kebab-menu {
        display: block;
    }

    .dropdown-menu {
        display: none; /* Hidden by default */
        flex-direction: column;
        list-style: none;
        background-color: var(--blue);
        position: fixed;
        top: var(--nav-height); /* Directly below the navbar */
        width: 100%;
        padding: 0; /* Remove padding to eliminate gaps */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu.visible {
        display: flex;
        animation: dropdownAnimation 0.3s ease;
    }

    .pricing-plan {
      margin: 0 10px;
      width: calc(100% - 20px); 
    }
    .banner{
        height:max-content;
    }
    
    .call_button{
    position: fixed;
    display: flex; 
   align-items: center;
   justify-content: center; 
   background: #269041;
   right: 20px;
   bottom: 20px;
   z-index: 1000;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   text-decoration: none;
  
}

.call-now-icon:before{
    font-size:1.4em;
    color:white;
    padding: 8px;
    
}
.flipped{
     transform: scaleX(-1);
}

.small:before{
    font-size:1em;
}
.black:before{
    color:var(--black);
}

.stat_card {
    width: 100%;
}

}

.testimonials .testimonial_container {
    flex-direction: column;
}
.testimonial {
    width: 100%;
}

.testimonial p{
    font-size: 19px;
    margin-bottom: 5px;
}
  @media (max-width: 420px){
    footer address{
        font-size: medium;
}

.copyright p{
    font-size: medium;
    font-weight: 600;
    text-align: start;
}

.subheader_base{
    font-size: 24px;
}
    }

    @media (max-width: 380px){
        .textBanner__adaptive{
            font-size: 1em;
        }

        .logo > img {
            width: 80%;
           
        }
    }
    
@media only screen and (min-width: 768px){
 

    header{
        height: 100vh;
    }
    .nav__adaptive a{
        font-size: 1.5em;
    }

    .textBanner__adaptive{
        width: 75%;
        font-size: 1.55em;
        padding: 1.5vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 3.5vh;
    }

    .textBanner__adaptive button{
        width: 35vw;
    }

    .contact-form{
        width: 50vw;
    }

    button[type="submit"]{
        width: 50%;
        align-self: center;
    }
    .logo > img {
        width: 50%;
    }

    .adaptive_logo_container{
        justify-content: end;
    }

    .icon-container i {
        font-size: 3vw;
       
    }

    .icon-container{
        width: 7.5vw;
        height: 7.5vw;
    }

    .service_container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .service {
        width: calc(50% - 10px); 
        margin-bottom: 20px; 
        box-sizing: border-box;
    }
    
   
    .service::after {
        content: "";
        display: table;
        clear: both;
    }


    .banner{
        background-position: 50% 25%;
    }

    .nav__adaptive a {
        font-size: 1.45em;
    }

    .textBanner__adaptive{
        font-size: 1.40em;
        width: 65vw;
      
       
      
    }

    .adaptive_logo_container{
        justify-content: end;
    }

    .nav__adaptive{
        justify-content: flex-start;
    }

    .logo > img {
        width: 40%;
    }



    .textBanner__adaptive button{
        width: 35vw;
    }

    .contact-form{
        width: 50vw;
    }

    

}





/*Landscape mode Mobiles*/

@media only screen and (min-width: 480px) and (max-height: 640px) {
    .textBanner__adaptive {
        width: 75%;
        font-size: 1.55em;
        padding: 1.5vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 3.5vh;
    }

    .nav__adaptive {
        justify-content: flex-start;
    }

    .banner {
        height: 100vh;
       
        background-position:0%;
    }

    .logo > img {
        width: 45%;
    }

    .nav__adaptive a {
        font-size: 1.45em;
    }

    .textBanner__adaptive{
        font-size: 1.45em;
    }

    .adaptive_logo_container{
        justify-content: end;
    }

    .icon-container i {
        font-size: 3vw;
       
    }

    .icon-container{
        width: 7.5vw;
        height: 7.5vw;
    }
.form__inputs_container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-form{
    width: 90vw;
    padding: 40px;
}
.close-btn{
    top: 20px;
    right: 30px;
    font-size: 30px;
}
.form-group {
   
    width: 45%;
}

.contact-form h2{

    transform: translate(60%,50%);
    padding: 0;
}
button[type="submit"]{
    width: 100%;
}

}
@media only screen and (min-width: 480px) and (max-height: 640px),
       only screen and (min-width: 768px)
       {
        .service_container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        
        
        .service {
            width: calc(50% - 10px); 
            margin-bottom: 20px; 
            box-sizing: border-box;
        }
    
        .serives_container{
            display: flex;
            justify-content: space-evenly;
            align-items: center;
        }
    
        .adaptive__service_unit{
            display: flex;
            flex-direction: column;
        }
    
        #services>h2{
            margin: 0;
        }
    
        .pricing-plans{
            justify-content: space-evenly;
        }
    
        .pricing-plan{
            width: 25%;
        }

        #contact>.subheader_base
        {
          margin-bottom: 2.5%;
        }

      
       }
 

    


   
/* PCs and larger screens */
@media only screen and (min-width: 1025px) {
    .banner, 
    .nav__adaptive
    {
        font-size: 1.25em;
    }

    .banner{
        height: 60vh;
    }


    #pricing,
    .pricing-plan figure i,
    #about>div,
    #services,
    #testimonials,
    #blog
    footer {
        font-size: 1.5em;
    }

    .pricing-plan{
        width: 28%;
    }
      
      .pricing-plan h3,
      .pricing-plan p  {
        font-size: 1.4em;
      
      }
      
      .pricing-plan button {
      
        font-size: 1.3em;
     
      }
      #contact>.subheader_base
      {
        margin-bottom: 2.5%;
      }
      footer address,
      .copyright>p{
        font-size: 1.15em;
      }

      .contact-form{
        width: 25%;
    }
    
    .contact_footer{
        display: flex;
        justify-content: space-around;
    }
   

    
    .feedback-section h3{
        margin-bottom:5%;
    }

   
}





@media only screen and (min-width: 480px)and (max-height:350px)
    {
        .textBanner__adaptive{
            font-size: 1.2em;
        }

      

    }

    @media only screen and (max-width: 350px)
    {
       .banner{
        height: 75vh;
       }

        .adaptive_logo_container{
            height:8vh
        }

        ul li a{
            font-size: 1em;
            line-height: 50px;
            font-weight: 600;
        }

        #book_btn{
            width: 75%;
        }

       #services{
        font-size: 0.9em;
       }

        
        .pricing-plan figure i{
            font-size: 1.3em
        }

        .pricing-plan button,
        .pricing-plan h3
        {
            font-size: 1em;
        }
        .pricing-plan p{
            font-size: 1.2em;
        }

        footer address{
            font-size: 0.8em;
        }

        .copyright p{
            font-size: 0.8em;
        }

        .contact-form{
            width: 90vw;
        }

    }
    
 
    .hidden {
        display: none;
    }
    
    .visible{
        display: flex;
    }