/* Importing Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root{
    /*colors*/
    --white-color: #fff;
    --dark-color: #252525;
    --Primary-color: #3b141c;
    --secondary-color: #f3961c;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;

    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font Weight */
    --font-weight-normal:400;
    --font-weight-medium:500;
    --font-weight-semibold:600;
    --font-weight-bold:700;

    /* Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;
}

html{
    scroll-behavior: smooth;
}
/* Stylings for whole site*/
ul{
    list-style: none;
}

a{
    text-decoration: none;
}

button{
    cursor: pointer;
    border: none;
    background: none;
}
img{
    width: 100%;
}

.section-content{
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
    
}

.section-title{
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after{
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

/* Navbar styling*/
header{
    position: fixed;
    width: 95%;
    z-index: 5;
    background: var(--Primary-color);
}

header .navbar{
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo .logo-text{
    color: var(--white-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);

}

.navbar .nav-menu{
    display: flex;
    gap: 10px;
}
.navbar .nav-logo img {
    width: 50px; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
}


.navbar .nav-menu .nav-link{
    padding: 10px 18px;
    font-size: var(--font-size-m);
     color: var(--white-color);
     border-radius: var(--border-radius-m);
     transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.hero-section{
    min-height: 100vh;
    background: var(--Primary-color);
}

.hero-section .section-content{
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white-color);
    justify-content: space-between;
}

.hero-section .hero-details .title{
   font-size: var(--font-size-xxl);
   color: var(--secondary-color);
   font-family: "Miniver" sans-serif;
}

.hero-section .hero-details .subtitle{
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description{
    font-size: var(--font-size-m);
    max-width: 70%;
    margin: 24px 0 40px;
}

.hero-section .hero-details .buttons{
display: flex;
gap: 23px;
}

.hero-section .hero-details .button{
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--Primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}
.hero-section .hero-image-wrapper{
    max-width: 500px;
    margin-right: 30px;
}

.hero-section .hero-details .button:hover {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}

.hero-section .hero-details .Contact-us:hover {
    color: var(--Primary-color);
    border-color: var(--secondary-color);
    background: var(--secondary-color);
}

/* About Section Styling*/
.about-section{
    padding: 120px 0;
    background: var(--light-pink-color);
}

.about-section .section-content{
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 0 !important; /* Force square shape */
}

.about-section .about-details .section-title{
    padding: 0;
}

.about-section .about-details{
    max-width: 50%;
}

.about-section .about-details .text{
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
}

.about-section .social-link-lists{
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-section .social-link-lists .social-link{
    color: var(--Primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

.about-section .social-link-lists .social-link:hover{
    color: var(--Secondary-color);
}

/* Our Services Styling */

.Our-services{
    color: var(--white-color);
    background: var(--dark-color);
    padding: 50px 0 100px;
}
.Our-services .services-list{
      display: flex;
      flex-wrap: wrap;
      gap: 110px;
      align-items: center;
      justify-content: space-between;
}

.Our-services .services-list .services{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    width: calc(100% / 3 - 110px);
}

.Our-services .services-list .services .services-image{
    max-width: 83%;
    aspect-ratio: 1;
    margin-bottom: 15px;
    object-fit: contain;
}
.Our-services .services-list .services .name{
    margin: 12px 0;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
}

.Our-services .services-list .services .text{
    font-size: var(--font-size-m);
    color: var(--white-color);
}


/*Testimonials section styling*/
.testimonials-section{
    padding: 50px 0px 100px;
    background-color: var(--light-pink-color);
}

.testimonials-list .testimonial{
    display: flex;
    padding: 35px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.testimonials-list .testimonial .user-image{
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: var(--border-radius-circle);
}

.testimonials-list .testimonial .name{
    margin-bottom: 16px;
    font-size: var(--font-size-m);
}

.testimonials-list .testimonial .feedback{
    line-height: 25px;
}


/*Contact us section styling*/
.Contact-section{
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.Contact-section .section-content {
     display: flex;
     gap: 48px;
     align-items: flex-start;
     justify-content: space-between;
}

.Contact-section {
    background-color:var(--light-pink-color); /* Light Pink Background */
    padding: 50px 0;
    text-align: left;
}

.Contact-info-lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.Contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    background: var(--light-pink-color);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.Contact-info i {
    font-size: 22px;
    color: #007bff; /* Blue icons */
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.form-input {
    width: 80%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-button:hover {
    background: #0056b3;
}



.Contact-section .Contact-info-lists .Contact-info i {

}

/* Responsive media query code for max width 1024px */

   
    @media screen and (max-width: 1024px) {
        .Our-services .services-list{
            gap: 60px;
        }
        .Our-services .services-list .services{
            width: calc(100% / 3 - 60px);
        }
    }
/* Responsive media query code for max width 900px */
@media screen and (max-width: 900px) {
    :root {
        --font-size-m: 1rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
    }
  .navbar .nav-menu{
   display: block;
   position: fixed;
   left: -300px;
   top: 0;
   width: 300px;
   height: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   padding-top: 100px;
   background: var(--white-color);
  }  

  .navbar .nav-menu .nav-link{
    color: var(--dark-color);
    display: block;
    margin-top: 17px;
    font-size: var(--font-size-l);
  }
  .hero-section .section-content {
    gap: 50px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;
  }

  .hero-section .hero-details  :is(.subtitle,.description), .about-section .about-details{
    max-width: 100%;
  }

  .hero-section .hero-details .buttons{
    justify-content: center;
  }

  .hero-section .hero-image-wrapper{
    max-width: 270px;
    margin-right: 0;
  }

  .about-section .section-content{
    gap: 70px;
    flex-direction: column;
  }

  .about-section .about-image-wrapper .about-image{
    width: 100%;
    height: 100%;
    max-width: 250px;
    aspect-ratio: 1;
  }

  .Our-services .services-list {
    gap: 30px;
}

.Our-services .services-list .services{
    width: calc(100% / 2  -300px);
}

.Our-services .services-list .services .services-image{
    max-width: 200px;
}
}


@media screen and (max-width : 640px){
    .Our-services .services-list .services{
        width: 100%;
    }
}

/*Whatsapp float button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background: var(--dark-color);
}

.map-section{
    background: var(--medium-gray-color);
}

.footer {
    background-color: #333; 
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    gap: 15px;
}

.footer-links li {
    display: inline;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

/* Subsidy Checker Container */
.subsidy-checker {
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: auto;
}

/* Heading */
.subsidy-checker h2 {
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
}

/* Form Styling */
.subsidy-checker form {
    display: flex;
    flex-direction: column;
}

/* Labels */
.subsidy-checker label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

/* Input Fields */
.subsidy-checker input,
.subsidy-checker select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* Input Hover and Focus */
.subsidy-checker input:focus,
.subsidy-checker select:focus {
    border-color: #004080;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 64, 128, 0.5);
}

/* Submit Button */
.subsidy-checker button {
    background-color: #004080;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

/* Button Hover Effect */
.subsidy-checker button:hover {
    background-color: #0066cc;
}

/* Responsive Design */
@media (max-width: 600px) {
    .subsidy-checker {
        width: 90%;
        padding: 15px;
    }
}

/* About Section Styling */
.about-section {
    padding: 100px 0;
    background: var(--light-pink-color);
}

.about-section .section-title {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 50px;
    color: var(--Primary-color);
}

.about-section .section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

/* About content container */
.about-section .text {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* About Image */
.about-section .about-image-wrapper .about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.about-section .about-image-wrapper {
    max-width: 50%;
}

/* About details */
.about-section .about-details {
    max-width: 50%;
}

.about-section .about-details .text {
    font-size: var(--font-size-m);
    color: var(--dark-color);
    line-height: 1.5;
    text-align: left;
    margin: 20px 0;
}

.about-section .about-details .highlight {
    font-weight: var(--font-weight-semibold);
    color: var(--secondary-color);
}

/* Social Media Links */
.about-section .social-link-lists {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 50px;
}

.about-section .social-link-lists .social-link {
    color: var(--Primary-color);
    font-size: var(--font-size-l);
    transition: 0.3s ease;
}

.about-section .social-link-lists .social-link:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Adjustments for mobile screens */
@media screen and (max-width: 900px) {
    .about-section .section-title {
        font-size: var(--font-size-xl);
    }

    .about-section .section-content {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }

    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: auto;
    }

    .about-section .about-details {
        max-width: 90%;
    }
}



/* About Button (Optional) */
.about-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: var(--border-radius-m);
    font-size: var(--font-size-m);
    text-transform: uppercase;
    margin-top: 30px;
    transition: 0.3s ease;
}

.about-button:hover {
    background: var(--Primary-color);
    color: var(--white-color);
}



html {
    scroll-behavior: smooth; /* Enables smooth scrolling */
}

body {
    padding-top: 50px; /* Adjust the padding to account for the fixed navbar height */
}


.why-choose-us {
    padding: 100px 0;
    background: var(--light-pink-color);
}

.why-choose-us .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse; /* Moves image to the right */
}

.why-choose-us .image-wrapper {
    width: 250px; /* Set a fixed width */
    height: 250px; /* Set a fixed height */
    overflow: hidden; /* Ensures no overflow outside the circle */
    border-radius: 50%; /* Makes the wrapper circular */
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-us .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-us .text-content {
    max-width: 50%;
}

.why-choose-us .text-content .section-title {
    text-align: left;
}

.why-choose-us .text-content p {
    font-size: var(--font-size-m);
    line-height: 1.6;
    color: var(--dark-color);
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .why-choose-us .section-content {
        flex-direction: column;
        text-align: center;
    }

    .why-choose-us .text-content, 
    .why-choose-us .image-wrapper {
        max-width: 100%;
    }
}



.custom-divider {
    width: 80%;
    height: 4px;
    background: linear-gradient(to right, #0077b5, #00c6ff);
    margin: 40px auto;
    border-radius: 2px;
}

.section-content {
    margin-bottom: 0px; /* Reduce unnecessary spacing */
    padding-bottom: 10px;
}

.section-divider,
.custom-divider {
    margin: 20px auto; /* Adjust to reduce gap */
}


/* Line separator */
.section-divider {
    border: none;
    height: 2px;
    background: #0077b5;
    margin: 40px 0;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}
.timeline-event {
    background: var(--light-pink-color);
    padding: 15px;
    border-left: 5px solid #0077b5;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.team-member {
    display: flex;
    flex-direction: column; /* Stack image and text */
    align-items: center; /* Center align everything */
    text-align: center; /* Ensures text is centered */
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 10px; /* Adds space between image and text */
}


.team-member h3 {
    font-size: 24px; /* Make the heading larger */
    font-weight: bold; /* Optional: Make it bold */
    margin: 5px 0; /* Adjust spacing */
}

/* Call to Action */
.cta-button {
    background: #0077b5;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}


.fonunder-message {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    background-color:var(--light-pink-color);
    border-left: 5px solid #0077b5;
}

.text {
    font-family: 'Georgia', serif;  /* You can change the font */
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    max-width: 800px;
    margin: auto;
}


/* Contact Form Styles */
.contact-form-section {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    resize: none;
}

.submit-btn {
    display: inline-block;
    background-color: #f4b400;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #d39e00;
}

.bigger-image {
    width: 150%; /* Increase size */
    height: auto; /* Maintain aspect ratio */
}

.mobile-menu {
    z-index: 2000; /* Higher value than the header */
}
