/* Base Styles (Mobile-First) */
.sunfort {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.sunfort-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sunfort-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Styles */
.sunfort-logo img {
    max-height: 80px;
    width: auto;
}

/* Navigation Links */
.sunfort-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 20px 0;
    transform: translateY(-100%);
    transition: transform 0.6s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 998;
    margin: 0;
}

.sunfort-nav-links.active {
    transform: translateY(0);
}

.sunfort-nav-links li {
    margin: 15px 0;
}

.sunfort-nav-links li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sunfort-nav-links li a:hover {
    color: #f58634;
}

/* Social Media Icons */
.sunfort-social-icons {
    display: flex;
    gap: 15px;
}

.sunfort-social-icons a {
    color: #333;
    font-size: 20px;
    transition: color 0.3s ease;
}

.sunfort-social-icons a:hover {
    color: #f58634;
}

/* Hide social icons in mobile menu by default */
.sunfort-nav-links .sunfort-social-icons.sunfort-mobile-only {
    display: none;
}

/* Show social icons at the bottom of the mobile menu */
.sunfort-nav-links.active .sunfort-social-icons.sunfort-mobile-only {
    display: flex;
    margin-top: 20px;
}

/* Hide desktop social icons on mobile */
.sunfort-desktop-only {
    display: none;
}

/* Hamburger Icon */
.sunfort-hamburger {
    display: block;
    cursor: pointer;
    z-index: 999;
}

.sunfort-hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sunfort-hamburger-icon .sunfort-line {
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.4s ease-in-out;
}

/* Cross State */
.sunfort-hamburger-icon.active .sunfort-line1 {
    transform: translateY(8px) rotate(45deg);
}

.sunfort-hamburger-icon.active .sunfort-line2 {
    opacity: 0;
}

.sunfort-hamburger-icon.active .sunfort-line3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* Backdrop for Mobile Menu */
.sunfort-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.sunfort-backdrop.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.sunfort-no-padding {
    padding: 0;
}

.full-width {
    width: 100%;
}



.product {
    display: inline-block;
    text-align: center;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    width: 200px;
}

.product img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

.button-holder {
    text-align: center;
}

.testimonial-card {
    display: inline-block;
    padding: 40px;
    text-align: left;
    box-shadow: 5px 5px 20px #00000054;
    border-radius: 10px;
    margin: 20px;
    min-height: 280px;
    background: linear-gradient(180deg, #F3FAFE 3.03%, #e7ffef 38.62%, #c1eacd 79.39%);

}

.flex-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.normal-card {
    display: inline-block;
    margin: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0px 0px 20px #00000054;
    border-radius: 10px;
    width: 200px;
    min-height: 310px;
    background: #FFF;
}




.colored-bg-section {
    background: #cedbd2;
}

.number-box {
    display: inline-block;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    max-width: 200px;
    margin: 0 auto;
}

.number-box h6 {
    font-size: 36px;
    font-weight: bold;
    color: #f58634;
    margin: 0;
}

.number-box .title {
    font-size: 16px;
    color: #333;
    margin: 10px 0 0;
}

.sunfort-section {
    padding: 50px 30px;
    text-align: center;
}

/* General Styles for Filters Container */
.filters {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding: 20px;
    background: #a5c3ae;
}

/* Dropdown Styles */
.filters select {
    padding: 10px 15px;
    /* Padding inside the dropdown */
    font-size: 16px;
    /* Font size */
    color: #333;
    /* Text color */
    background-color: #fff;
    /* Background color */
    border: 1px solid #ccc;
    /* Border color */
    border-radius: 5px;
    /* Rounded corners */
    appearance: none;
    /* Remove default arrow in some browsers */
    -webkit-appearance: none;
    /* Remove default arrow in Safari */
    -moz-appearance: none;
    /* Remove default arrow in Firefox */
    cursor: pointer;
    /* Pointer cursor on hover */
    flex: 1;
    /* Allow dropdowns to grow and fill space */
    min-width: 150px;
    /* Minimum width for dropdowns */
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
}

/* Dropdown Arrow */
.filters select {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333"><path d="M7 10l5 5 5-5z"/></svg>');
    /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 10px center;
    /* Position the arrow */
    background-size: 12px;
    /* Size of the arrow */
}

/* Hover Effect */
.filters select:hover {
    border-color: #666;
    /* Darker border on hover */
}

/* Focus Effect */
.filters select:focus {
    outline: none;
    /* Remove default outline */
    border-color: #f58634;
    box-shadow: 0 0 5px rgb(245 134 52);
}

/* Responsive Design */
@media (max-width: 768px) {
    .filters {
        flex-direction: column;
        /* Stack dropdowns vertically on small screens */
    }

    .filters select {
        width: 100%;
        /* Full width on small screens */
    }
}

.parallax {
    position: relative;
    background-image: url('../images/parallax-bg.jpg');
    /* Replace with your image path */
    background-attachment: fixed;
    /* Creates the parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Transparent color overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(206 219 210 / 40%);
}

.sunfort-section .card-icon {
    font-size: 20px;
    padding: 10px;
    border: 3px solid;
    border-radius: 5px;
    color: #f58634;
}

iframe{
    border: 5px solid #f58634;
    border-radius: 5px;
}

/* ======================
   Contact Form Styles
   ====================== */

   .sunfort-contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sunfort-form-heading {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.sunfort-form-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #f58634;
}

.sunfort-form-group {
    margin-bottom: 25px;
}

.sunfort-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.sunfort-form-control {
    width: 80%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.sunfort-form-control:focus {
    outline: none;
    border-color: #f58634;
    box-shadow: 0 0 0 3px rgba(245, 134, 52, 0.2);
    background: #fff;
}

.sunfort-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.sunfort-form-btn {
    background: #f58634;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    width: auto;
    margin: 0 auto;
}

.sunfort-form-btn:hover {
    background: #e07a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 134, 52, 0.3);
}

.sunfort-form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

.sunfort-form-success {
    background: #e7ffef;
    color: #2e7d32;
    border: 1px solid #c1eacd;
}

.sunfort-form-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sunfort-contact-form {
        padding: 20px;
    }
    
    .sunfort-form-heading {
        font-size: 1.5rem;
    }
    
    .sunfort-form-control {
        padding: 10px 12px;
    }
}


/* Required field indicator */
.required {
    color: #f58634;
}

/* Form placeholder styling */
.sunfort-form-control::placeholder {
    color: #999;
    opacity: 1;
}

/* Select dropdown styling */
.sunfort-form-control[type="select"] {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f58634'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

/* Input pattern validation */
.sunfort-form-control:invalid {
    border-color: #ff6b6b;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .sunfort-contact-form {
        padding: 20px 15px;
    }
    
    .sunfort-form-heading {
        font-size: 1.5rem;
    }
}


/* Desktop Styles (Min-width: 768px) -----------------------------*/
@media (min-width: 768px) {
    .sunfort-nav-links {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        justify-content: flex-end;
        gap: 30px;
        padding: 0;
        transform: none;
        transition: none;
    }

    .sunfort-nav-links li {
        margin: 0;
    }

    .sunfort-nav-links .sunfort-social-icons.sunfort-mobile-only {
        display: none;
    }

    .sunfort-desktop-only {
        display: flex;
    }

    .sunfort-hamburger {
        display: none;
    }

    .sunfort-backdrop {
        display: none !important;
    }
}



.sunfort-section {
    padding: 50px 0px;
    text-align: center;
}

.sunfort-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.sunfort-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.sunfort-img {
    max-width: 100%;
    height: auto;

}

.sunfort-btn {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background-color: white;
    color: #f58634;
    font-weight: bold;
    border: 2px solid #f58634;
    padding: 12px;
    margin: 15px auto;
    display: block;
}

.sunfort-btn:hover {
    background: #f58634;
    color: white;
    cursor: pointer;

}

/* Footer Styles */
.sunfort-footer {
    background: #0F3F76;
    color: #fff;
    padding: 40px 0 0;
    font-family: 'Lato', sans-serif;
}

/* Footer Info Section */
.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 20px;
}

/* Footer Logo */
.footer-info img {
    height: 100%;
    width: auto;
}

/* Footer Headings */
.sunfort-footer-heading {
    font-size: 16px;
    margin-bottom: 10px;
    color: #f58634;
}

/* Footer Titles */
.sunfort-footer-title {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Footer Text */
.sunfort-footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: white !important;
}

/* Footer List */
.sunfort-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sunfort-footer-list li {
    margin: 10px 0;
}

/* Footer Links */
.sunfort-footer-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.sunfort-footer-link:hover {
    color: #f58634;
}

/* Footer Copyright Section */
.footer-copyright {
    width: 100%;
    padding: 5px 0;
    background: #0A2A4D;
    margin-top: 20px;
    text-align: center;
}

.centered-hero-content {
    max-width: 800px;
    margin: auto;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info div {
        margin-bottom: 20px;
    }
}