body {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

/* Additional Styling for Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
}

/* Paragraphs and General Text */
p {
    font-weight: 400;
    color:  #2c2c2c;
    line-height: 1.6;
    text-decoration: none;

}





/* Top Bar Styles */
.topbar {
    background: linear-gradient(to right, navy, #28ac11); /* Gradient */
    color: white;
    padding: 8px 0;
    font-size: 13px;
    top: 0;
    height: 40px;
    display: inline-block;
}

.topbar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Left (Contacts) */
.topbar-left {
    display: flex;
    align-items: center;
}

.topbar-left i {
    margin-right: 5px;
}

/* Right (Social Icons) */
.topbar-right a {
    color: white;
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}

.topbar-right a:hover {
    transform: scale(1.2);
    color: #ddd;
}

/* Responsive */
@media (max-width: 640px) {
    .topbar .container {
        flex-direction: row;
        align-items: center;
        text-align: center;
        height: 20px;
    }

    .topbar-left {
        margin: 10px;
        padding: 0;
        font-size: 9px;
    }
    .topbar-right {
        margin-right: 30px;
        font-size: 9px;
    }

    @media (max-width: 1007px) {
        .topbar .container {
            flex-direction: row;
            align-items: center;
            text-align: center;
            height: 20px;
        }
    
        .topbar-left {
            margin: 10px;
            padding: 0;
            font-size: 9px;
        }
        .topbar-right {
            margin-right: 40px;
            font-size: 9px;
        }
    }
}






/* Navbar Styles */
.navbar {
    background: rgb(255, 255, 255); /* Slightly transparent navy blue */
    transition: background 0.3s ease-in-out;
    padding:6px 0;
    margin-top: 40px;
    position: relative;
    display: block;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    color: rgb(28, 28, 116);
    align-items: center;
}

.logo {
    height: 90px;
    margin-right: 10px;
    padding: 0;
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

.nav-link {
    color: rgb(37, 88, 22);
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffb514 !important; /* Luminous green hover */
}

/* Dropdown Menu */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    background: rgb(255, 255, 255);
    border: none;
}

.dropdown-item {
    color: #1c7432 !important;
}

.dropdown-item:hover {
    background: #ff9f10 !important;
    color: navy !important;
}

/* Get a Quote Button */
.get-quote {
    background: #1c7432;
    color: #ffffff;
    font-weight: bold;
    margin-left: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.get-quote:hover {
    background: white;
    color: #1c7432;
}

/* Navbar Opacity on Scroll */
.navbar.scrolled {
    background: #ffffffcc;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-collapse {
        text-align: center;
    }

        .get-quote {
        margin: 10px auto;
    }
}







/* Hero Section */
.hero-video-carousel {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-video-carousel .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.796), #28ac1125); 
    z-index: -1;
}

.hero-slide {
    position: relative;
    z-index: 3;
    width: 100%;height: auto;
    max-width: 1200px;
    margin: 0 120px;
    padding: 0 10px;
}

/* Text */
.hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    line-height: 1.2;
    color: #026600;
}
.hero-content p {
    font-size: 1.25rem;
    margin: 1rem 0 2rem;
    color: #ffffff;
    background-color: rgba(255, 198, 64, 0.832);
    padding: 8px 25px;
    border-radius: 5px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Buttons */
.hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.hero-buttons .btn:hover {
    transform: translateY(-3px);
}

/* Image Holder */
.hero-image {
    max-width: 380px;
    flex-shrink: 0;
    object-fit: cover;
    margin-left: 10%;
}
.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Zoom Animation */
.zoom-img {
    animation: zoomIn 12s ease-in-out infinite alternate;
}
@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-video-carousel {
        height: 85vh;
        text-align: center;
        justify-content: center;
    }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; } /* hide image on tablet */
}

@media (max-width: 767px) {
    .hero-video-carousel { height: 75vh; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 260px; }
}

/* Ensure carousel icons show correctly */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1); /* makes arrows white for dark backgrounds */
    opacity: 0.9;
    color: thistle;
    z-index: inherit;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M11 1L3 8l8 7'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M5 1l8 7-8 7'/%3E%3C/svg%3E");
}











/* Title Section */
.title-section {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay */
.title-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(3, 38, 0, 0.55); /* adjust darkness */
    z-index: 1;
}

/* Text content */
.title-overlay {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.title-overlay h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.title-overlay p {
    font-size: 1.2rem;
    color: #e6e6e6;
    margin: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .title-overlay h1 {
        font-size: 2rem;
    }
    .title-overlay p {
        font-size: 1rem;
    }
}










/* Why Us Section */
.why-us {
    padding: 60px 0;
    background: #f8f9fa; /* Light background for contrast */
}

.why-us h2 {
    color: #1c7432;
    font-size: 28px;
    font-weight: bold;
}

.why-us p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-info {
    font-size: 18px;
    color: #39ff14; /* Luminous green */
    font-weight: bold;
}

/* Image Styling */
.why-us-img {
    width: 80%;
    max-width: 400px;
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 50px;
}

.why-us-img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .why-us .row {
        flex-direction: column-reverse; /* Stack image below text on small screens */
    }

    .why-us-img {
        width: 100%;
        max-width: 350px;
        margin-top: 20px;
    }
}



/* Services Section Styling */
.service-card {
    border: none;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}
.service-card .service-icon i {
    transition: transform 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-icon i {
    transform: scale(1.2);
    color: #007bff;
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
}





/* Professional Services Section */
.services-section {
    width: 100%;
    padding: 20px;
    background-color: #f9f9f9;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0;
  }
  
  .service-box {
    width: 100%;
    height: 400px;
  }
  
  .service-text, .service-image {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }
  
  .service-text {
    background-color: rgb(51, 51, 51);
    padding: 20px;
    text-align: center;
    transition: background-color 0.3s;
    justify-items: center;
    font-family: 'Fjalla One', sans-serif;
  }
  
  .service-text h3 {
    font-size: 35px;
    color: #ffffff;
    margin: 0;
    text-decoration: none;
  }
  
  .service-text:hover {
    background-color: #252525;
  }
  
  .service-text:hover h3 {
    color: white;
  }
  
  .service-image img {
    width: 100%;
    height: 400px;
    transition: opacity 0.3s;
  }
  
  .service-image:hover img {
    opacity: 0.8;
  }
  
  @media (max-width: 1007px) {
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
      width: 25%;
    }
  }
  
  @media (max-width: 478px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        width: 25%;
    }
  }
  



  /* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: navy;
    padding: 20px;
    width: 100%;
    color: white;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav ul li {
    margin-right: 20px;
}

.nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav ul li a:hover, .nav ul li a.active {
    color: #FFD700;
}


/* HOME SECTION */
.home-section {
    background-color: #e2e2e2;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 36px;
    color: #222;
    margin-bottom: 40px;
}

/* GRID LAYOUT */
.home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Scroll Animation */
.home-section.visible .home-grid {
    opacity: 1;
    transform: translateY(0);
}

/* HOME BOX */
.home-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.home-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ICONS */
.home-box i {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 15px;
}

/* HEADINGS */
.home-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

/* PARAGRAPHS */
.home-box p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #555;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .home-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .home-grid {
        grid-template-columns: 1fr;
    }
}




/* Services Grid */
.services-section {
    padding: 50px 5%;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

.service-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    position: relative;
    width: 100%;
    height: 400px;
}

.service-box:hover {
    transform: scale(1.05);
}

.service-text p {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    font-weight: lighter;
    text-align: center;
    padding: 50px;
}

.service-text h3 {
    font-family: 'Fjalla One', sans-serif;
    padding: 15px;
    margin: 0;
}


.image-holder {
    height: 100%;
    overflow: hidden;
   background-size: cover;
}

.image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.service-box:hover .image-holder img {
    transform: scale(1.1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-text h3 {
        font-family: 'Fjalla One', sans-serif;
        font-size: 20px;
        padding: 10px;
        margin: 0;
    }

    .service-text p {
        display: none;
    }

    .service-box {
        height: 250px;
    }
    
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* GET AN ESTIMATE SECTION */
.estimate-section {
    background-color: #eeeeee; /* Light Grey Background */
    padding: 80px 0;
}

.estimate-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Scroll Animation */
.estimate-section.visible .estimate-content {
    opacity: 1;
    transform: translateY(0);
}

/* FLOATING BOX EFFECT */
.floating-box {
    background: white;
    padding: 30px;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.floating-box:hover {
    transform: translateY(-9px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* LEFT COLUMN: TEXT */
.estimate-text {
    flex: 1;
}

.estimate-text h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 360x;
    margin-bottom: 10px;
    color: #222;
}

.estimate-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    margin-bottom: 15px;
    color: #555;
}

.estimate-text a {
    color: #007BFF;
    text-decoration: none;
}

.estimate-text a:hover {
    text-decoration: underline;
}

/* BUTTON */
.est-btn {
    font-size: 15px;
    background: #ffffff;
    color: rgb(255, 255, 255);
    padding: 12px 24px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}

.est-btn:hover {
    background: #003268;
    color: white;
}

/* RIGHT COLUMN: IMAGE */
.estimate-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.estimate-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.estimate-image img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .estimate-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .estimate-image img {
        max-width: 80%;
    }
}



/* Home CTA Section */
.home-cta {
    background-color: #007BFF; /* Blue Background */
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: white;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-content h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 29px;
    margin: 0;
}

/* Round Button */
.cta-button {
    width: 40px;
    height: 40px;
    background-color: rgb(255, 178, 36);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #2dd417;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .home-cta {
        height: auto;
        padding: 15px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cta-content h2 {
        font-size: 18px;
    }

    .cta-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}





/*ABOUT PAGE*/
.about-header {
    background: #0a2351;
    color: white;
    text-align: center;
    padding: 30px;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    align-items: center;
}

.content {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;

}

.text, .image {
    flex: 1;
    padding: 20px;
}

.image img {
    width: 100%;
    border-radius: 10px;
}

.caption {
    text-align: center;
    font-style: italic;
}

.reverse .content {
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        grid-template-columns: repeat(1fr);
        flex: 1;
        flex-wrap: wrap;
        width: 400px;
    }

    .about-section {
        width: 110%;
       
    }
}




/* Contact Section Styling */
#contact {
    color: white;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.contacts-overlay {
    background: rgba(255, 255, 255, 0.801);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 50px;
}

.contact-title {
    margin: 50px;
    font-size: 32px;
    font-weight: bold;
    font-family: 'Fjalla One', sans-serif;
}

/* Two Columns Layout */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 1400px;
    margin: 50px 0px;
}

/* Left Side: Contact Form */
.contact-form-container {
    flex: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-form-container h3 {
    color: #333;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: bold;
    color: #444;
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    font-size: 13px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
    outline: none;
}

/* Form Row for Email & Phone */
.form-row {
    display: flex;
    gap: 10px;
}

.half-width {
    flex: 1;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 12px;
    border: none;
    background: #007bff;
    color: white;
    font-size: 13px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.btn-submit:hover {
    background: #67d111;
}

/* Right Side: Contact Info */
.contact-info-container {
    flex: 1;
    background: #005815b9;
    padding: 25px;
    border-radius: 10px;
    color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70%;
    width: 50px;
}

.contact-info-container h3 {
    font-size: 20px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.contact-info-container p {
    font-size: 15px;
    color: rgb(255, 255, 255);
    margin: 8px 0;
}

.contact-info-container a {
    color: white;
    text-decoration: none;
    font-weight: lighter;
}

.contact-info-container a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    font-size: 20px;
    color: white;
    margin-right: 15px;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
}


/* Map section */
.map-area {
    width: auto;
    justify-items: center;
    align-items: center;
}


.maptext-content h2 {
    color: #0a2351;
    font-family: 'Fjalla One', serif;
    text-align: center;
}

.maptext-content p {
    color: #0a2351;
    font-family: 'Fjalla One', serif;
    font-size: 12px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        height: 100%;
    }

    .contact-form-container, .contact-info-container {
        width: 100%;
    }

    #contact {
        
        margin-bottom: 180px;
    }
}






/*SERVICES Page*/









/*Insights PAGE*/
/* Insights Section */
.insights-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .blog-box {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
  }
  
  .blog-image {
    position: relative;
    overflow: hidden;
  }
  
  .blog-image img {
    width: 90%;
    height: auto;
    opacity: 0.5;
    transition: opacity 0.3s;
  }
  
  .blog-overlay {
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: rgb(0, 0, 0);
    font-family: 'Fjalla One', sans-serif;
    font-size: 24px;
  }
  
  .blog-overlay h3 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 23px;
  }
  
  .blog-overlay p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-top: 10px;
  }
  
  .blog-box:hover .blog-image img {
    opacity: 0.4;
  }
  
  .blog-box:hover .blog-overlay {
    opacity: 1;
  }
  
  .blog-box a {
    display: block;
    text-decoration: none;
  }
  
  /* Call to Action Section */
  .cta-section {
    text-align: center;
    margin-top: 60px;
  }
  
  .cta-section h2 {
    font-family: 'Fjalla One', sans-serif;
    font-size: 28px;
    color: #333;
  }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .blog-overlay h3 {
        font-family: 'Fjalla One', sans-serif;
        font-size: 15px;
        margin-top: 70px;
    }

    .blog-overlay p {
        font-family: 'Poppins', sans-serif;
        font-size: 11px;
        line-height: 12px;
        display: none;
    }
  }
  
  @media (max-width: 480px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
      margin-top: 500px;
    }

    .blog-overlay h3 {
        font-family: 'Fjalla One', sans-serif;
        font-size: 11px;
    }
  }

  

/* We'd Love to Hear From You Section */
.contact-intro {
    background-color: #1c8531;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content {
    display: flex;
    align-items: center;
    max-width: 1000px;
    width: 100%;
}

.text-content {
    flex: 1;
    color: white;
    text-align: left;
    padding-right: 20px;
}

.text-content h2 {
    font-size: 32px;
    font-family: 'Fjalla One', sans-serif;
}

.text-content p {
    font-size: 18px;
}

.image-content {
    flex: 1;
    text-align: right;
}

.image-content img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.image-content img:hover {
    transform: scale(1.1);
}

/* Contact Info Boxes */
.contact-infoc {
    display: flex;
    justify-content: left;
    gap: 20px;
    margin: 50px auto;
    max-width: 1000px;
}

.contact-boxc {
    background: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    flex: 1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact-boxc i {
    font-size: 40px;
    color: #1882e6;
    margin-bottom: 10px;
}

.contact-boxc h3 {
    font-size: 22px;
    font-family: 'Fjalla One', sans-serif;
    color: #1c7432;
}

.contact-boxc p {
    font-size: 18px;
    font-family: 'Fjalla One', sans-serif;
}

.contact-boxc:hover {
    background: #e2a432;
    color: white;
    transform: scale(1.05);
    z-index: 99;
}

.contact-boxc:hover i {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .text-content h2 {
        font-size: 28px;
        font-family: 'Fjalla One', sans-serif;
    }
    
    .text-content p {
        font-size: 13px;
    }

    .image-content img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        transition: transform 0.3s;
    }
    
    .contact-infoc {
        flex-direction: column;

        justify-content: left;
        gap: 20px;
        margin: 50px auto;
        max-width: 1000px;
    }

    .contact-boxc h3 {
        font-size: 20px;
        font-family: 'Fjalla One', sans-serif;
        color: #1c7432;
    }
    
    .contact-boxc p {
        font-size: 17px;
        font-family: 'Fjalla One', sans-serif;
    }
}






/*SERVICES 2*/
/* Search Bar */
.search-bar {
    text-align: left;
    padding: 10px;
    left: 0;
    margin-bottom: 40px;
}

.search-bar input {
    padding: 8px;
    width: 130px;
}

.search-bar button {
    padding: 8px;
    background: #007BFF;
    color: white;
    border: none;
}

/* Page Header with Background Image */
.page-header {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.header-overlay {
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 8px;
}

.service-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 36px;
    margin: 0;
}

.page-header p {
    font-size: 18px;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Main Content */
.content {
    max-width: 60%;
    margin: 40px auto;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
}

.ser-service-image img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.ser-service-image img:hover {
    transform: scale(1.05);
}

/* Service Text */
.ser-service-text {
    font-size: 15px;
    line-height: 1.6;
}

.ser-service-text ul {
    padding-left: 20px;
}

.ser-service-text li {
    margin-bottom: 10px;
}

/* Book Now Button */
.ser-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #007BFF;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
}

.ser-btn:hover {
    background: #0056b3;
}




/* Testimonial Section */
.testimonials {
    margin: 60px;
    background-color: #e0e0e0;
    padding: 40px;
}

.tes-carousel {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.testimonial {
    display: none;
    font-size: 18px;
    padding: 20px;
    background: #e2e2e2;
    border-radius: 8px;
    text-align: center;
}


.testimonial.active {
    display: block;
}

/* Sidebar Navigation */
.sidebar {
    position: absolute;
    right: 0;
    top: 360px;
    width: 230px;
    height: 100%;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.sidebar h3 {
    font-size: 14px;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 5px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 7px 0;
}

.sidebar ul li a {
    color: #007BFF;
    text-decoration: none;
    font-size: 12px;
    display: block;
    padding: 8px;
    transition: 0.3s;
}

.sidebar ul li a:hover {
    background: #0056b3;
    color: white;
}








/*BLOG PAGES*/
/* Blog Header */
.blog-header {
    background: url('img/header-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-in-out;
}

/* Blog Container */
.blog-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 40px auto;
    gap: 20px;
}

/* Blog Content */
.blog-content {
    width: 68%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.blog-content:hover {
    transform: translateY(-5px);
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Sidebar */
.blog-sidebar {
    width: 30%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.blog-sidebar:hover {
    transform: scale(1.02);
}

/* Search Box */
.search-box {
    display: flex;
    margin-bottom: 20px;
}

.search-box input {
    width: 80%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.search-box button {
    width: 20%;
    background: #28a745;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.search-box button:hover {
    background: #218838;
}

/* Sidebar Links */
.blog-sidebar h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #555;
}

.blog-sidebar ul {
    list-style: none;
}

.blog-sidebar ul li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease-in-out;
}

.blog-sidebar ul li a {
    text-decoration: none;
    color: #333;
}

.blog-sidebar ul li:hover {
    background: #f4f4f4;
}

/* Image Carousel */
.carousel {
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 10px;
}

.carousel-img {
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel:hover .carousel-img {
    transform: translateX(-100%);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .blog-container {
        flex-direction: column;
        width: 90%;
    }

    .blog-content, .blog-sidebar {
        width: 100%;
    }

    .blog-header {
        font-size: 24px;
        padding: 60px 10px;
    }
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}








/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-family: 'Fjalla One', sans-serif;
    font-size: 36px;
    color: #222;
    margin-bottom: 20px;
}

.faq-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.faq-intro a {
    color: #007BFF;
    font-weight: bold;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* FAQ Items */
.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: #222;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease-in-out;
}

.faq-question:hover {
    background: #007BFF;
    color: white;
}

.faq-answer {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #555;
    padding: 15px 20px;
    display: none;
}

/* FAQ Expand Effect */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    background: #007BFF;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-container {
        max-width: 100%;
        padding: 0 20px;
    }
}






/* Footer Styling */
.footer {
    background-color: #0a2351; /* Dark Blue */
    color: white;
    padding: 40px 20px;
    font-size: 14px;
    position: relative;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.footer-column {
    flex: 1;
    min-width: 280px;
    margin: 10px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.social-links a {
    color: white;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #00d9a5;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 16px;
    color: rgb(65, 190, 49);
}

.footer-column p {
    font-size: 13px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #00d9a5;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    background-color: #06132e;
    color: orange;
    text-decoration: none;
    height: 30px; width: 100%;
    justify-items: center;
    align-items: center;
}

.footer-bottom p {
    text-align: center;
    font-size: 11px;
    margin-top: 20px;
    color: orange;
    text-decoration: none;

}

.contactt {

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: lighter;
    margin-top: 5px;
  }

.contactt a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 12px;
    font-weight: lighter;
    
    margin-left: 5px;
  }

.footer-r a {
    color: #fcfcfc;
    text-decoration: none;
}

/* Back to Top Floating Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 60px;
    background-color: #0070d9;
    color: white;
    border-radius: 10%;
    text-align: center;
    transition: 0.3s;
    height: 20px;
    align-content: center;
    justify-content: center;
}

.back-to-top i {
    font-size: 15px;
    padding: 10px;
    text-align: center;
    color: white;
    text-decoration: none;
    margin: auto;

}

.back-to-top:hover {
    background-color: #fac227;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    color: #1c8531;
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 50px;
    right: 53px;
    background-color: #25d366;
    border-radius: 50%;
    align-content: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 30px;
    z-index: 100;
    animation: bounce 2s infinite;
    transition: background-color 0.3s;
    
}

.whatsapp-float:hover {
    background-color: #1ebea5;
}

/* Bounce Animation for WhatsApp */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsive Styles */
@media (max-width: 1007px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }


    .whatsapp-float {
        position: fixed;
        bottom: 60px;
        right: 30px;
        padding: 8px;
        font-size: 23px;
    }
   
    .footer-bottom {
        text-align: center;
        border: 0;
        margin-bottom: 2px;
        text-align: center;
    }
    .back-to-top {
        right: 10px;
    }
}
