* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: 'Outfit', sans-serif;
  }
  
  h1, h2 , h3{
    font-family: 'DM Serif Display', serif;
  }

 html {
    scroll-behavior: smooth;
  }
  

.navbar .navdiv {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    padding: 15px;
    align-items: center;
}
.navbar .navdiv .headerlogo {
    width: 5vw; /* Responsive width (10% of the viewport width) */
    max-width: 150px; /* Ensure it doesn't get too big */
    height: auto; /* Let height adjust based on the aspect ratio */
}

.navbar .navdiv .headerlogo img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensures the logo scales properly without distortion */
}
i.fas.fa-bars {
    cursor: pointer;
}

.navbar .navdiv .links ul {
    display: flex;
    gap: 100px;
}

.navbar .navdiv .links ul li{
    list-style: none;
}


.navbar .navdiv .links ul li a {
    text-decoration: none;
    font-size: 1.25rem;
    /*font-size: 20px;*/
    /*font-style: italic;*/ 
    font-weight: 100;
    color: black;
    position: relative;
    transition: all 0.5s ease-in;
}
/* Hover effect for the text color */
.navdiv .links ul li a:hover {
    color: skyblue;
}

/* Arrow effect using ::before pseudo-element */
.navbar .navdiv .links ul li a::before {
    content: '';
    position: absolute;
    bottom: -10px; /* Position the arrow below the text */
    left: 0;
    width: 0; /* Initially, the width of the arrow is 0 */
    height: 10px; /* The height of the arrow */
    background-image: url('images/arrowrightb.png'); /* Set the background image of the arrow */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s ease-in-out; /* Animate the width change */
}

/* When the link is hovered, expand the arrow from left to right */
.navdiv .links ul li a:hover::before {
    width: 100%; /* Expand the arrow to full width */
}
/*
.navbar .navdiv .links ul li a::before{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    background-image: url(images/arrowrightb.png);
    background-repeat: no-repeat;
    transform: scaleX(0);
    transition: 1s;
    transform-origin: bottom left;
    height: 10px; 
    background-position: right;
}
.navdiv .links ul li a:hover::before{
    width: 100%;
    transform: scaleX(1);
}  
*/

.navbar .navdiv .icons {
    display: flex;
    gap: 2rem; /* instead of fixed 30px */
    cursor: pointer;
}

.navbar .navdiv .icons i {
    font-family: "Font Awesome 6 Free";
    font-size: 1.2rem; /* already responsive */
}

.navbar .navdiv .icons a {
    color: black;
}
/*
#first {
    display: flex;
    flex-direction: column;
    align-items: center;
}
*/

/* 🌐 Banner Section Styles */
#banner {
    background-image: url("images/male-technician-overalls-blue-cap-repairs-air-conditioner-wall.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 700px; /* Full height on larger screens */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 20px;
}

#banner .content {
    max-width: 600px;
    width: 100%;
}

#banner .content .text1 h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* ✅ text shadow for contrast */
}

#banner .content .text2 p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* ✅ same shadow for paragraph */
}

#banner .content .banner-button {
    margin-top: 40px;
}

#banner .content .banner-button a {
    text-decoration: none;
    color: white;
    padding: 15px 35px;
    background-color: #0057A6;
    border-radius: 25px;
    font-size: 15px;
    transition: all 0.5s ease-in;
}

#banner .content .banner-button a:hover {
    background-color: white;
    color: #0057A6;
}

#first {
    margin-bottom: 40px;  /* Adds space between this section and the next section */
}
#first .text {
    text-align: center;
    margin-top: 120px;
    margin-bottom: 40px;
}
#first .text h1 {
    margin-bottom: 30px;
    font-weight: 100;
    font-size: 37px;
    color: #0258A7;
}

#first .text p {
    font-size: larger;
}

#first .container .row{
    display: flex;
    justify-content: center;
    gap: 8px;
    text-align: center;
    flex-wrap: wrap;  /* This allows the columns to wrap on smaller screens */
}

#first .container .row .column1, 
#first .container .row .column2, 
#first .container .row .column3, 
#first .container .row .column4 {
    flex: 1 1 22%;  /* Each column will take up 22% of the width */
    max-width: 22%;  /* Maximum width of each column */
    box-sizing: border-box;  /* Make sure padding and border don't overflow */
    margin-bottom: 20px;  /* Add some space at the bottom */
}

#first .container .row .image {
    width: 100%;  /* Make sure the image container spans the full width of the column */
    height: auto;  /* Height will adjust automatically */
    padding: 30px;
}

#first .container .row .image img {
    width: 100%;  /* Ensures the image takes up the full width of the image container */
    height: auto;  /* Maintains aspect ratio of the images */
    object-fit: cover;  /* Ensures the images cover the entire space without distortion */
}

#first .container .row .column1 .info p, 
#first .container .row .column2 .info p, 
#first .container .row .column3 .info p, 
#first .container .row .column4 .info p {
    font-size: 15px;
    margin-bottom: 10px;
}
/*
#first .container .row .info{
    margin-top: 25px;
}
*/

#first .container .row .column1 .info p:last-of-type {
    color: blue; /* Set the color to blue */
}

#first .container .row .column2 .info p:last-of-type {
    color: blue; /* Set the color to blue */
}
#first .container .row .column3 .info p:last-of-type {
    color: blue; /* Set the color to blue */
}


#third {
    background: #F8F9FB;
}


#third .container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 20px;
    margin-bottom: 90px;
    margin-top: 90px;
}   

#third .container .row {
    display: flex;
    gap: 100px;
    align-items: center;
    flex-wrap: wrap; /* Ensures responsiveness */
    
}

#third .container .row .column1{
    /* width: 50%; */
    flex: 1;
    min-width: 300px; /* Ensures it doesn't shrink too small on mobile */
}

#third .container .row .column2{
    /* width: 50%; */
    flex: 1;
    min-width: 300px; 
}

#third .container .row .column1 .image {
    width: 100%;
    height: auto;
}
#third .container .row .column1 .image img {
    width: 100%;
    height: auto;
}

#third .container .row .column2 .text .title p {
    color: #0258A7;
    font-size: 25px;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

#third .container .row .column2 .subtitle h1 {
    font-size: 55px;
    font-weight: lighter;
    margin-bottom: 30px;
    color: #333;
}

/*
#third .container .row .column2 .subtitle h1 span {
    margin-left: 50px;
}

*/

#third .container .row .column2 .content p {
    font-size: 16px; /* Adjust font size */
    line-height: 1.6; /* Adjust line height for better spacing between lines */
    word-spacing: 2px; /* Optional: adds space between words */
    color: #555; /* Softer text color */
}

.ac-services {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 80px;
}
  
  .section-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0258A7;
    font-weight: 100;
}
  
.section-text {
    font-size: 1.1rem;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 30px;
}
  
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
}
  
  .service-item {
    width: 30%;
    box-sizing: border-box;
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .service-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: rgb(51, 51, 51);
  }
  
  .service-description {
    font-size: 1rem;
    color: #555;
  }
  

footer#last {
    /*background-color: #152F4F;*/
    background-color: #062643;
    padding: 80px 30px 30px;
}

footer#last .container {
    max-width: 1400px;
    width: 100%;
    color: white;
    margin: auto;
}
footer#last .container .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer#last .container .row .column1 .text {
    width: 400px;
    line-height: 25px;
}

footer#last .container .row .column1 .footerlogo {
    width: 5vw;
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

footer#last .container .row .column1 .footerlogo img{
    width: 100%;
    height: auto;
    object-fit: contain;
}

footer#last .container .row .column2 ul {
    list-style: none;
}
footer#last .container .row .column2 ul li{
    line-height: 25px;
}
footer#last .container .row .column2 ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: all 0.5s ease-in;
    /* list-style: none; */
}

footer#last .container .row .column2 ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease-in;
    /* list-style: none; */
}
footer#last .container .row .column2 ul li a:hover{

    color: skyblue;
}

footer#last .container .row .column2 .services h2{
    font-weight: lighter;
    margin-bottom: 15px;
}

footer#last .container .row .column3 ul {
    list-style: none;
}

footer#last .container .row .column3 ul li{
    line-height: 25px;
}

footer#last .container .row .column3 ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease-in;
}

footer#last .container .row .column3 ul li a{
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease-in;
}

footer#last .container .row .column3 ul li a:hover{
    color: skyblue;
}

footer#last .container .row .column3 .About h2{
    font-weight: 100;
    margin-bottom: 15px;
}

footer#last .container .row .column4 .text h2{
    font-weight: 100;
    margin-bottom: 15px;
}

footer#last .container .row .column4 .icons{
    display: flex;
    gap: 15px;
}      


footer#last .container .row .column4 .icons a {
    color: white;
}

footer#last .container .row1 .text {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    margin-top: 20px;
}

footer#last .container .row1 .text a {
    color: white;
    text-decoration: none;
}

footer#last .container .row1 {
    margin-top: 80px;
    border-top: 1px solid;
}


.login-container {
    /* border: 1px solid; */
    width: 450px;
    line-height: 50px;
    text-align: center;
}


.login-container p a {
    text-decoration: none;
    color: black;
}   

.login-container h2 {
    background-color: #0057A6;
    color: white;
}


.login-container button {
    background-color: #0057A6;
    padding: 10px 40px;
    color: white;
    margin-top: 10px;
    font-size: 1rem;
    /* margin: auto; */
    transition: all 0.5s ease-in;
}


.login-container button:hover {
    color: #0057A6;
    background-color: white;
    border: none;
}





.signup-container{
    /* border: 1px solid; */
    width: 450px;
    line-height: 50px;
    text-align: center;
}

.signup-container h2 {
    background-color: #0057A6;
    color: white;
}

.signup-container p a {
    text-decoration: none;
    color: black;
}



.signup-container button {
    background-color: #0057A6;
    padding: 10px 40px;
    color: white;
    margin-top: 10px;
    font-size: 1rem;
    /* margin: auto; */
    transition: all 0.5s ease-in;
}

.signup-container button:hover {
    color: #0057A6;
    background-color: white;
    border: none;
}
.services-page #services {
    margin-top: 70px;
    margin-bottom: 100px;
}

.services-page #services h1 {
    text-align: center;
    margin-bottom: 50px;
    /* color: #0258A7; */
    font-size: 60px;
    font-weight: 100;
}

.services-page #services .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
}

.services-page #services .services-grid .service-item {
    width: 30%;
    box-sizing: border-box;
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.services-page #services .services-grid .service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    /* color: rgb(51, 51, 51); */
    color: #0258A7;
}

.services-page #services .services-grid .service-item p {
    font-size: 1rem;
    color: #555;
}

.services-page #services .service-item .icon i {
  font-size: 40px;
  color: #0258A7;
  margin-bottom: 20px;
}



.services-page #highlight-services h2{
    font-size: 3rem;
    font-weight: lighter;
    margin-bottom: 50px;
}

.services-page #highlight-services {
    text-align: center;
    margin-top: 50px;
    background-color: #f4f4f4;  
    padding: 50px 20px;
}

.services-page #highlight-services .highlight-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.services-page #highlight-services .highlight-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0258A7;
}

.services-page #highlight-services .highlight-box p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.services-page #highlight-services .highlight-box ul {
    line-height: 2rem;
    margin-bottom: 30px;
}
.services-page #highlight-services .highlight-box li {
    list-style: none;
    color: #333;
    transition: all 0.3s ease-in;
}

.services-page #highlight-services .highlight-box li span {
    cursor: pointer;
    display: inline-block; /* Makes the span only take up the space of the text */
    transition: all 0.3s ease-in;
}

.services-page #highlight-services .highlight-box li span:hover {
    font-weight: 600;
}

.services-page #highlight-services .highlight-box .cta-button {
    background-color: #0258A7;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}


.services-page #highlight-services .highlight-box .cta-button:hover {
    background-color: white;
    color: #0258A7;
}

/* Hover effect on the boxes */

.services-page #highlight-services .highlight-box:hover {
    transform: translateY(-10px);
}


.services-page #why-choose-us {
    text-align: center;
    margin: 100px 0;
}

.services-page #why-choose-us h2 {
    font-size: 3rem;
    font-weight: 100;
    margin-bottom: 20px;
}
.services-page #why-choose-us .reason {
    display: inline-block;
    width: 30%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services-page #why-choose-us .reason h3 {
    font-size: 2rem;
    font-weight: 100;
    margin-bottom: 20px;
    color: #0258A7;
}
.services-page #why-choose-us .reason p {
    font-size: 1rem;
    color: #555;
}

.services-page #our-process {
  text-align: center;
  margin: 100px auto;
  padding: 0 20px;
  max-width: 1200px;
}

.services-page #our-process h2 {
  font-size: 3rem;
  font-weight: 100;
  margin-bottom: 50px;
}

.services-page #our-process .step {
  display: inline-block;
  width: 22%;
  min-width: 250px;
  margin: 20px;
  padding: 25px;
  background-color: #f4f4f4;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  vertical-align: top;
  transition: transform 0.3s ease;
}

.services-page #our-process .step:hover {
  transform: translateY(-10px);
}

.services-page #our-process .step .step-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0258A7;
  margin-bottom: 10px;
}

.services-page #our-process .step h3 {
  font-size: 1.5rem;
  color: #0258A7;
  margin-bottom: 10px;
}

.services-page #our-process .step p {
  font-size: 1rem;
  color: #555;
}

.services-page #service-guarantee {
    text-align: center;
    background-color: #0258A7;
    color: white;
    padding: 30px 20px;
    margin-top: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.services-page #service-guarantee h2 {
    font-size: 2.5rem;
    font-weight: 100;
    margin-bottom: 10px;
}

.services-page #service-guarantee p {
    font-size: 1.2rem;
    color: #f4f4f4;
    margin-top: 20px;
}


.about-page #about-us {
    font-family: 'Segoe UI', sans-serif;
    padding: 120px 20px;
    color: #333;
    background-color: #fff;
}
  
.about-page #about-us .about-hero {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
  }
  
.about-page #about-us .about-hero h1 {
    color: #0258A7;
    font-size: 2.5rem;
  }
  
.about-page #about-us .about-hero p {
    font-size: 1.1rem;
    color: #666;
  }
  
  .about-page #about-us .about-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}
  
  .about-page #about-us .about-content h2 {
    color: #0258A7;
    font-size: 1.8rem;
    margin-top: 50px;
}
  
.about-page #about-us .about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
.about-page #about-us .about-content .about-list, .about-values {
    list-style: none;
    padding-left: 0;
    font-size: 1.05rem;
    line-height: 1.8;
  }
  
  .about-page #about-us .about-content .about-cta {
    text-align: center;
    margin-top: 100px;
}
  
.about-page #about-us .about-content .about-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}
  
.about-page #about-us .about-content .about-cta  .btn {
    background-color: #0258A7;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.5s ease-in;
}

.about-page #about-us .about-content .about-cta .btn:hover {
    color: #0057A6;
    background-color: white;
  }
  

#contact-us {
    margin: 80px 0 50px 0;
}


#contact-us .contact-container {
    text-align: center;
    padding: 50px 20px;
  }
  

#contact-us .contact-container h1 {
    color: #0258A7;
    font-size: 3rem;
    /* font-weight: 100; */
    margin-bottom: 40px;
}

.contact-page #contact-us .contact-container > p {
  font-size: 1.2rem;       /* slightly larger for readability */
  color: #555;             /* softer dark, not full black */
  max-width: 600px;        /* limit line length for easy reading */
  margin: 0 auto 40px;     /* center and spacing below */
  line-height: 1.6;        /* good line height */
  font-weight: 400;        /* normal weight, not too light or bold */
  letter-spacing: 0.02em;  /* subtle letter spacing */
}


#contact-us .contact-container .contact-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 80px;
}
  
#contact-us .contact-container .contact-methods  .contact-box {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    width: 350px;
    height: auto;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
}
  
#contact-us .contact-container .contact-methods .contact-box i {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 40px;
}


#contact-us .contact-container .contact-methods  .contact-box h3 {
    margin-bottom: 20px;
    font-weight: 100;
}


#contact-us .contact-container .contact-methods .contact-box a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.5s ease-in;
    /* Added for wrapping */
    word-break: break-word;    /* break long words */
    white-space: normal;       /* allow wrapping */
    display: inline-block;     /* so width constraints apply properly */
    max-width: 100%;           /* prevent overflow */
  }
  
#contact-us .contact-container .contact-methods  .contact-box a:hover {
    color: #007BFF;
  }
  





.signup-page .navbar {
    /* height: 108px; */
    margin-bottom: 10px;
    /* background-color: #062643; */
    color: black;
    box-shadow: 3px 3px 20px 3px #c1e2ff;
}

.login-page .navbar {
    /* height: 108px; */
    margin-bottom: 10px;
    /* background-color: #062643; */
    color: black;
    box-shadow: 3px 3px 20px 3px #c1e2ff;
}


.signup-page main{
    display: flex;
    justify-content: center;
    margin-top: 100px;
}


.login-page main{
    display: flex;
    justify-content: center;
    margin-top: 100px;
}


.signup-page main .signup-container input#name {
    /* text-align: center; */
    margin-left: 50px;
}



.signup-page main .signup-container input#email {
    margin-left: 83px;
}

.signup-page main .signup-container input#password {
    margin-left: 53px;
}

.login-page main .login-container input#email {
    margin-left: 80px;
}

.login-page main .login-container input#password {
    margin-left: 50px;
}

.icon i {
    font-size: 40px;  /* Adjust the size of the icon */
    color: #0258A7;   /* Change the color */
}





/* ---------------------------------- */
/* 📱 Responsive Base + Media Queries */
/* (START AFTER ALL SECTION CSS)     */
/* ---------------------------------- */

/* ✅ Mobile-first base overrides */
.navbar .navdiv {
  position: relative;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 10px 20px;
}

.navbar .navdiv .links {
  display: none;
  flex-direction: column;
  background-color: white;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 100;
}

.navbar .navdiv .links ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin: 0;
    list-style: none;
    padding: 1rem 0;
}

/* Show menu when active class is added */
.navbar .navdiv .links.active {
  display: flex;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* subtle shadow */
  border-radius: 0 0 8px 8px; /* optional rounded corners */
}

/* Logo & icons on mobile */
.navbar .navdiv .headerlogo {
  width: 30vw;
  max-width: 120px;
}

.navbar .navdiv .icons {
  display: flex;
  gap: 1rem;
}

.navbar .navdiv .icons .fa-bars {
  display: block;
  font-size: 1.2rem;
  cursor: pointer;
}




/* ✅ Media query for tablets and up */

/* 🌐 Responsive Header */

@media (min-width: 768px) {
  .navbar .navdiv {
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 15px;
  }

  .navbar .navdiv .links {
    display: block !important;
    position: static;
    background: none;
    width: auto;
    box-shadow: none;
    border-radius: 0;
  }

  .navbar .navdiv .links ul {
    flex-direction: row;  /* 💻 Horizontal layout for desktop */
    justify-content: center;
    gap: 100px;
  }

  .navbar .navdiv .icons .fa-bars {
    display: none;
  }

  .navbar .navdiv .headerlogo {
    width: 5vw;
    max-width: 150px;
  }




  
}

@media (max-width: 768px) {
.row1 .text p {
    font-size: 1rem;
    margin-top: 10px;
    text-align: center;
}
}
@media (max-width: 480px) {
    .row1 .text p {
        font-size: 0.9rem;
        margin-top: 5px;
    }



}


/* ---------------------------------- */
/* 📦 Responsive Footer Styles */
/* ---------------------------------- */
@media (max-width: 768px) {
  footer#last .container .row {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  footer#last .container .row .column1,
  footer#last .container .row .column2,
  footer#last .container .row .column3,
  footer#last .container .row .column4 {
    width: 100%;
  }

    footer#last .container .row .column1 .footerlogo {
    width: 120px;
    margin: 0 auto 15px; /* centers the logo */
  }

  footer#last .container .row .column1 .text {
    width: 100%;
    margin: 0 auto;
  }

  footer#last .container .row .column4 .icons {
    justify-content: center;
  }

  footer#last .container .row1 .text {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Tablet and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  footer#last .container .row .column1 .footerlogo {
    width: 10vw;
    max-width: 120px;
  }
  footer#last .container .row .column1 .text {
    width: 300px;
    font-size: 14px;
  }
  footer#last .container .row .column2 ul li a,
  footer#last .container .row .column3 ul li a {
    font-size: 13px;
  }
  footer#last .container .row .column4 .icons {
    gap: 12px;
  }
}


/* Narrow range tweak: 770–840px */
@media (min-width: 770px) and (max-width: 840px) {
  footer#last .container .row {
    gap: 2.5rem;
  }

  footer#last .container .row .column2 ul li a,
  footer#last .container .row .column3 ul li a {
    font-size: 13.5px;
  }

  footer#last .container .row .column1 .text {
    width: 280px;
    font-size: 14.5px;
  }
}



/* Medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  footer#last .container .row .column1 .footerlogo {
    width: 7vw;
    max-width: 140px;
  }
  footer#last .container .row .column1 .text {
    width: 350px;
    font-size: 15px;
  }
  footer#last .container .row .column2 ul li a,
  footer#last .container .row .column3 ul li a {
    font-size: 14px;
  }
  footer#last .container .row .column4 .icons {
    gap: 14px;
  }
}

/* Large desktops */
@media (min-width: 1200px) and (max-width: 1399px) {
  footer#last .container .row .column1 .footerlogo {
    width: 6vw;
    max-width: 150px;
  }
  footer#last .container .row .column1 .text {
    width: 400px;
    font-size: 16px;
  }
  footer#last .container .row .column2 ul li a,
  footer#last .container .row .column3 ul li a {
    font-size: 15px;
  }
  footer#last .container .row .column4 .icons {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  footer#last .container .row1 {
    margin-top: 60px;
    border-top: 1px solid #ccc;
  }
}




/* ---------------------------------- */
/* 📦 Responsive Banner Styles */
/* ---------------------------------- */
@media (max-width: 768px) {
  #banner {
    height: auto; /* Allow natural height on smaller screens */
    padding: 60px 20px;
  }

  #banner .content .text1 h1 {
    font-size: 1.8rem;
  }

  #banner .content .text2 p {
    font-size: 1rem;
  }

  #banner .content .banner-button a {
    padding: 12px 25px;
    font-size: 14px;
  }
}







/* ---------------------------------- */
/* 📦 Responsive First Section Styles */
/* ---------------------------------- */
@media (max-width: 768px) {
    #first .container .row .column1,
    #first .container .row .column2,
    #first .container .row .column3,
    #first .container .row .column4 {
        flex: 1 1 48%;
        max-width: 48%;
    }
}

@media (max-width: 480px) {
    #first .container .row .column1,
    #first .container .row .column2,
    #first .container .row .column3,
    #first .container .row .column4 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* ---------------------------------- */
/* 📦 Responsive Third Section Styles */
/* ---------------------------------- */

@media (max-width: 768px) {
    #third .container .row {
        gap: 40px; /* reduce gap for smaller screens */
    }

    #third .container .row .column1,
    #third .container .row .column2 {
        flex: 1 1 100%;
        min-width: 100%;
    }

    #third .container .row .column2 .subtitle h1 {
        font-size: 38px; /* reduce headline size */
    }

    #third .container .row .column2 .text .title p {
        font-size: 20px; /* smaller title */
    }

    #third .container .row .column2 .content p {
        font-size: 14px; /* smaller paragraph */
    }
}

@media (max-width: 320px) {
    #third .container .row .column2 .subtitle h1 {
        font-size: 28px; /* even smaller for tiny phones */
    }

    #third .container .row .column2 .text .title p {
        font-size: 16px; /* title smaller */
        letter-spacing: 2px; /* tighten letter spacing */
        margin-bottom: 20px; /* less margin */
    }

    #third .container .row .column2 .content p {
        font-size: 13px; /* smaller text */
        line-height: 1.4; /* tighter line height */
    }

    #third .container {
        padding: 0 10px; /* reduce side padding for small screens */
    }
}

/* ---------------------------------- */
/* 📦 Responsive AC Services Section Styles */
/* ---------------------------------- */

@media (max-width: 1024px) {
  .services-grid {
    gap: 40px; /* Reduce gap for medium screens */
  }
  .service-item {
    width: 45%; /* Two items per row on tablets */
  }
}

@media (max-width: 600px) {
  .services-grid {
    gap: 40px; /* Smaller gap for small screens */
  }
  .service-item {
    width: 100%; /* One item per row on small phones */
  }
  
  .section-heading {
    font-size: 2rem; /* Slightly smaller heading */
  }
  
  .section-text {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 10px;
  }
}



/* ---------------------------------- */
/* 📦 Services Section Base Styles */
/* ---------------------------------- */

.services-page #services {
    margin-top: 70px;
    margin-bottom: 100px;
}

.services-page #services h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 60px;
    font-weight: 100;
}

.services-page #services .services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
}

.services-page #services .services-grid .service-item {
    width: 30%;
    box-sizing: border-box;
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services-page #services .services-grid .service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0258A7;
}

.services-page #services .services-grid .service-item p {
    font-size: 1rem;
    color: #555;
}

.services-page #services .service-item .icon i {
    font-size: 40px;
    color: #0258A7;
    margin-bottom: 20px;
}

/* ---------------------------------- */
/* 📱 Responsive Services Section Styles */
/* ---------------------------------- */

/* Small devices (phones, up to 480px) */
@media (max-width: 480px) {
  .services-page #services {
    margin-top: 50px;
    margin-bottom: 70px;

  }

  .services-page #services h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .services-page #services .services-grid {
    flex-direction: column;
    align-items: center;  /* Center the column */
    gap: 2rem;            /* Add vertical spacing */
  }

  .services-page #services .services-grid .service-item {
    width: 90%;          /* Make the service boxes take most of the screen */
    max-width: 400px;    /* Optional max width for better readability */
    padding: 15px;
  }

  .services-page #services .services-grid .service-item h3 {
    font-size: 1.25rem;
  }

  .services-page #services .services-grid .service-item p {
    font-size: 0.9rem;
  }

  .services-page #services .service-item .icon i {
    font-size: 30px;
    margin-bottom: 15px;
  }
}


/* Medium devices (tablets, 481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .services-page #services h1 {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .services-page #services .services-grid {
    gap: 50px;
  }

  .services-page #services .services-grid .service-item {
    width: 45%;
    padding: 18px;
  }

  .services-page #services .services-grid .service-item h3 {
    font-size: 1.4rem;
  }

  .services-page #services .services-grid .service-item p {
    font-size: 0.95rem;
  }

  .services-page #services .service-item .icon i {
    font-size: 35px;
    margin-bottom: 18px;
  }
}

/* Large tablets / small desktops (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .services-page #services h1 {
    font-size: 50px;
    margin-bottom: 45px;
  }

  .services-page #services .services-grid {
    gap: 70px;
  }

  .services-page #services .services-grid .service-item {
    width: 30%;
    padding: 20px;
  }

  .services-page #services .services-grid .service-item h3 {
    font-size: 1.5rem;
  }

  .services-page #services .services-grid .service-item p {
    font-size: 1rem;
  }

  .services-page #services .service-item .icon i {
    font-size: 40px;
    margin-bottom: 20px;
  }
}

/* Desktops (992px and above) */
@media (min-width: 992px) {
  .services-page #services h1 {
    font-size: 60px;
    margin-bottom: 50px;
  }

  .services-page #services .services-grid {
    gap: 100px;
  }

  .services-page #services .services-grid .service-item {
    width: 30%;
    padding: 20px;
  }

  .services-page #services .services-grid .service-item h3 {
    font-size: 1.5rem;
  }

  .services-page #services .services-grid .service-item p {
    font-size: 1rem;
  }

  .services-page #services .service-item .icon i {
    font-size: 40px;
    margin-bottom: 20px;
  }
}

/* ---------------------------------- */
/* 📦 Highlight Services Section Base Styles */
/* ---------------------------------- */

.services-page #highlight-services {
    text-align: center;
    margin: 50px auto 0 auto;  /* top margin 50px, center horizontally */
    background-color: #f4f4f4;  
    padding: 50px 20px;

    max-width: 1200px;         /* Limit max width on big screens */
    display: flex;             /* Flex container for highlight boxes */
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;                 /* Space between boxes */
}


.services-page #highlight-services h2 {
    font-size: 3rem;
    font-weight: lighter;
    margin-bottom: 50px;
    width: 100%;               /* Make heading full width */
}

.services-page #highlight-services .highlight-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    
    flex: 1 1 45%;             /* Each box roughly 45% width */
    max-width: 500px;          /* Max width per box */
    box-sizing: border-box;
    text-align: left;          /* Better readability */
}

.services-page #highlight-services .highlight-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0258A7;
}

.services-page #highlight-services .highlight-box p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.services-page #highlight-services .highlight-box ul {
    line-height: 2rem;
    margin-bottom: 30px;
    padding-left: 20px;        /* Indent list */
}

.services-page #highlight-services .highlight-box li {
    list-style: disc;          /* Show bullet points */
    color: #333;
    transition: all 0.3s ease-in;
}

.services-page #highlight-services .highlight-box li span {
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease-in;
}

.services-page #highlight-services .highlight-box li span:hover {
    font-weight: 600;
}

.services-page #highlight-services .highlight-box .cta-button {
    background-color: #0258A7;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.services-page #highlight-services .highlight-box .cta-button:hover {
    background-color: white;
    color: #0258A7;
}

/* Hover effect on the boxes */
.services-page #highlight-services .highlight-box:hover {
    transform: translateY(-10px);
}


/* ---------------------------------- */
/* 📱 Responsive Highlight Services Section Styles */
/* ---------------------------------- */

/* Medium devices (tablets, up to 767px) */
@media (max-width: 767px) {
  .services-page #highlight-services {
    display: block;           /* Stack boxes vertically */
    padding: 40px 15px;
  }

  .services-page #highlight-services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .services-page #highlight-services .highlight-box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    text-align: left;
  }
}

/* Small devices (phones, up to 480px) */
@media (max-width: 480px) {
  .services-page #highlight-services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .services-page #highlight-services .highlight-box h3 {
    font-size: 1.5rem;
  }

  .services-page #highlight-services .highlight-box p,
  .services-page #highlight-services .highlight-box ul {
    font-size: 1rem;
  }


  .services-page #highlight-services .highlight-box .cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }

}



/* ---------------------------------- */
/* 💡 Why Choose Us Section Base Styles */
/* ---------------------------------- */

.services-page #why-choose-us {
  text-align: center;
  margin: 100px auto;
  padding: 0 20px;
  max-width: 1200px;
}

.services-page #why-choose-us h2 {
  font-size: 3rem;
  font-weight: 100;
  margin-bottom: 50px;
}

.services-page #why-choose-us .reason-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.services-page #why-choose-us .reason {
  flex: 1 1 300px; /* Grows, shrinks, and starts at 300px */
  max-width: 350px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.services-page #why-choose-us .reason h3 {
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 20px;
  color: #0258A7;
}

.services-page #why-choose-us .reason p {
  font-size: 1rem;
  color: #555;
}



/* ---------------------------------- */
/* 📱 Responsive Why Choose Us Section Styles */
/* ---------------------------------- */

@media (max-width: 480px) {
  .services-page #why-choose-us .reason {
    padding: 15px;
  }

  .services-page #why-choose-us h2 {
    font-size: 2rem;
  }

  .services-page #why-choose-us .reason h3 {
    font-size: 1.5rem;
  }
}


/* ---------------------------------- */
/* 📱 Responsive Our Process Section Styles */
/* ---------------------------------- */

@media (max-width: 768px) {
  .services-page #our-process .step {
    width: 45%;
  }

  .services-page #our-process h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .services-page #our-process .step h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .services-page #our-process .step {
    width: 100%;
    margin: 15px 0;
    padding: 20px;
  }

  .services-page #our-process h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .services-page #our-process .step-number {
    font-size: 1.2rem;
  }

  .services-page #our-process .step h3 {
    font-size: 1.2rem;
  }

  .services-page #our-process .step p {
    font-size: 0.95rem;
  }
}

/* ---------------------------------- */
/* 📱 Responsive Service Guarantee Section Styles */
/* ---------------------------------- */

@media (max-width: 480px) {
  .services-page #service-guarantee {
    padding: 20px 15px;
  }

  .services-page #service-guarantee h2 {
    font-size: 1.8rem;
  }

  .services-page #service-guarantee p {
    font-size: 1rem;
  }
}

/* ---------------------------------- */
/* 📱 Responsive Contact Section Styles */
/* ---------------------------------- */

@media (max-width: 400px) {
  #contact-us .contact-container .contact-methods .contact-box {
    width: 100%;         /* full width inside container */
    max-width: 350px;    /* max so it doesn’t get too wide */
    padding: 20px;
    box-sizing: border-box; /* make padding included in width */
  }
  #contact-us .contact-container .contact-methods .contact-box {
    width: 100%;
    max-width: 350px;
    padding: 20px;
  }
}


