/* General Body and Typography */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #212529; /* Standard dark text color */
}

p {
    color: #555; /* Standard medium-dark text color for paragraphs */
}

a {
    color: #007bff; /* Standard link color */
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.text-primary {
    color: #007bff !important;
}

.bg-primary {
    background-color: #007bff !important;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-light {
    color: #007bff;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:hover {
    color: #0056b3;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

/* Header Styles */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.logo-link{
    color: black;
}
.logo-link-foter{
    color: white;
}
.main-header .logo {
    height: 50px; /* Adjust as needed */
}

.main-nav .nav-link {
    color: #333;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.main-nav .nav-link:hover {
    color: #007bff;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.hero-badge {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for the badge */
    backdrop-filter: blur(5px); /* Optional: blur effect */
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    padding: 3rem !important;
    border-radius: 1rem !important;
}

.hero-badge .hero-logo {
    max-height: 80px;
}

.hero-badge h1 {
    font-size: 3.5rem;
    color: #fff;
}

.hero-badge p {
    font-size: 1.5rem;
    color: #e0e0e0;
}

.hero-cta-btn {
    background-color: #28a745; /* Green button */
    border-color: #28a745;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero-cta-btn:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* About Section */
.about-section h2 {
    font-size: 2.8rem;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Services Section (Accordion) */
.services-section .accordion-button {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

.services-section .accordion-button:not(.collapsed) {
    color: #007bff;
    background-color: #e9ecef;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.services-section .accordion-button:focus {
    box-shadow: none;
}

.services-section .accordion-body {
    font-size: 1.1rem;
    color: #555;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.services-section .accordion-body ul {
    list-style: none;
    padding-left: 0;
}

.services-section .accordion-body ul li {
    margin-bottom: 0.5rem;
}

.services-section .accordion-body ul li i {
    font-size: 1.1em;
}

/* Features Section */
.features-section .feature-card {
    border: 1px solid #e0e0e0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.features-section .feature-card:hover {
    border-color: #007bff;
    box-shadow: 0 0.5rem 1rem rgba(0, 123, 255, 0.15);
}

.features-section .feature-card i {
    color: #007bff;
}

.features-section .feature-card h3 {
    color: #212529;
}

.features-section .feature-card p {
    color: #555;
}

/* Team Section */
.team-member-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.team-member-card h4 {
    color: #212529;
}

.team-member-card p {
    color: #6c757d;
}

/* Portfolio Section */
.portfolio-item {
    cursor: pointer;
    position: relative;
    background-color: #fff;
}

.portfolio-item img {
    display: block;
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(100%); /* Start hidden below */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0); /* Slide up on hover */
}

.portfolio-item:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

.portfolio-overlay h4 {
    color: #fff;
}

.portfolio-overlay p {
    color: #e0e0e0;
}

/* Stats Section */
.stats-section .stats-item i {
    color: #fff;
}

.stats-section .stats-item h2 {
    color: #fff;
}

.stats-section .stats-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact-section .contact-form {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.08);
}

.contact-section .form-label {
    font-weight: 600;
    color: #333;
}

.contact-section .form-control, .contact-section .form-select {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
}

.contact-section .form-control:focus, .contact-section .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.contact-section .invalid-feedback {
    font-size: 0.875em;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
}

.contact-info i {
    color: #007bff;
}

/* CTA Section */
.cta-section {
    min-height: 40vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.7), rgba(40, 167, 69, 0.7)); /* Gradient overlay */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: #fff;
    font-size: 3rem;
}

.cta-content p {
    color: #e0e0e0;
    font-size: 1.3rem;
}

.cta-btn {
    background-color: #fff;
    color: #007bff;
    border-color: #fff;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
    background-color: #e2e6ea;
    color: #0056b3;
    border-color: #e2e6ea;
}

/* Testimonials Section */
.testimonials-section .testimonial-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.05);
}

.testimonials-section .testimonial-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid #007bff;
}

.testimonials-section .testimonial-card h5 {
    color: #212529;
}

.testimonials-section .testimonial-card p {
    font-style: italic;
    color: #555;
}

/* FAQ Section */
.faq-section .accordion-button {
    font-weight: 600;
    color: #212529;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ddd;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #007bff;
    background-color: #e9ecef;
}

.faq-section .accordion-body {
    color: #555;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

/* Footer Section */
.footer-section {
    background-color: #212529; /* Dark background */
    color: #f8f9fa;
}

.footer-section .footer-logo {
    height: 40px;
}

.footer-section .accordion-item {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section .accordion-button {
    background-color: transparent;
    color: #f8f9fa;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1rem 0;
    border: none;
}

.footer-section .accordion-button:not(.collapsed) {
    color: #007bff;
    background-color: transparent;
    box-shadow: none;
}

.footer-section .accordion-button::after {
    filter: invert(1);
}

.footer-section .accordion-body {
    color: #e0e0e0;
    background-color: transparent;
    padding-bottom: 1rem;
}
.footer-section .accordion-body p {
    color: white;
}
.footer-section .list-unstyled li a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}
@media (max-width:575px) {
    .email-post{
        font-size: 12px;
    }
}
.footer-section .list-unstyled li a:hover {
    color: #007bff;
    text-decoration: underline;
}

.footer-section address {
    font-style: normal;
}

.footer-section .social-icons a {
    color: #f8f9fa;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-section .social-icons a:hover {
    color: #007bff;
}

/* Cookie Consent Modal */
#cookieConsentModal .modal-content {
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2);
}

#cookieConsentModal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

#cookieConsentModal .modal-body {
    padding-top: 0;
}

#cookieConsentModal .cookie-categories .form-check-label {
    font-weight: 600;
    color: #333;
}

#cookieConsentModal .cookie-categories .form-check-label i {
    margin-right: 0.5rem;
    color: #007bff;
}

#cookieConsentModal .modal-footer {
    border-top: none;
    padding-top: 0;
}

#cookieConsentModal .btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

#cookieConsentModal .btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
}

#cookieConsentModal #saveSelectionBtn {
    display: none; /* Hidden by default, shown by JS */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
    }

    .main-nav .nav {
        flex-direction: column;
        text-align: center;
        margin-top: 1rem;
    }

    .main-nav .nav-item {
        margin-bottom: 0.5rem;
    }

    .hero-badge {
        padding: 2rem !important;
    }

    .hero-badge h1 {
        font-size: 2.5rem;
    }

    .hero-badge p {
        font-size: 1.2rem;
    }

    .about-section .row {
        flex-direction: column-reverse; /* Image below text on small screens */
    }

    .about-section h2,
    .services-section h2,
    .features-section h2,
    .team-section h2,
    .portfolio-section h2,
    .stats-section h2,
    .contact-section h2,
    .cta-section h2,
    .testimonials-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }

    .stats-section .stats-item h2 {
        font-size: 3rem;
    }

    .footer-section .accordion-item {
        margin-bottom: 0.5rem;
    }

    .footer-section .accordion-button {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        padding: 1.5rem !important;
    }

    .hero-badge h1 {
        font-size: 2rem;
    }

    .hero-badge p {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .contact-section .contact-form {
        padding: 1.5rem;
    }
}/* Styles for the content wrapper */
.rightsFieldUnit {
    padding-top: 2.5rem;    /* Top padding for the content area */
    padding-left: 1.5rem;   /* Left padding for the content area */
    padding-right: 1.5rem;  /* Right padding for the content area */
    padding-bottom: 2.5rem; /* Bottom padding for the content area */
    max-width: 1200px;      /* Optional: constrain content width for readability */
    margin-left: auto;      /* Center the content wrapper */
    margin-right: auto;     /* Center the content wrapper */
}

/* Heading styles within .rightsFieldUnit */
.rightsFieldUnit h1 {
    font-size: 2.2rem;      /* Moderate font size for H1 */
    margin-bottom: 1.2rem;  /* Space below H1 */
    line-height: 1.2;       /* Line height for H1 */
    font-weight: 700;       /* Bold font weight */
}

.rightsFieldUnit h2 {
    font-size: 1.8rem;      /* Moderate font size for H2 */
    margin-bottom: 1rem;    /* Space below H2 */
    line-height: 1.3;       /* Line height for H2 */
    font-weight: 600;       /* Semi-bold font weight */
}

.rightsFieldUnit h3 {
    font-size: 1.5rem;      /* Moderate font size for H3 */
    margin-bottom: 0.8rem;  /* Space below H3 */
    line-height: 1.4;       /* Line height for H3 */
    font-weight: 600;       /* Semi-bold font weight */
}

.rightsFieldUnit h4 {
    font-size: 1.3rem;      /* Moderate font size for H4 */
    margin-bottom: 0.7rem;  /* Space below H4 */
    line-height: 1.5;       /* Line height for H4 */
    font-weight: 500;       /* Medium font weight */
}

.rightsFieldUnit h5 {
    font-size: 1.1rem;      /* Moderate font size for H5 */
    margin-bottom: 0.6rem;  /* Space below H5 */
    line-height: 1.6;       /* Line height for H5 */
    font-weight: 500;       /* Medium font weight */
}

/* Paragraph styles within .rightsFieldUnit */
.rightsFieldUnit p {
    font-size: 1rem;        /* Standard font size for paragraphs */
    margin-bottom: 1rem;    /* Space below paragraphs */
    line-height: 1.7;       /* Improved readability line height */
}

/* Unordered list styles within .rightsFieldUnit */
.rightsFieldUnit ul {
    list-style: disc;       /* Default disc bullet points */
    margin-top: 1rem;       /* Space above the list */
    margin-bottom: 1rem;    /* Space below the list */
    padding-left: 1.5rem;   /* Indent for bullet points */
}

/* List item styles within .rightsFieldUnit */
.rightsFieldUnit ul li {
    font-size: 1rem;        /* Standard font size for list items */
    margin-bottom: 0.5rem;  /* Space between list items */
    line-height: 1.6;       /* Line height for list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .rightsFieldUnit {
        padding-top: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 2rem;
    }

    .rightsFieldUnit h1 {
        font-size: 2rem;
    }

    .rightsFieldUnit h2 {
        font-size: 1.6rem;
    }

    .rightsFieldUnit h3 {
        font-size: 1.3rem;
    }

    .rightsFieldUnit h4 {
        font-size: 1.1rem;
    }

    .rightsFieldUnit h5 {
        font-size: 1rem;
    }

    .rightsFieldUnit p,
    .rightsFieldUnit ul li {
        font-size: 0.95rem;
    }
}
