/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/
:root {
    --primary-color: #0A0042;
    --secondary-color: #FFFFFF;
    --white-color: #FFFFFF;
    --text-color: #FFFFFF;
    /* Changed from #F5F5F5 */
    --black-color: #000000;
    --black-50: rgba(0, 0, 0, 0.5);
    --black-dark: #191919;
    --light-black: #808080;
    --light-black-80: rgba(128, 128, 128, 0.8);
    --gray-light: #C4C4C4;
    --gray-light-20: rgba(196, 196, 196, 0.2);
    --gray-light-80: rgba(196, 196, 196, 0.8);
    --muted-color: #F4F4F4;

    --divider-color: #0A004240;
    --dark-divider-color: rgba(255, 255, 255, 0.8);
    /* Changed from #FFFFFF40 */
    --error-color: #FF5252;
    --default-font: "Poppins", sans-serif;
    --default-font-size: 16px;
    --default-line-height: 1.5;
    --default-transition: all 0.3s ease;
}


/************************************/
/*** 	   02. General CSS	      ***/
/************************************/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 8px;
    border: 3px solid transparent;
    background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:active,
*::-webkit-scrollbar-thumb:focus {
    background-color: #000;
    opacity: 0.95;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #000 transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--default-font);
    font-size: var(--default-font-size);
    font-weight: 400;
    line-height: var(--default-line-height);
    color: var(--black-color);
    background-color: var(--white-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    overflow-x: hidden;
}

/* Global Text Justification */
p, 
.section-description,
.about-text,
.service-description,
.feature-text,
.founder-bio,
.value-description,
.card-description,
.hero-subtitle,
.hero-about-subtitle,
.testimonial-text,
.cta-description,
li {
    text-align: justify;
    text-justify: inter-word;
}

/* Additional content areas that need justification */
.about-content p,
.mission-card p,
.vision-card p,
.service-content p,
.testimonial-card p,
.contact-benefits p,
.privacy-content p,
.terms-content p,
.policy-section p,
.legal-content p,
.content-section p,
.text-content p,
.description-text,
.info-text {
    text-align: justify;
    text-justify: inter-word;
}

/* Override any left-aligned text for content paragraphs */
.contact-methods p,
.join-us-content p,
.form-description p,
.page-content p,
.main-content p,
.content-wrapper p,
.policy-content p,
.terms-wrapper p,
.privacy-wrapper p {
    text-align: justify !important;
    text-justify: inter-word;
}

/* Specific overrides for known content areas */
.contact-benefits ul li,
.features .feature-text,
.why-us-content p,
.hero p {
    text-align: justify !important;
    text-justify: inter-word;
}

/* Ensure justified text on all devices */
@media screen and (max-width: 768px) {
    p, 
    .section-description,
    .about-text,
    .service-description,
    .feature-text,
    .founder-bio,
    .value-description,
    .card-description,
    .hero-subtitle,
    .hero-about-subtitle,
    .testimonial-text,
    .cta-description,
    li,
    .about-content p,
    .mission-card p,
    .vision-card p,
    .service-content p,
    .testimonial-card p,
    .contact-benefits p,
    .privacy-content p,
    .terms-content p,
    .policy-section p,
    .legal-content p,
    .content-section p,
    .text-content p,
    .description-text,
    .info-text,
    .contact-methods p,
    .join-us-content p,
    .form-description p,
    .page-content p,
    .main-content p,
    .content-wrapper p,
    .policy-content p,
    .terms-wrapper p,
    .privacy-wrapper p,
    .contact-benefits ul li,
    .features .feature-text,
    .why-us-content p,
    .hero p {
        text-align: justify !important;
        text-justify: inter-word;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--default-transition);
    white-space: normal;
}

a:hover {
    text-decoration: underline;
}

button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--default-transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-secondary-color);
}

::selection {
    color: var(--secondary-color);
    background-color: var(--primary-color);
    filter: invert(1);
}

/* Utility Classes */
.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.flex-col {
    flex-direction: column;
}

.gap-10 {
    gap: 10px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.rounded-12 {
    border-radius: 12px;
}

.rounded-8 {
    border-radius: 8px;
}

.rounded-500 {
    border-radius: 500px;
}

.rounded-full {
    border-radius: 9999px;
}

.text-white {
    color: var(--text-color);
}

.text-black {
    color: var(--black-color);
}

.text-gray {
    color: var(--light-black);
}

.bg-white {
    background-color: var(--white-color);
}

.bg-black {
    background-color: var(--black-color);
}

.bg-muted {
    background-color: var(--muted-color);
}

.border-gray-light {
    border: 0.5px solid var(--gray-light-20);
}

.border-gray-light-80 {
    border: 0.5px solid var(--gray-light-80);
}

.outline-black {
    outline: 1px solid var(--black-color);
}

.outline-white {
    outline: 1px solid var(--text-color);
}

/* Navigation */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--default-transition);
}

.navbar.scrolled {
    background: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar.scrolled .nav-link,
.navbar.scrolled .logo a,
.navbar.scrolled .phone-number {
    color: var(--black-color);
}

.navbar.scrolled .hamburger span {
    background: var(--black-color);
}

.navbar.scrolled .nav-link.active::after {
    background: var(--black-color);
}

.navbar.scrolled .divider {
    background: var(--black-color);
}

.navbar.scrolled .phone-icon {
    border-color: var(--black-color);
}

.navbar.scrolled .contact-btn {
    background: var(--black-color);
    color: var(--white-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    max-width: 1400px;
}

.logo {
    width: 12rem;
}

.divider {
    width: 2px;
    height: 20px;
    background: var(--white-color);
    margin: 0 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    position: relative;
}

.nav-link:hover {
    color: var(--white-color);
    text-decoration: none;
}

.nav-link.active {
    font-weight: 500;
}

.nav-link.active::after {
    content: '';
    width: 16px;
    height: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -3px;
    background: var(--white-color);
    border-radius: 50px;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav-contact .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link-mobile {
    display: none;
}

.social-link-mobile iconify-icon {
    font-size: 2rem;
    color: var(--white-color);
}

.nav-contact .social-link iconify-icon {
    font-size: 2rem;
    color: var(--white-color);
}

.scrolled .nav-contact .social-link iconify-icon {
    color: var(--black-color)
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
}

.phone-icon {
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--white-color);
    border-radius: 50%;
}

.contact-btn {
    height: 40px;
    padding: 8px 16px;
    background: var(--white-color);
    border-radius: 8px;
    color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white-color);
    margin: 5px 0;
    transition: var(--default-transition);
    transform-origin: center;
}

/* Active (Cross) State */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner-image2.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Hero Content */
.hero-content {
    position: absolute;
    display: flex;
    bottom: 5rem;
    padding: 0 15px;
    margin: 0 auto;
    left: 6.5rem;
    align-items: flex-end;
    max-width: calc(80vw + 100px);
}

.hero-info {
    max-width: 60%;
}

.hero-title {
    color: var(--white-color);
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    max-width: 617px;
    margin-bottom: 0;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    height: 100%;
    max-width: 40%;
    width: 40%;
}

.primary-btn {
    height: 48px;
    padding: 10px 20px;
    background: var(--white-color);
    border-radius: 10px;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.outline-btn {
    height: 48px;
    padding: 10px 20px;
    border-radius: 10px;
    outline: 1px solid var(--white-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.outline-btn-dark {
    height: 48px;
    padding: 10px 20px;
    border-radius: 10px;
    outline: 1px solid var(--black-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Other sections for scrolling demo */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--muted-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 1050px) {
    .phone-number {
        display: none;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 30px;
    }

    .divider {
        margin: 0 20px;
    }

    .nav-contact {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-contact a {
        width: 100%;
    }

    .nav-contact .phone-number a {
        width: auto;
    }

    .divider {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .navbar.scrolled .nav-menu {
        background: var(--white-color);
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--gray-light-20);
        margin-bottom: 20px;
    }

    .nav-link {
        color: var(--black-color);
        padding: 10px 0;
    }

    .navbar.scrolled .nav-link {
        color: var(--black-color);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-contact {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: flex-start;
    }

    .phone-number {
        display: flex;
    }

    .phone-number,
    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-btn {
        background-color: var(--black-color);
        color: var(--text-color);
    }

    .phone-number {
        color: var(--black-color);
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .nav-contact .social-link iconify-icon {
        display: none;
    }

    .social-link-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .scrolled .social-link-mobile iconify-icon {
        color: var(--black-color);
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.5rem;
    }

    .logo a::before {
        margin: 0 5px;
    }

    .hero-title {
        font-size: 32px;
    }

    .phone-number,
    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-btn {
        background-color: var(--black-color);
        color: var(--text-color);
    }
}




.primary-btn {
    height: 48px;
    padding: 10px 20px;
    background: var(--black-color);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.secondary-btn {
    height: 48px;
    padding: 10px 20px;
    background: var(--white-color);
    border-radius: 10px;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.outline-btn {
    height: 48px;
    padding: 10px 20px;
    border-radius: 10px;
    outline: 1px solid var(--text-color);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.section-label {
    position: relative;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 600;
    padding-left: 11px;
}

.section-label::before {
    content: '';
    width: 3px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 4px;
    background: var(--black-color);
}

.section-title {
    color: var(--black-color);
    font-size: 48px;
    font-weight: 600;
    margin-top: 1rem;
    max-width: 913px;
}

.section-description {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 1290px;
}

.section-text {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 617px;
}

.section-subtext {
    color: var(--light-black);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 617px;
}

.about-content {
    display: flex;
    gap: 56px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 617px;
}

.stats-card {
    background: var(--muted-color);
    border-radius: 12px;
    border: 0.5px solid var(--gray-light-20);
    padding: 20px;
    position: relative;
}

.stats-number {
    color: var(--black-color);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
}

.stats-label {
    color: var(--light-black);
    font-size: 16px;
    font-weight: 400;
}

.about-text {
    flex: 1;
}

/* Expertise Section */
.expertise-section {
    background: var(--muted-color);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.expertise-card {
    padding: 28px;
    position: relative;
    border-radius: 12px;
    display: flex;
}

.expertise-card.dark {
    background: var(--black-color);
    color: var(--text-color);
}

.expertise-card.dark .expertise-card-detail::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M9.707 17.707l10-10-1.414-1.414L9 15.586l-4.293-4.293-1.414 1.414L9 18.586z'/%3E%3C/svg%3E") center no-repeat;
}

.expertise-card.light {
    background: var(--white-color);
    color: var(--black-color);
    border: 0.5px solid var(--gray-light-20);
}

.experties-card-info {
    text-align: left;
    margin-left: 1rem;
}

.expertise-card-title {
    color: inherit;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
}

.expertise-card-icon {
    width: 28px;
    height: 28px;
    position: relative;
}

.expertise-card-icon-inner {
    width: 23px;
    height: 23px;
    border: 2px solid currentColor;
}

.expertise-card-text {
    color: inherit;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 525px;
}

.expertise-card-detail {
    color: inherit;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.expertise-card-detail::before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M9.707 17.707l10-10-1.414-1.414L9 15.586l-4.293-4.293-1.414 1.414L9 18.586z'/%3E%3C/svg%3E") center no-repeat;
    background-size: 12px;
}

.expertise-card-more {
    color: inherit;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    display: inline-block;
}

.filter-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    height: 36px;
    padding: 8px 16px;
    border-radius: 500px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.filter-tab.active {
    background: var(--black-color);
    color: var(--text-color);
}

.filter-tab:not(.active) {
    outline: 0.5px solid var(--light-black-80);
    color: var(--black-color);
}

.expertise-card.dark-hover {
    background-color: var(--white-color);
}

.expertise-card.dark-hover:hover {
    background: var(--black-color);
    color: var(--text-color);
}

.expertise-card.dark-hover:hover .expertise-card-detail::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'%3E%3Cpath d='M9.707 17.707l10-10-1.414-1.414L9 15.586l-4.293-4.293-1.414 1.414L9 18.586z'/%3E%3C/svg%3E") center no-repeat;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-us-card {
    background: var(--white-color);
    border-radius: 12px;
    border: 0.5px solid var(--gray-light-80);
    padding: 28px;
    position: relative;
}

.why-us-card.small {
    height: auto;
}

.why-us-card.large {
    grid-column: span 2;
    height: auto;
}

.why-us-card.xlarge {
    grid-row: span 2;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-us-card-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 20px;
}

.why-us-card-icon-inner {
    width: 23px;
    height: 23px;
    border: 2px solid var(--black-dark);
}

.why-us-card-title {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.why-us-card-text {
    color: var(--light-black);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.why-us-card-cta {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--black-color);
    border-radius: 12px;
    padding: 28px;
    color: var(--text-color);
    height: 100%;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background: url("../images/testimonial-image.png");
}

.author-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.author-position {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.80);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background: var(--light-black);
    cursor: pointer;
}

.dot.active {
    background: var(--black-color);
}

.splide {
    margin-bottom: 60px;
    overflow-x: hidden;
}

.splide__track {
    overflow: visible;
}

.splide__list {
    display: flex;
    gap: 10px;
}

.splide__slide {
    width: calc((100% - 80px) / 3);
}

.splide__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: static;
    padding: 0;
    margin-top: 2rem;
}

.splide__pagination__page {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background: var(--light-black);
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: var(--default-transition);
}

.splide__pagination__page.is-active {
    background: var(--black-color);
    transform: none;
}

@media (max-width: 1200px) {
    .splide__slide {
        width: calc((100% - 40px) / 2);
    }
}

@media (max-width: 768px) {
    .splide__slide {
        width: 96% !important;
    }
}

/* Footer */
.footer {
    padding: 60px 0 20px 0;
    background: var(--muted-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 535px;
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    width: 10rem;
}

.footer-text {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    margin: 20px 0;
}

.footer-copyright {
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--divider-color);
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    z-index: 999;
}

.links-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 150px;
}

.footer-heading {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 10px;
}

.footer-link {
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-card.xlarge {
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .stats-grid {
        max-width: 100%;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-card.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 0 20px;
        flex-direction: column;
        left: 0;
        align-items: flex-start;
        gap: 1rem;
        bottom: 3rem;
    }

    .hero-content a {
        width: 100%;
    }

    .hero-info,
    .hero-cta {
        max-width: 100%;
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero-cta button {
        width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .filter-tabs {
        gap: 10px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .section-label,
    .section-text,
    .section-subtext {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .filter-tab {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Mobile Text Justification */
    p, .section-text, .section-subtext, .about-text p, .hero p, 
    .expertise-card-text, .expertise-card-detail, .policy-section p, 
    .terms-section p, .footer-text {
        text-align: justify;
    }
}

/************************************/
/*** 	   CTA Section	          ***/
/************************************/
.cta-section {
    padding: 80px 0;
    background: var(--black-color);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white-color);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-description {
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section .primary-btn {
    background: var(--white-color);
    color: var(--black-color);
    padding: 16px 32px;
    font-weight: 600;
    border: 2px solid var(--white-color);
    transition: var(--default-transition);
}

.cta-section .primary-btn:hover {
    background: transparent;
    color: var(--white-color);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
}

/************************************/
/*** 	   Dropdown Menu	      ***/
/************************************/
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.dropdown-toggle::after {
    font-size: 1rem;
    margin: auto 0 auto 8px;
    transition: var(--default-transition);
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white-color);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    padding: 8px 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2px;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--black-color);
    text-decoration: none;
    transition: var(--default-transition);
    font-size: 14px;
    white-space: nowrap;
}
.nav-link:focus, .nav-link:hover{
    color: var(--white-color);
}

.dropdown-link:hover {
    background: var(--muted-color);
    color: var(--black-color);
    text-decoration: none;
}

/* Navbar scrolled state dropdown styling */
.navbar.scrolled .dropdown-menu {
    background: var(--white-color);
    border: 1px solid var(--gray-light-20);
}

.navbar.scrolled .dropdown-link {
    color: var(--black-color);
}

.navbar.scrolled .dropdown-link:hover {
    background: var(--muted-color);
}

/* Ensure dropdown shows on transparent navbar */
.navbar:not(.scrolled) .dropdown-menu {
    background: var(--white-color);
    border: none;
}

.navbar:not(.scrolled) .dropdown-link {
    color: var(--black-color);
}

.navbar:not(.scrolled) .dropdown-link:hover {
    background: var(--muted-color);
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        padding: 10px 0;
        color: var(--black-color);
        cursor: pointer;
    }
    
    .dropdown-toggle::after {
        float: right;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-left: 20px;
        margin-top: 10px;
        border-radius: 0;
        display: block;
    }
    
    .dropdown-link {
        padding: 8px 0;
        color: var(--light-black);
        font-size: 14px;
    }
    
    .dropdown-link:hover {
        background: transparent;
        color: var(--black-color);
        text-decoration: underline;
    }
    
    /* Hide dropdown arrow on mobile since it's always expanded */
    .dropdown-toggle::after {
        display: none;
    }
}

/* Additional dropdown force rules for debugging */
.navbar .nav-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    pointer-events: auto !important;
}