/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: hsl(210, 54%, 23%);
    --teal: hsl(174, 100%, 25%);
    --light-blue: hsl(195, 100%, 46%);
    --light-grey: hsl(210, 29%, 97%);
    --white: hsl(0, 0%, 100%);
    --gray-600: hsl(0, 0%, 40%);
    --gray-300: hsl(0, 0%, 75%);
    --gray-200: hsl(0, 0%, 83%);
    --gray-50: hsl(0, 0%, 97%);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--navy);
    background-color: var(--white);
}

html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-teal {
    color: var(--white);
}

/* Navigation */
.nav {
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    min-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo {
    display: flex;
    flex-direction: row;
    gap: 10px;
    /* min-width: 500px; */
    align-items: center;
    /* justify-content: center; */
    

}
@media (max-width: 1300px) {
    .nav-container {
        min-width: 1250px;
    }
    
}
@media (max-width: 1250px) {
    .nav-container {
        min-width: 1200px;
    }
    
}
@media (max-width: 1200px) {
    .nav-container {
        min-width: 1150px;
    }
    
}
@media (max-width: 1150px) {
    .nav-container {
        min-width: 1100px;
    }
    
}
@media (max-width: 1100px) {
    .nav-container {
        min-width: 1000px;
    }
    
}
@media (max-width: 1050px) {
    .nav-container {
        min-width: 950px;
    }
    
}
@media (max-width: 1000px) {
    .nav-container {
        min-width: 900px;
    }
    
}
@media (max-width: 950px) {
    .nav-container {
        min-width: 850px;
    }
    
}
@media (max-width: 900px) {
    .nav-container {
        min-width: 820px;
    }
    
}
@media (max-width: 850px) {
    .nav-container {
        min-width: 780px;
    }
    
}
@media (max-width: 800px) {
    .nav-container {
        min-width: 600px;
    }
    
}
@media (max-width: 767px) {
    .nav-container {
        min-width: 650px;
    }
    
}

@media (max-width: 750px) {
    .nav-container {
        min-width: 630px;
    }
    
}
@media (max-width: 700px) {
    .nav-container {
        min-width: 620px;
    }
    
}
@media (max-width: 650px) {
    .nav-container {
        min-width: 550px;
    }
    
}
@media (max-width: 600px) {
    .nav-container {
        min-width: 500px;
    }
    
}
@media (max-width: 550px) {
    .nav-container {
        min-width: 470px;
    }
    
}
@media (max-width: 500px) {
    .nav-container {
        min-width: 450px;
    }
    
}
@media (max-width: 450px) {
    .nav-container {
        min-width: 400px;
    }
    
}
@media (max-width: 400px) {
    .nav-container {
        min-width: 350px;
    }
    
}
@media (max-width: 350px) {
    .nav-container {
        min-width: 300px;
    }
    
}

.logo-img {
    height: 50px;
}

.logo-text {
    font-family: "Merriweather", serif;
    color: black;
    /* gap: 1px; */
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 25px;
    
}
.logo-text p{
    /* height: 35px; */
    font-size: 1.5rem;   
    font-weight: 700;
    /* font-size: 0.8rem; */
    /* color: var(--gray-600); */
    /* margin-top: 0.2rem; */
    margin-bottom: 0px !important;
}

.logo-img img {
   height: 100%;
    /* width: 70px; */
    object-fit: cover;
}


.nav-desktop {
    display: none;
    margin-left: auto;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background-color: var(--navy);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-login-btn {
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--teal);
    color: var(--white);
}

.btn-primary:hover {
    background-color: hsl(174, 100%, 22%);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--navy);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 4rem;
    height: 100vh;
    /* background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080'); */
    /* background-size: cover; */
    /* background-position: center; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background-color: rgba(27, 54, 93, 0.7); */
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 1000px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px black;
    transition: 0.3s ease;
    margin-bottom: 6rem;
    /* line-height: 1.2; */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.carousel-inner{
    height: 100vh;
}
.carousel-item {
    height: 100vh;
    width: 100%;
}

.banimg {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--light-grey);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--gray-600);
    line-height: 1.6;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* About Section */
.about-intro {
    max-width: 48rem;
    margin: 0 auto;
}

.office-card {
    background-color: var(--light-grey);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.office-info {
    color: var(--gray-600);
}

.mission-vision {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.features-section {
    background-color: var(--light-grey);
    padding: 3rem;
    border-radius: 2rem;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    background-color: var(--teal);
    color: var(--white);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--gray-600);
}

/* Services Section */
/* .service-category {
    margin-bottom: 4rem;
}

.service-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-icon {
    font-size: 2rem;
    color: var(--teal);
}

.service-grid {
    display: grid;
    gap: 1.5rem;
}

.service-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-item-icon {
    font-size: 1.5rem;
    color: var(--teal);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
}

.service-text {
    color: var(--gray-600);
} */

/* Container and grid */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #0F2A4A;
    font-weight: bold;
}

.section-header p {
    color: #4B5563;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card styles */
.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 42, 74, 0.7);
    color: white;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.service-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: #0F2A4A;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: #4B5563;
    flex-grow: 1;
}

.service-content button {
    background: none;
    border: none;
    color: #4285F4;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s;
}

.service-content button:hover {
    color: #F5B841;
}

.cta {
    text-align: center;
    margin-top: 2rem;
}

.cta button {
    background-color: #F5B841;
    color: #0F2A4A;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
}

.cta button:hover {
    background-color: #ffb300;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* Clients Section */
.clients-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.client-type {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-grey);
    border-radius: 1rem;
}

.client-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.client-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.client-text {
    color: var(--gray-600);
}

/* Testimonials */
.testimonials {
    background-color: var(--navy);
    padding: 3rem;
    border-radius: 2rem;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    color: var(--white);
}

.testimonial-quote {
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--gray-200);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-icon {
    color: var(--teal);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-icon.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    display: grid;
    gap: 3rem;
}

.contact-form-container,
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Forms */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-error.show {
    display: block;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.contact-details {
    color: var(--gray-600);
}

.contact-link {
    color: var(--teal);
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.footer-section ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-size: 1.25rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--teal);
}

.footer-contact {
    color: var(--gray-300);
}

.footer-contact p {
    margin-bottom: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-300);
}

.social-link i {
    color: var(--white);
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: var(--teal);
}

.footer-contact p {
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.footer-contact a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--teal);
}

.footer {
    padding: 3rem 1rem 1rem;
}

.footer-section {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Toast Messages */
.toast {
    position: fixed;
    top: 5rem;
    right: 1rem;
    background-color: var(--teal);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1100;
}

.toast.show {
    transform: translateX(0);
}

.toast.error {
    background-color: #dc2626;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mission-vision {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Loading and Disabled States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Smooth scrolling for anchor links */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media(max-width: 500px) {
    .footer {
    text-align: center;
}
}


