/* CSS Variables */
:root {
    --primary: #006699;
    --primary-dark: #00334d;
    --primary-light: #0099cc;
    --neutral-soft: #e6f2f5;
    --neutral-base: #f2f7fa;
    --heading-color: #00334d;
    --subheading-color: #004466;
    --body-color: #1a1a1a;
    --muted-color: #4d6a7a;
    --inverse-color: #f2f7fa;
    --success: #01e062;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-family: 'Inter', 'Roboto', sans-serif;

    /* Spacing */
    --small-padding: 5px;
    --medium-padding: 10px;
    --large-padding: 20px;
}

.fa-whatsapp {
    font-size: x-large;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red; */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--body-color);
    background-color: var(--neutral-base);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* background-color: #01e062; */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--inverse-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-success {
    background-color: var(--success);
    color: var(--inverse-color);
}

.btn-success:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--inverse-color);
}

.section {
    padding: 80px 0;
    /* background-color: red; */
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--muted-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;

}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;

}

.logo img {
    height: 150px;
    position: absolute;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */



.hero-container {

    background: var(--neutral-base);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;

    background: transparent;
    background-image: url('./assets/pictures/tall-buildings.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

/* Animated background elements */
/* .bg-orb {
           position: absolute;
           border-radius: 50%;
           filter: blur(80px);
           opacity: 0.3;
           animation: float 20s ease-in-out infinite;
       } */

/* .orb-1 {
           width: 500px;
           height: 500px;
           background: transparent;
           top: -10%;
           left: -10%;
           animation-delay: 0s;
       }



       .orb-2 {
           width: 400px;
           height: 400px;
           background: transparent;
           bottom: -10%;
           right: 10%;
           animation-delay: 7s;
       }

       .orb-3 {
           width: 300px;
           height: 300px;
           background: transparent;
           top: 40%;
           right: -5%;
           animation-delay: 14s;
       } */



.hero-content {
    backdrop-filter: brightness(0.5);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    /* max-width: 1400px; */
    height: 100vh;

    margin: auto;
    position: relative;
    z-index: 10;
    padding-bottom: var(--large-padding);
    padding-left: var(--large-padding);


}

/* Left content */
.left-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* .logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #06beb6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    letter-spacing: -1px;
} */

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--neutral-soft);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--primary-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.25rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
    color: var(--inverse-color);
}

.cta-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    text-align: right;
    gap: 20px;
    background: var(--primary-dark);
    color: var(--inverse-color);
    padding: 17px 50px;
    font-size: 1.1rem;
    /* font-weight: 600; */
    border: none;

    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 40px rgba(239, 239, 239, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button p {
    height: 100%;
    background-color: #0099cc;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px var(--muted);
}

.cta-button:active {
    transform: translateY(0);

}

.cta-button .arrow {

    padding: 0;
    height: max-content;
    position: initial;
    transition: transform 0.3s ease;
    animation: scale-in 1.3s ease infinite alternate-reverse;
}

@keyframes scale-in {

    to {
        transform: scale(1.9);

    }
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

/* Right content - 3D Illustration */
.right-content {
    position: relative;
    height: 600px;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glass card with financial elements */
.glass-card {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    background: var(#004466a0);
    backdrop-filter: blur(20px);
    border: 1px solid var(--neutral-soft);
    border-radius: 5px;
    padding: 10px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s ease-in-out infinite;
    min-height: max-content;
}


.card-1 {
    width: 320px;
    height: 180px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    width: 280px;
    height: 160px;
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.card-3 {
    width: 300px;
    height: 170px;
    top: 35%;
    right: 5%;
    animation-delay: 4s;
}



.card-icon {
    width: 50px;
    height: 50px;
    padding: 2.5px 5px;
    background: var(--neutral-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.card-title {
    color: var(--neutral-soft);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-value {
    color: var(--neutral-soft);
    font-size: 1.8rem;
    font-weight: 700;
}

/* Central glowing orb */
.central-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}


/* Floating particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 40%;
    right: 25%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    bottom: 30%;
    right: 35%;
    animation-delay: 6s;
}


/* Trust badges */
.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 3rem;
    align-items: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0aec0;
    font-size: 0.9rem;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: rgba(6, 190, 182, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3ba580;
}

.scrool-indicator-hero {
    border: 3px solid rgb(255, 255, 255);
    width: 50px;
    height: 50px;
    background: transparent;
    backdrop-filter: blur(100px);
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    padding: 30px 10px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    animation: bounce 2s infinite alternate-reverse;
}

@keyframes bounce {
    from {
        transform: translateY(-30px);
    }

    to {
        transform: translateY(0);
    }
}

/* Services Section */
.section-separator {
    justify-self: center;
    position: relative;
    z-index: 0;
    width: 100%;
    text-align: center;
    margin: var(--large-padding);
}

.section-separator::after {
    position: absolute;
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 5%;
    height: 3px;
    background-color: var(--primary);
    transform: translateX(-50%);
    border-radius: 20px;
}

.services-section {
    /* padding: 40px 20px; */
    padding: var(--large-padding) 0;
    background-color: var(--neutral-base);
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'About loans' 'others others';
    gap: 50px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    place-items: center;
    text-align: center;
    position: relative;
    backdrop-filter: blur(3px);



}




.services-title {
    background-image: url('/assets/pictures/pexels-padrinan-2120614.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neutral-soft);
    -ms-grid-column-align: center;
    border-radius: 0 30px 20px 0;
    grid-area: About;

}

.services-title h1 {
    color: var(--neutral-soft);
}

.services-container {
    gap: var(--medium-padding);
    height: 50vh;
    min-height: max-content;
    scroll-snap-align: start;
}

.services-container i {
    background-color: var(--primary);
    padding: var(--small-padding);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: var(--neutral-soft);
    border-radius: 40px;
}

.services-container a,
.services-container p {
    float: left;
    text-align: left;
    max-width: max-content;

}

.loans {
    grid-area: loans;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* height: 100%; */
    /* border-right: 20px #035292 solid; */
    position: relative;
    color: var(--inverse-color);
    color: #00334d;
    padding: 10px;
}

.loan-more-button {
    border: 3px var(--primary);
    padding: var(--small-padding) var(--large-padding);
    border-radius: 1rem;
    box-shadow: 0 0 7 px 6px #00334d1c;

    background-color: var(--heading-color);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    font-size: larger;
    font-weight: bold;
    text-decoration: none;
    color: var(--inverse-color);

}

.loan-more-button i {
    background-color: transparent !important;
    color: var(--inverse-color) !important;
}

.loans-icons {
    gap: var(--large-padding);

}



.other-services {
    min-width: 95%;
    display: flex;
    padding: 0 30px;
    justify-content: space-around;
    justify-self: right;
    grid-area: others;
    position: relative;
    background-color: #035292;
    border-radius: 2rem;
    margin-right: 1rem;
}

.other-services .services-container {
    width: calc((100%/3) - (20px * 3));
    border-radius: 30px;
    /* background-color: #ffffff; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
}

.Insurance::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -35px;
    width: 5px;
    height: 40vh;
    border-radius: 30px;
    background: var(--neutral-soft);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.Pay::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -35px;
    width: 5px;
    height: 40vh;
    border-radius: 30px;
    background: var(--neutral-soft);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.service-title {
    width: 12.6em;
    position: relative;
    justify-self: flex-start;
    margin-bottom: 2rem;
}


.left-curve-around-title {
    background: var(--neutral-base);
    position: absolute;
    top: 0;
    left: -21.9px;
    height: 20px;
    width: 70%;
    z-index: -9;
    -webkit-mask-image: radial-gradient(circle 70px at 0% 100%, transparent 99%, black 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
    mask-image: radial-gradient(circle 20px at 0% 100%, transparent 99%, black 100%);
    mask-repeat: no-repeat;
    mask-position: 0 0;
    z-index: 1;

}

.right-curve-around-title {
    background: var(--neutral-base);
    position: absolute;
    top: 0;
    right: -21.9px;
    height: 20px;
    width: 70%;
    z-index: -9;
    -webkit-mask-image: radial-gradient(circle 70px at 0% 100%, transparent 99%, black 100%);
    transform: rotatey(180deg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
    mask-image: radial-gradient(circle 20px at 0% 100%, transparent 99%, black 100%);
    mask-repeat: no-repeat;
    mask-position: 0 0;
    z-index: 1;

}

.service-more {
    background-color: white;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 30px;
    color: var(--heading-color);
}

.title-content {
    background-color: var(--neutral-base);
    border-radius: 0 0 40px 40px;
    color: var(--heading-color);
    position: absolute;
    width: 13rem;
    padding-bottom: 5px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;


}

.other-services .services-container li {
    margin-top: var(--large-padding);
    text-align: left;
    font-size: large;
    font-weight: bold;
    color: var(--neutral-soft);
}


/* Service Detail Pages */
.service-hero {
    padding: 160px 0 80px;
    color: var(--inverse-color);
    text-align: center;
    background-image: url('./assets/pictures/agreement.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero h1 {
    font-size: 3rem;
    color: var(--inverse-color);
    margin-bottom: 20px;
}

.service-content {
    padding: 0px 0;
    /* background-color: #01e062; */
}

.service-content .container {
    /* background-color: red; */
    max-width: 100vw;
    padding: 0 0px;
}

.detail-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-feature {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.service-feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.eligibility-criteria {
    background: var(--neutral-soft);
    padding: 40px;
    border-radius: var(--border-radius);
    margin: 40px 0;
}

.eligibility-criteria ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.eligibility-criteria li {
    margin-bottom: 10px;
}

/* Why us */

.why-us-block {
    display: flex;
    flex-direction: column;
    width: 97%;
    /* background: radial-gradient( at top left, var(--heading-color) 0%, var(--primary) 50%, transparent 80%); */

    /* gap: 20px; */
    /* border:2px  var(--primary); */
    /* border-style: groove; */
    position: relative;
    justify-self: left;
    border-bottom-right-radius: 100px;
    border-top-right-radius: 100px;
}

.why-title-text h1,
.why-title-text {
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--heading-color);

}

/* Why us section */
.why-title-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--heading-color) 0%, #989696 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    text-align: center;
}

.why-us-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: var(--large-padding);
    padding: 20px 50px;
    /* flex-wrap: wrap; */

}

.why-card {
    background-color: #006699;
    padding: 10px 20px 20px 20px;
    color: var(--neutral-base);

    margin: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.471);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.why-card i {
    font-size: 3rem;
    color: var(--neutral-base);


    background-color: var(--heading-color);
    padding: 10px;
    border-radius: 1rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--inverse-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.loan-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--large-padding);
    margin-bottom: 2rem;
}

.loan-type-card {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: var(--large-padding);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.loan-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-light);
}

.loan-type-card.selected {
    border-color: var(--primary);
    background-color: var(--neutral-soft);
}

.loan-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--medium-padding);
}

.loan-type-card h3 {
    color: var(--heading-color);
    margin-bottom: var(--small-padding);
}

.loan-details {
    margin-top: var(--medium-padding);
    font-size: 0.9rem;
    color: var(--muted-color);
}

.loan-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.loan-feature-list {
    margin-top: var(--medium-padding);
    padding-left: 1.2rem;
}

.loan-feature-list li {
    margin-bottom: 5px;
}

.loan-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.contact-details h3 {
    margin-bottom: 5px;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 153, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--inverse-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--inverse-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neutral-soft);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: inherit;
}

.newsletter-btn {
    background: var(--primary);
    color: var(--inverse-color);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: var(--inverse-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(1, 224, 98, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* Compliance Section */
.compliance {
    background: var(--neutral-soft);
    padding: 40px 0;
    font-size: 0.9rem;
}

.compliance-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.compliance-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.compliance-links a {
    color: var(--primary);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 140px 0 80px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .footer-content {

        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section {
        padding: 60px 0;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999;
    transform: translateX(-100%);
    transition: var(--transition);
    padding: 80px 20px 40px;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Form Validation */
.form-error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.form-error.show {
    display: block;
}

.form-control.error {
    border-color: #e74c3c;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-section {
        grid-template-columns: 1fr;
        grid-template-areas:
            "services-title"
            "loans"
            "other-services";
    }

    .services-title {
        border-radius: 15px;
    }

    .other-services {
        grid-template-columns: 1fr;
    }

    .other-services .services-container.Insurance::after,
    .other-services .services-container.Connect::after {
        display: none;
    }
}

@media (max-width: 768px) {
    /* .services-title h1 {
        font-size: 1.8rem;
    }
    
    .services-container {
        padding: 20px;
    }
    
    .loans-icons {
        justify-content: center;
    } */

    .services-section {
        display: flex;
        flex-direction: column;
    }

    .services-title {
        display: none;
    }

    .services-title h1 {
        font-size: x-large;
        text-align: left;
    }

    .other-services {
        display: flex;
        flex-direction: column;
        margin-right: 0;
        padding: 0;
        justify-content: center;
        background-color: transparent;

    }

    .other-services .services-container {
        width: 100%;
        /* background-color: red; */
        position: relative;
        background-color: #00334d;
        padding-top: 0;
        margin: 1rem 0;
    }

    .right-content {
        display: none;
    }

    .why-us-block {
        border-radius: 0;
        width: 100%;
    }

    .why-us-container {
        flex-direction: column;
    }

    .why-card {
        width: 100%;
    }

    .contact-section {

        padding: 0 0 40px 0rem;

    }
}

@media (max-width: 480px) {
    /* .services-title h1 {
        font-size: 1.5rem;
    } */

    /* .loans-icons i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    } */

    /* .service-title {
        width: 160px;
        margin: -40px auto 20px;
    } */

    .title-content {
        padding: 12px 15px;
    }

    .title-content h2 {
        font-size: 1.1rem;
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* 
@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
} */
@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    50% {
        transform: translateY(-100px) scale(1.5);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 228, 226, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(1, 224, 98, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(1, 224, 98, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}