@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Questrial&display=swap");

body,
p {
    font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Questrial", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial,
        sans-serif;
    background-color: #63acf4;
    line-height: 1.6;
    color: #000;
}

/* ================= Navbar ================= */
    :root {
        --blue: #63acf4;
        --text: #000;
        --dropdown-bg: #f9f9f9;
        --dropdown-text: #333;
        --dropdown-hover-bg: #ddd;
        --grey-border: #ccc; 
    }

    .navbar {
        padding: 10px 20px;
        background-color: var(--blue) !important;
    }
    
    .bg-light {
        background-color: transparent !important;
    }

    .navbar-brand {
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        align-items: center;
    }

    .navbar-brand img {
        max-height: 40px;
        width: auto;
        display: block;
    }

    /* 3. Navigation Links */
    .navbar-nav .nav-link {
        color: var(--text) !important;
        font-size: 16px;
        margin: 0 5px;
        padding: 8px 10px;
    }

    /* Link Hover Effect */
    .navbar-nav .nav-link:hover {
        opacity: 0.85;
    }

    /* 4. Dropdown Toggle Icon and Hover State */
    .navbar-nav .dropdown-toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    /* Custom caret */
    .navbar-nav .dropdown-toggle::after {
        content: "";
        width: 6px;
        height: 6px;
        border-right: 2px solid var(--text);
        border-bottom: 2px solid var(--text);
        transform: rotate(45deg);
        margin-top: -2px;
        display: inline-block;
        vertical-align: middle;
        border-left: none;
        border-top: none;
    }

    .dropdown-menu {
        background: #fff !important; 
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        border: none;
        min-width: 160px;
        padding: 0;
        border-radius: 0; 
    }
    
    .dropdown-menu .dropdown-item {
        color: var(--dropdown-text);
        padding: 12px 16px;
        font-size: 16px;
        background-color: #fff !important; 
    }

    .dropdown-menu .dropdown-item:hover {
        background: var(--dropdown-hover-bg) !important;
    }

    .navbar-contact-btn {
        display: inline-block;
        text-decoration: none;
        
        background: #fff;
        color: #000;
        padding: 8px 15px;
        font-size: 14px;
        margin-left: 10px;
        
        border-radius: 0 !important; 
        border-top: 1px solid var(--grey-border) !important;
        border-left: 1px solid var(--grey-border) !important;
        border-right: 1px solid var(--grey-border) !important;
        border-bottom: 2px solid var(--grey-border) !important; 
    }

    .navbar-contact-btn:hover {
        background: #eee;
        color: #000;
        border-top: 1px solid var(--grey-border) !important;
        border-left: 1px solid var(--grey-border) !important;
        border-right: 1px solid var(--grey-border) !important;
        border-bottom: 2px solid var(--grey-border) !important;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%280, 0, 0%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    @media (max-width: 991.98px) {
        .navbar-collapse {
            background-color: var(--blue) !important;
        }
        .navbar-nav .nav-item {
            width: 100%;
        }
        .navbar-nav {
            margin: 0 !important;
        }
        .navbar-nav .nav-link, .navbar-brand {
             padding: 10px 0;
        }
    }


/* Navbar ends */

/* ================= Hero Wrapper ================= */
.hero-wrapper {
    width: 100%;
    background: #e8f2fe;
    padding: 70px 0;
}

.hero-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 400px;
}

.hero-section .content {
    padding-right: 20px;
}

.hero-section .heading {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-section .description {
    font-size: 1rem;
    color: #000;
    line-height: 1.5;
    font-weight: 400;
}

.hero-section .image-placeholder {
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-section .content {
        padding-right: 0;
    }

    .hero-section .heading {
        font-size: 2rem;
    }

    .hero-section {
        padding: 40px 20px;
    }
}

/* ================= Business Setup Section ================= */
.business-setup-section {
    padding: 80px 40px;
    background: #63acf4;
    text-align: center;
}

.business-setup-section .setup-container {
    max-width: 800px;
    margin: 0 auto;
}

.business-setup-section .setup-heading {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.business-setup-section .setup-description {
    font-size: 1rem;
    color: #000;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 700px;
    margin-inline: auto;
}

.business-setup-section .setup-description:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .business-setup-section {
        padding: 60px 20px;
    }

    .business-setup-section .setup-heading {
        font-size: 2.5rem;
    }
}

/* ================= Advantage ================= */
.advantage-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.advantage-section .advantage-label {
    font-size: 14px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 500;
}

.advantage-section .main-heading {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.advantage-section .subtitle {
    font-size: 18px;
    color: #000;
    margin-bottom: 60px;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.5;
}

.advantage-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.advantage-section .feature-item {
    text-align: center;
    padding: 20px;
}

.advantage-section .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    color: #000;
}

.advantage-section .feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.advantage-section .feature-description {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}

.advantage-section .buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.advantage-section .btn-about-choose {
    padding: 12px 30px;
    border: 2px solid #333;
    background: transparent;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
    display: inline-block;
}

.advantage-section .btn-about-choose:hover {
    background: #333;
    color: #fff;
}

.advantage-section .btn-services {
    border: none;
}

.advantage-section .btn-services::after {
    content: "→";
    font-size: 18px;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .advantage-section {
        padding: 60px 20px;
    }

    .advantage-section .main-heading {
        font-size: 36px;
    }

    .advantage-section .subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .advantage-section .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .advantage-section .buttons-container {
        flex-direction: column;
        gap: 15px;
    }

    .advantage-section .btn-about-choose {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .advantage-section .main-heading {
        font-size: 28px;
    }

    .advantage-section .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .advantage-section .feature-title {
        font-size: 18px;
    }

    .advantage-section .feature-description {
        font-size: 14px;
    }
}

/* ================= Testimonials ================= */
.testimonials {
    padding: 60px 20px;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials .section-title {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.testimonials .section-subtitle {
    font-size: 1.1rem;
    color: #000;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonials .testimonial-card {
    background: #63acf4;
    border: 2px solid #000;
    padding: 30px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.testimonials .testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonials .star {
    width: 20px;
    height: 20px;
    color: #000;
    font-size: 18px;
}

.testimonials .testimonial-text {
    font-size: 1rem;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonials .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonials .client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #000;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonials .client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials .client-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.testimonials .client-details p {
    font-size: .9rem;
    color: #000;
}

@media (max-width: 768px) {
    .testimonials .section-title {
        font-size: 2rem;
    }

    .testimonials .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials .testimonial-card {
        padding: 25px;
    }
}

/* ================= CTA ================= */
.cta-wrapper {
    width: 100%;
    background: #1d75cd;
    padding: 70px 0;
}

.cta-section {
    background: #1d75cd;
    padding: 80px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    background-image: url("../Images/homepage-cta.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.cta-heading,
.cta-subtitle,
.cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-heading {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-inline: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-about-cta {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
    min-width: 140px;
}

.btn-primary-about-cta {
    background: #fff;
    color: #333;
    border: 2px solid #fff;
}

.btn-primary-about-cta:hover {
    background: #f0f0f0;
    color: #333;
    transform: translateY(-2px);
}

.btn-secondary-about-cta {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary-about-cta:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-about-cta {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .cta-heading {
        font-size: 1.75rem;
    }

    .cta-section {
        padding: 40px 15px;
    }
}

/* ================= Footer ================= */
.incorwise-footer-outer {
    padding: 3.5rem 2vw 3.5rem;
    background: #63acf4;
}

.incorwise-footer * {
    box-sizing: border-box;
}

.incorwise-footer {
    color: #000;
}

.incorwise-footer .incfw-frame {
    width: 100%;
    margin-inline: auto;
    max-width: 1200px;
}

.incorwise-footer .incfw-container {
    position: relative;
    border: 1px solid #000;
    background: #63acf4;
    color: #000;
    padding: 28px 30px 72px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo nav" "content content";
    gap: 18px 30px;
}

.incorwise-footer .incfw-top {
    display: contents;
}

.incorwise-footer .incfw-logo {
    grid-area: logo;
    font-style: italic;
    font-size: 18px;
    color: #000;
}

.incorwise-footer .incfw-nav {
    grid-area: nav;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.incorwise-footer .incfw-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.incorwise-footer .incfw-col a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.3;
}

.incorwise-footer .incfw-col a:hover {
    text-decoration: underline;
}

.incorwise-footer .incfw-content {
    grid-area: content;
    max-width: 720px;
}

.incorwise-footer .incfw-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: #000;
    margin-bottom: 12px;
}

.incorwise-footer .incfw-sub {
    font-size: 16px;
    color: #000;
    opacity: 0.85;
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 520px;
}

.incorwise-footer .incfw-buttons {
    display: flex;
    gap: 15px;
}

.incorwise-footer .incfw-btn {
    padding: 12px 24px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.incorwise-footer .incfw-btn:hover {
    background: #f3f3f3;
}

.incorwise-footer .incfw-social {
    position: absolute;
    right: 30px;
    bottom: 28px;
    display: flex;
    gap: 12px;
}

.incorwise-footer .incfw-ico {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    opacity: 0.9;
}

.incorwise-footer .incfw-ico:hover {
    opacity: 1;
}

.incorwise-footer .incfw-legal {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-size: 14px;
    padding: 8px 6px;
}

.incorwise-footer .incfw-legal-links {
    display: flex;
    gap: 20px;
}

.incorwise-footer .incfw-legal-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.incorwise-footer .incfw-legal-links a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .incorwise-footer .incfw-container {
        grid-template-columns: 1fr;
        grid-template-areas: "logo" "content" "nav";
    }

    .incorwise-footer .incfw-nav {
        display: block;
        padding-top: 4px;
    }

    .incorwise-footer .incfw-col {
        display: contents;
    }

    .incorwise-footer .incfw-col a {
        display: block;
        margin-top: 8px;
    }

    .incorwise-footer .incfw-social {
        position: static;
        margin-top: 10px;
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .incorwise-footer .incfw-title {
        font-size: 34px;
    }

    .incorwise-footer .incfw-col a,
    .incorwise-footer .incfw-legal {
        font-size: 13px;
    }
}

@media (max-width: 520px) {
    .incorwise-footer .incfw-legal {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 8px;
    }

    .incorwise-footer .incfw-legal-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
}

.incfw-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}