body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Preview Header */
.preview__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #17adb8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 1s ease-in-out;
}

.preview__header h1 {
    color: #fff;
    font-size: 6rem;
    font-weight: 700;
    margin: 0;
    animation: slideInUp 1s ease-out;
}

.preview__header.hide {
    transform: translateY(-100%);
}

#top-header {
    width: 100%;
    height: 50px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.social-media {
    display: flex;
    align-items: center;
}

.social-icon {
    margin: 0 10px;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #17adb8;
}

.left-links {
    display: flex;
    margin-left: 10px;
}

.left-links a {
    margin-right: 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.tc-note {
    color: #333;
    font-size: 14px;
    margin-right: 15px;
    text-decoration: none;
}

.tc-note:hover {
    color: #17adb8;
    text-decoration: underline;
}

.header-link {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin-right: 15px;
}

.header-link:hover {
    color: #17adb8;
    text-decoration: underline;
}

.right-info {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.address, .timing {
    margin-right: 15px;
    font-size: 14px;
    color: #333;
}

.social-media {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.address i, .timing i {
    font-size: 18px;
    margin-right: 5px;
    transition: color 0.3s;
}

.address i:hover, .timing i:hover {
    color: #17adb8;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 22px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.logo {
    position: absolute;
    left: 125px;
}

.logo img {
    height: 60px;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 10px;
    display: block;
    transition: all 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #17adb8;
    background-color: rgba(23, 173, 184, 0.1);
    border-radius: 5px;
    transform: scale(1.05);
}

/* Dropdown */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    min-width: 300px;
    z-index: 1000;
    padding: 10px 0;
    list-style: none;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu .dropdown {
    position: relative;
}

.dropdown-menu .dropdown ul {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    min-width: 200px;
    padding: 10px 0;
    z-index: 1001;
    list-style: none;
}

.dropdown-menu .dropdown ul.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-menu .dropdown a {
    padding: 10px 40px 10px 20px;
    display: block;
    color: #333;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.dropdown-menu .dropdown a::after {
    content: '>';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
}

.dropdown-menu .dropdown a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #17adb8;
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-menu .dropdown a:hover {
    color: white;
}

.dropdown-menu .dropdown a:hover::after {
    color: white;
}

.dropdown-menu .dropdown a:hover::before {
    width: 100%;
}

.dropdown-menu .dropdown ul li a {
    padding: 8px 20px;
    font-size: 16px;
    color: #333;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.dropdown-menu .dropdown ul li a::after {
    content: none;
}

.dropdown-menu .dropdown ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #17adb8;
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-menu .dropdown ul li a:hover {
    color: white;
}

.dropdown-menu .dropdown ul li a:hover::before {
    width: 100%;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.header-area {
    position: relative;
    background: linear-gradient(to bottom, #17adb8 0%, transparent 50%), url('Images/Slide 3.jpg') bottom center / 100% auto no-repeat;
    background-blend-mode: normal;
    height: calc(100vh - 50px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    overflow: hidden;
    perspective: 1000px;
}

.appside-header-01 {
    background-color: rgba(23, 173, 184, 0.8); /* Overlay with main color */
}

.shape-1, .shape-2, .shape-3 {
    position: absolute;
    z-index: 1;
}

.header-area .shape-1 {
    left: 1000px;
    top: 0;
    height: 100%;
    width: 300px;
    object-fit: cover;
    opacity: 1;
    z-index: 4;
    animation: shapeMove 8s infinite;
}

.shape-2 {
    top: 50%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    bottom: 10%;
    left: 20%;
    animation: float 10s ease-in-out infinite;
}

.header-right-image {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.header-right-image img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.header-inner {
    z-index: 3;
    position: relative;
    max-width: 600px;
    text-align: left; /* Maintain left alignment */
    margin-left: 125px;
    margin-bottom: 100px;
}

/* Banner Slider Styles */
.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide.next {
    transform: translateX(100%);
}

/* Slider Navigation Styles */
.slider-navigation {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.header-inner .title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header-inner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-wrapper {
    display: flex;
    gap: 20px;
}

.boxed-btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #17adb8;
    color: #fff;
    border: 2px solid #17adb8;
}

.boxed-btn:hover {
    background-color: #fff;
    color: #17adb8;
}

.boxed-btn.blank {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.boxed-btn.blank:hover {
    background-color: #fff;
    color: #17adb8;
}

.margin-top-30 {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .header-inner .title {
        font-size: 2.5rem;
    }
    .header-right-image {
        display: none;
    }
    .btn-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Loans Section Styles */
.loans-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.loans-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #17adb8;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.loans-subheader {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.loans-section.title-animated h2,
.loans-section.title-animated .loans-subheader {
    opacity: 1;
    transform: translateY(0);
}

.loan-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.loan-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
}

.loan-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.loan-card:hover {
    transform: translateY(-5px) rotateY(2deg);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    outline: 2px solid #17adb8;
    outline-offset: -2px;
}

.loan-card h3 {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.loan-card h3.animate-content,
.loan-card li.animate-content {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.loan-card li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.loan-card h3 {
    font-size: 1.5rem;
    color: #17adb8;
    margin-bottom: 20px;
    text-align: center;
}

.loan-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.loan-card li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.loan-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #17adb8;
    font-weight: bold;
}

.know-more-btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #17adb8;
    color: #fff;
    border: 2px solid #17adb8;
    margin-top: 20px;
    text-align: center;
}

.know-more-btn:hover {
    background-color: #fff;
    color: #17adb8;
}

/* Confidence Section Styles */
.confidence-section {
    padding: 80px 0;
    background-color: #fff;
}

.confidence-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0 20px 0 125px;
}

.confidence-content {
    flex: 1;
    padding-right: 40px;
    max-width: 625px;
}

.confidence-section h2 {
    text-align: left;
    font-size: 2.5rem;
    color: #17adb8;
    margin-bottom: 10px;
}

.confidence-text {
    text-align: left;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.confidence-text:last-of-type {
    font-weight: 600;
    font-size: 1.2rem;
    color: #17adb8;
}

.confidence-subheader {
    font-size: 1.5rem;
    color: #17adb8;
    margin-bottom: 20px;
    font-weight: 600;
}

.confidence-btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #17adb8;
    color: #fff;
    border: 2px solid #17adb8;
    margin-top: 10px;
}

.confidence-btn:hover {
    background-color: #fff;
    color: #17adb8;
}

.confidence-image {
    flex: 0 0 auto;
    position: relative;
    margin-right: 25px;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.image-wrapper img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-wrapper img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid #17adb8;
    border-radius: 14px;
    animation: rotateStroke 20s linear infinite;
}

@keyframes rotateStroke {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Our Process Section */
.process-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #17adb8;
}

.process-section .section-subheader {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.process-step {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #17adb8, #139aa3);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 3rem;
    color: #17adb8;
    margin-bottom: 20px;
    margin-top: 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #17adb8;
    font-size: 2rem;
    font-weight: bold;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background-color: #17adb8;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.stats-subtitle {
    font-size: 1.1rem;
    color: #f0f0f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(23, 173, 184, 0.3);
    background: #17adb8;
    border: 2px solid #17adb8;
    border-radius: 15px;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2) rotate(5deg);
    color: #fff;
    transition: all 0.4s ease;
}

.stat-item:hover .stat-content .stat-number {
    color: #fff;
}

.stat-item:hover .stat-content p {
    color: #fff;
}

.stat-item:hover .stat-description {
    color: #fff;
}

.stat-icon {
    font-size: 3rem;
    color: #17adb8;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.stat-content .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #17adb8;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.stat-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    transition: color 0.3s ease;
}

/* Our Team Section */
.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #17adb8;
}

.team-section .section-subheader {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.team-member.animate {
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.member-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #17adb8, #139aa3);
}

.member-placeholder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(23, 173, 184, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #333;
}

.member-position {
    color: #17adb8;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Latest News Section */
.news-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #17adb8;
}

.news-section .section-subheader {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.news-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.news-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #17adb8, #139aa3);
}

.news-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #17adb8;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    color: #17adb8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #139aa3;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: #fff;
}

.partners-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #17adb8;
}

.partners-section .section-subheader {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    border: 2px solid #17adb8;
}

.partner-logo.animate {
    opacity: 1;
    transform: translateY(0);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.partner-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .process-steps::before {
        display: none;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .team-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .step-number {
        position: static;
        transform: none;
        margin-bottom: 15px;
        display: inline-block;
    }

    .process-step {
        text-align: left;
        padding: 30px 20px;
    }

    .step-icon {
        margin-top: 0;
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .feature-item {
        padding: 25px;
    }

    .why-choose-us h2 {
        font-size: 2.3rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #17adb8;
}

.section-subheader {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(23, 173, 184, 0.3);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #17adb8;
    border-radius: 15px;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    color: #139aa3;
    transition: all 0.4s ease;
}

.feature-item:hover h3 {
    color: #17adb8;
    transition: color 0.3s ease;
}

.feature-item:hover p {
    color: #555;
    transition: color 0.3s ease;
}

.feature-icon {
    font-size: 3rem;
    color: #17adb8;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #17adb8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #17adb8 0%, #139aa3 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    margin-bottom: 60px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('Images/shape-1.png') no-repeat center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-icon {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.feature i {
    color: #fff;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.cta-btn.primary {
    background-color: #fff;
    color: #17adb8;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-btn.primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-btn.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn.secondary:hover {
    background-color: #fff;
    color: #17adb8;
    transform: translateY(-2px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ccc;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17adb8, #00d4aa);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.footer-section h3 i {
    margin-right: 10px;
    color: #17adb8;
    font-size: 1.2rem;
}

.footer-logo h3 {
    color: #17adb8;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #b8b8b8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #17adb8;
    font-weight: bold;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #17adb8;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: #17adb8;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 1rem;
    min-width: 16px;
}

.contact-item span {
    color: #b8b8b8;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    margin-top: 25px;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #17adb8 0%, #00d4aa 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(23, 173, 184, 0.4);
    z-index: 2;
}

.social-icons a:hover::before {
    opacity: 0.8;
}

.social-icons a:nth-child(1) {
    background: linear-gradient(135deg, #4267B2 0%, #365899 100%);
}

.social-icons a:nth-child(2) {
    background: linear-gradient(135deg, #1DA1F2 0%, #1991DB 100%);
}

.social-icons a:nth-child(3) {
    background: linear-gradient(135deg, #E4405F 0%, #DC2D4A 100%);
}

.social-icons a:nth-child(4) {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #17adb8;
}

/* Responsive Footer */
@media (max-width: 1199px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: left;
    }

    .contact-item i {
        margin-bottom: 5px;
        margin-right: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr; /* Single column for better mobile readability */
        gap: 25px;
    }

    .feature-item {
        padding: 25px 20px;
        text-align: left; /* Better for mobile reading */
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .feature-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .feature-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .why-choose-us {
        padding: 60px 0;
    }

    .why-choose-us h2 {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .section-subheader {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    /* Disable hover effects on mobile for better touch experience */
    .feature-item:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        background-color: #fff;
        border: 2px solid transparent;
        border-radius: 10px;
    }

    .feature-item:hover .feature-icon {
        transform: none;
        color: #17adb8;
    }

    .feature-item:hover h3,
    .feature-item:hover p {
        color: inherit;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Project Finance Section */
.project-finance-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.project-finance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2317adb8" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%2317adb8" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%2317adb8" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.project-finance-section .container {
    position: relative;
    z-index: 2;
}

.project-finance-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.project-finance-section h2 {
    font-size: 2.8rem;
    color: #17adb8;
    margin-bottom: 0;
    font-weight: 700;
    position: relative;
}

.project-finance-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #17adb8, #139aa3);
    border-radius: 2px;
}

.project-finance-section .section-subheader {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.finance-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.finance-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.finance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 173, 184, 0.1), transparent);
    transition: left 0.6s ease;
}

.finance-card:hover::before {
    left: 100%;
}

.finance-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(23, 173, 184, 0.2);
    border-color: #17adb8;
}

.finance-card .card-icon {
    font-size: 3.5rem;
    color: #17adb8;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.finance-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
    color: #139aa3;
}

.finance-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.finance-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.finance-card.highlight {
    background: linear-gradient(135deg, #17adb8 0%, #139aa3 100%);
    color: #fff;
    transform: scale(1.05);
}

.finance-card.highlight h3,
.finance-card.highlight p {
    color: #fff;
}

.finance-card.highlight .card-icon {
    color: #fff;
}

.leverage-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.leverage-stats .stat {
    text-align: center;
    flex: 1;
}

.leverage-stats .number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.leverage-stats .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.leverage-stats .arrow {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.finance-cta {
    text-align: center;
}

.finance-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #17adb8 0%, #139aa3 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(23, 173, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.finance-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.finance-btn:hover::before {
    left: 100%;
}

.finance-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(23, 173, 184, 0.4);
}

/* Healthcare Infrastructure Section - Redesigned */
.healthcare-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.healthcare-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(23, 173, 184, 0.1), rgba(19, 154, 163, 0.05));
    animation: float-shapes 20s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    bottom: 10%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes float-shapes {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

@keyframes shapeMove {
    0% { transform: translateX(-150px) rotateY(0deg) scale(1.2); }
    50% { transform: translateX(150px) rotateY(180deg) scale(1.2); }
    100% { transform: translateX(-150px) rotateY(360deg) scale(1.2); }
}

.healthcare-section .container {
    max-width: 1400px;
    position: relative;
    z-index: 2;
    padding-left: 125px;
    padding-right: 125px;
}

/* Hero Section */
.healthcare-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    padding: 60px 0;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #17adb8 0%, #139aa3 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(23, 173, 184, 0.3);
    animation: slideInLeft 1s ease-out;
}

.hero-badge i {
    font-size: 1.1rem;
}

.healthcare-hero h1 {
    font-size: 3.5rem;
    color: #17adb8;
    margin-bottom: 60px;
    font-weight: 700;
    line-height: 1.1;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.healthcare-hero p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(23, 173, 184, 0.15);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #17adb8;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.funding-calculator {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    max-width: 500px;
}

.funding-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17adb8, #139aa3, #17adb8);
}

.funding-calculator h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.calculator-input {
    margin-bottom: 20px;
    margin-right: 35px;
}

.calculator-input label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.calculator-input input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.calculator-input input:focus {
    outline: none;
    border-color: #17adb8;
    box-shadow: 0 0 0 3px rgba(23, 173, 184, 0.1);
}

.calculator-result {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.result-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #17adb8;
}

.calculate-btn {
    width: 100%;
    background: linear-gradient(135deg, #17adb8 0%, #139aa3 100%);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(23, 173, 184, 0.3);
}

/* Services Grid */
.services-grid {
    margin-bottom: 120px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.8rem;
    color: #17adb8;
    margin-bottom: 0;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 173, 184, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(23, 173, 184, 0.15);
    border-color: #17adb8;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17adb8 0%, #139aa3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-wrapper i {
    font-size: 2.5rem;
    color: #fff;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features span {
    font-size: 0.85rem;
    color: #17adb8;
    font-weight: 500;
    padding: 4px 12px;
    background: rgba(23, 173, 184, 0.1);
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

/* Process Timeline */
.process-timeline {
    margin-bottom: 120px;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-header h2 {
    font-size: 2.8rem;
    color: #17adb8;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #17adb8 0%, #139aa3 50%, #17adb8 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #17adb8 0%, #139aa3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(23, 173, 184, 0.3);
    z-index: 2;
    position: relative;
}

.step-number {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin: 0 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex: 1;
    max-width: 400px;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(23, 173, 184, 0.15);
    border-color: #17adb8;
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.timeline-duration {
    font-size: 0.85rem;
    color: #17adb8;
    font-weight: 600;
    background: rgba(23, 173, 184, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* Success Stories */
.success-stories {
    margin-bottom: 120px;
}

.stories-header {
    text-align: center;
    margin-bottom: 60px;
}

.stories-header h2 {
    font-size: 2.8rem;
    color: #17adb8;
    margin-bottom: 15px;
    font-weight: 700;
}

.stories-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(23, 173, 184, 0.15);
    border-color: #17adb8;
}

.story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17adb8 0%, #139aa3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.story-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.story-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.story-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-metrics {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.story-metrics span {
    font-size: 0.85rem;
    color: #17adb8;
    font-weight: 500;
    padding: 4px 12px;
    background: rgba(23, 173, 184, 0.1);
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
}

/* CTA Section */
.healthcare-cta {
    background: linear-gradient(135deg, #17adb8 0%, #139aa3 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.cta-background {
    padding: 80px 60px;
    position: relative;
    z-index: 2;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    margin-bottom: 40px;
}

.cta-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: #fff;
    color: #17adb8;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn.secondary:hover {
    background: #fff;
    color: #17adb8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-btn.tertiary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-btn.tertiary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .healthcare-hero {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .stories-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-item .timeline-content {
        text-align: left !important;
        margin-left: 30px;
        margin-right: 0;
    }

    .timeline-marker {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .healthcare-section {
        padding: 80px 0;
    }

    .healthcare-hero {
        padding: 40px 0;
        margin-bottom: 80px;
    }

    .healthcare-hero h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .funding-calculator {
        padding: 30px 25px;
    }

    .services-grid,
    .process-timeline,
    .success-stories {
        margin-bottom: 80px;
    }

    .services-header h2,
    .timeline-header h2,
    .stories-header h2 {
        font-size: 2.3rem;
    }

    .services-container,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-content {
        margin: 0 20px;
        padding: 25px 20px;
    }

    .cta-background {
        padding: 50px 30px;
    }

    .cta-content h2 {
        font-size: 2.3rem;
    }

    .cta-features {
        gap: 20px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .healthcare-hero h1 {
        font-size: 2.4rem;
    }

    .funding-calculator {
        padding: 25px 20px;
    }

    .service-item,
    .story-card {
        padding: 30px 20px;
    }

    .timeline-content {
        padding: 20px 15px;
    }

    .cta-background {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Why Choose Us Mobile Enhancements */
    .why-choose-us {
        padding: 50px 0;
    }

    .why-choose-us h2 {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .section-subheader {
        font-size: 0.95rem;
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .features-grid {
        gap: 20px;
        padding: 0 15px;
    }

    .feature-item {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Disable hover effects on small mobile for better touch experience */
    .feature-item:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        background-color: #fff;
        border: 2px solid transparent;
        border-radius: 10px;
    }

    .feature-item:hover .feature-icon {
        transform: none;
        color: #17adb8;
    }

    .feature-item:hover h3,
    .feature-item:hover p {
        color: inherit;
    }
}

/* MSME Takeover Section */
.msme-takeover-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.msme-takeover-section h2 {
    margin-bottom: 60px;
}

.msme-takeover-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(23, 173, 184, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.msme-takeover-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(19, 154, 163, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.takeover-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.takeover-header .alert-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.takeover-header h2 {
    font-size: 2.8rem;
    color: #17adb8;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.takeover-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #17adb8, #139aa3);
    border-radius: 2px;
}

.takeover-subtitle {
    font-size: 1.3rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.takeover-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.takeover-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.takeover-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 173, 184, 0.1), transparent);
    transition: left 0.6s ease;
}

.takeover-card:hover::before {
    left: 100%;
}

.takeover-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(23, 173, 184, 0.2);
    border-color: #17adb8;
}

.takeover-card .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.takeover-card .card-header i {
    font-size: 2.5rem;
    color: #17adb8;
    transition: all 0.3s ease;
}

.takeover-card:hover .card-header i {
    transform: scale(1.2) rotate(5deg);
    color: #139aa3;
}

.takeover-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.rate-display {
    margin: 20px 0;
}

.rate {
    font-size: 3rem;
    font-weight: 700;
    color: #17adb8;
    display: block;
}

.period {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.benefit-highlight {
    margin: 20px 0;
}

.highlight-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    display: block;
}

.highlight-period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.eligibility-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.eligibility-list span {
    background: #f0f8ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #17adb8;
    font-weight: 500;
}

.takeover-cta {
    background: linear-gradient(135deg, #17adb8 0%, #139aa3 100%);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(23, 173, 184, 0.3);
}

.takeover-cta .cta-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.takeover-cta .cta-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.takeover-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.takeover-btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.takeover-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.takeover-btn:hover::before {
    left: 100%;
}

.takeover-btn.primary {
    background: #fff;
    color: #17adb8;
    border: 2px solid #fff;
}

.takeover-btn.primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.takeover-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.takeover-btn.secondary:hover {
    background: #fff;
    color: #17adb8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .project-finance-section,
    .healthcare-section,
    .msme-takeover-section {
        padding: 40px 0;
    }

    .project-finance-section h2,
    .healthcare-text h2,
    .takeover-header h2 {
        font-size: 2.2rem;
    }

    .project-finance-section h2::after {
        width: 60px;
    }

    .finance-content,
    .takeover-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .healthcare-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .healthcare-features .feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .leverage-stats {
        flex-direction: column;
        gap: 15px;
    }

    .leverage-stats .arrow {
        transform: rotate(90deg);
    }

    .takeover-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .eligibility-list {
        justify-content: center;
    }

    .eligibility-list span {
        margin: 5px;
    }

    /* Healthcare Timeline Responsive */
    .funding-process {
        padding: 20px 0;
    }

    .funding-process::before {
        left: 30px;
    }

    .process-step {
        margin-bottom: 40px;
    }

    .process-step.left,
    .process-step.right {
        justify-content: flex-start;
        text-align: left;
        padding-left: 60px;
        padding-right: 20px;
    }

    .process-step.left .step-content,
    .process-step.right .step-content {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    .step-connector {
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* ===== MOBILE RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    /* Top Header Mobile */
    #top-header {
        height: auto;
        padding: 10px 15px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .left-links {
        order: 1;
        text-align: left;
        align-items: flex-start;
        width: 100%;
    }

    .right-info {
        order: 2;
        flex-direction: column;
        gap: 5px;
        text-align: left;
        align-items: flex-start;
        width: 100%;
    }

    .address, .timing {
        font-size: 0.8rem;
        text-align: left;
    }

    .social-media {
        justify-content: flex-start;
        align-items: center;
        margin-left: 0;
    }

    /* Mobile Navigation */
    .navbar {
        padding: 15px 20px;
        position: relative;
    }

    .logo {
        position: static;
        margin-right: auto;
    }

    .logo img {
        height: 50px;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-center {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        box-shadow: none;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-center.mobile-menu-open {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 30px;
        max-width: 400px;
        margin: 0 auto;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(23, 173, 184, 0.1);
    }

    .nav-menu a {
        padding: 18px 0;
        font-size: 18px;
        width: 100%;
        border-radius: 0;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(23, 173, 184, 0.08);
        color: #17adb8;
        transform: none;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        display: none;
        transform: none;
        box-shadow: none;
        background: rgba(23, 173, 184, 0.05);
        min-width: auto;
        padding: 0;
        margin-left: 20px;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .dropdown-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu li {
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu a {
        padding: 12px 0;
        font-size: 14px;
    }

    .dropdown-menu .dropdown ul {
        position: static;
        display: none;
        transform: none;
        background: rgba(23, 173, 184, 0.03);
        margin-left: 15px;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .dropdown-menu .dropdown ul.show {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    /* Header Area Mobile */
    .header-area {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
        text-align: center;
        background-position: center center;
        background-size: cover;
        background-attachment: scroll; /* Better performance on mobile */
    }

    .header-inner {
        padding: 0 20px;
        margin-left: 0;
        margin-bottom: 0;
        text-align: center;
        max-width: 100%;
    }

    .header-inner .title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .header-inner p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .btn-wrapper {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 30px;
    }

    .banner-slider {
        justify-content: center;
    }

    .slide {
        justify-content: center;
    }

    /* Hide decorative shapes on mobile for better performance */
    .header-area .shape-1 {
        display: none;
    }

    /* Adjust slider navigation for mobile */
    .slider-navigation {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .slider-dots {
        display: flex;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: background 0.3s;
    }

    .dot.active {
        background: #fff;
    }

    .nav-btn {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
    }

    /* Confidence Section Mobile */
    .confidence-section {
        padding: 60px 0;
    }

    .confidence-section .container {
        flex-direction: column;
        padding: 0 20px;
        gap: 40px;
        align-items: center;
    }

    .confidence-content {
        padding-right: 0;
        text-align: center;
        max-width: 100%;
    }

    .confidence-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .confidence-text {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
    }

    .confidence-text:last-of-type {
        font-size: 1.1rem;
    }

    .confidence-subheader {
        font-size: 1.3rem;
        text-align: center;
    }

    .confidence-btn {
        padding: 14px 30px;
        font-size: 1rem;
        margin-top: 20px;
    }

    .confidence-image {
        margin-right: 0;
        display: flex;
        justify-content: center;
    }

    .image-wrapper img:hover {
        transform: none; /* Disable hover effects on mobile for better performance */
        box-shadow: none;
    }

    /* Loans Section Mobile */
    .loans-section {
        padding: 60px 0;
    }

    .loans-section h2 {
        font-size: 2rem;
    }

    .loans-subheader {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .loan-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on mobile */
        gap: 20px;
        padding: 0 20px;
    }

    .loan-card {
        padding: 20px;
    }

    .loan-card h3 {
        font-size: 1.1rem;
    }

    .loan-card ul {
        text-align: left;
    }

    .loan-card li {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .know-more-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin-top: 15px;
    }

    .image-wrapper::before {
        display: none; /* Hide animated border on mobile for better performance */
    }
    }

    .btn-wrapper .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Preview Header Mobile */
    .preview__header h1 {
        font-size: 3rem;
    }

    /* General Mobile Improvements */
    .container {
        padding: 0 15px;
    }

    h1, h2, h3 {
        line-height: 1.3;
    }

    /* Touch-friendly buttons */
    button, .btn, a.cta-btn {
        min-height: 44px;
        padding: 12px 20px;
    }

    /* Mobile spacing */
    section {
        padding: 40px 0;
    }

    /* Mobile forms */
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .preview__header h1 {
        font-size: 2.5rem;
    }

    .header-inner .title {
        font-size: 1.8rem;
    }

    .header-inner p {
        font-size: 0.9rem;
    }

    .btn-wrapper .boxed-btn {
        width: 180px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .slider-navigation {
        bottom: 20px;
        gap: 10px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
    }

    .confidence-section h2 {
        font-size: 1.8rem;
    }

    .confidence-text {
        font-size: 0.95rem;
    }

    .confidence-subheader {
        font-size: 1.2rem;
    }

    .image-wrapper img {
        width: 250px;
        height: 250px;
    }

    /* Loans Section Extra Small Screens */
    .loan-cards {
        grid-template-columns: 1fr; /* 1 card per row on very small screens */
        gap: 15px;
        padding: 0 15px;
    }

    .loan-card {
        padding: 15px;
    }

    /* Stack everything vertically on very small screens */
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}
