/* Global Styles */
:root {
    --primary-color: #2B59FF;
    --secondary-color: #1E1E1E;
    --text-color: #333333;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --scrollbar-bg: #f1f1f1;
    --scrollbar-thumb: #19469B;
    --scrollbar-thumb-hover: #2B59FF;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



body {
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 100px;
}

/* Reset padding for home page */
body.home-page {
    padding-top: 0;
}

/* Default body padding for other pages */
body:not(.home-page) {
    padding-top: 80px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: #19469B;
}

/* Transparent header for home page only */
.home-page header {
    background: transparent;
}

.home-page header.scrolled {
    background: #19469B;
}

/* Navbar styles */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

/* Navigation links */
.navbar-nav {
    gap: 10px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 16px !important;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-link:hover, 
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

/* Contact Button */
.contact-btn {
    background: #E06C17 !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease !important;
}

.contact-btn:hover {
    background: #ff7b1d !important;
    transform: translateY(-1px);
}

/* .contact-btn::before {
    content: '\F4DE';
    font-family: 'bootstrap-icons';
    font-size: 1.1rem;
} */

/* Mobile menu button */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    background: transparent !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

/* Mobile menu styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #19469B;
        padding: 15px;
        margin: 10px -12px -15px;
        border-radius: 0 0 8px 8px;
    }

    .navbar-nav {
        gap: 5px;
    }

    .nav-link {
        padding: 8px 16px !important;
    }

    .contact-btn {
        margin-top: 5px;
        justify-content: center;
    }

    body:not(.home-page) {
        padding-top: 70px;
    }
}

/* Hero Section */
.hero-section {
    padding-top: 0;
    margin-top: 0;
    padding: 8rem 0 6rem;
    background: linear-gradient(rgba(4, 15, 35, 0.8), rgba(4, 15, 35, 0.8)), url('../images/banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    color: var(--white);
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-size: 60px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-section h1 span {
    font-weight: 600;
    color: #E37D32;

}

.hero-section p {
    font-size: 18px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1A46E5;
    border-color: #1A46E5;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 6rem 0 4rem;
    }

    .hero-section h1 {
        font-size: 45px;
    }

    .section-title {
        font-size: 35px;
    }

    .nav-link {
        margin: 5px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: auto;
        padding: 120px 0 60px;
    }

    .hero-section h1 {
        font-size: 32px;
        text-align: center;
    }

    .hero-section p {
        font-size: 16px;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .about-icon {
        margin: 0 auto;
        margin-top: 20px;
    }

    p.icon-text {
        text-align: center;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .nav-link {
        text-align: center;
        margin: 8px 15px;
    }

    .brand-logos {
        flex-direction: column;
        gap: 20px;
    }

    .brand-logos p {
        text-align: center;
    }

    ul li {
        text-align: left;
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .navbar-brand img {
        height: 50px;
    }

    .campaigns-section,
    .features-section {
        padding: 40px 0;
    }
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background-color: var(--white);
    background-image: url('../images/about.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 40px;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-title span {
    font-weight: 600;
    background: linear-gradient(to right, #19469B, #2B59FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666666;
}

ul li {
    font-size: 15px;
}

.about-icon {
    width: 90px;
    height: 90px;
    background-color: #E7EEF7;
    border-radius: 50%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon img {
    width: 50px;
}

p.icon-text {
    margin-top: 10px;
    color: #1E1E1E;
    font-size: 15px;
    font-weight: 500;
}

.campaigns-section {
    background-color: #F0F6FF;
    padding: 70px 0px 5px;
}

.features-section {
    background-color: #fff;
    padding: 60px 0px 15px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logos {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logos p {
    font-size: 13px;
    font-weight: 600;
    margin-top: 20px;
}

.btn-started {
    color: #fff;
    font-weight: 600;
    padding: 0.9rem 2rem !important;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #F28839, #E06C17);
    font-size: 15px;
    border-radius: 5px;
}

.transfer-section {
    background-color: #fff;
    padding: 70px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.transfer-section h2 {
    font-size: 40px;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.transfer-section p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 1rem;
}

.transfer-section button {
    margin-top: 1rem;
}

h2.transfer-title {
    font-size: 40px;
    font-weight: 600;
    color: #E06C17;
    margin-bottom: 1rem;
}

.transfer-section p {
    font-size: 15px;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Footer Styles */
.footer-section {
    background-image: url('../images/footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
    width: 100%;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.footer-section > * {
    position: relative;
    z-index: 2;
}

.footer-section img {
    margin-bottom: 20px;
    max-width: 270px;
    height: auto;
}

.social-links {
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-links .social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links .social-icon:first-child {
    margin-right: 8px;
    color: #E06C17;
    font-size: 0.85rem;
}

.social-links .social-icon i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links .social-icon:hover i {
    background: #E06C17;
    color: #fff;
    transform: translateY(-2px);
}

.footer-links {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links .social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.footer-links .social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links .social-icon:hover {
    color: #E06C17;
}

.footer-links .divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
}

.copy-right {
    text-align: center;
    margin-top: 30px;
}

.copy-right p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-links .social-icon:first-child {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .footer-links .social-icons {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-links .divider {
        display: none;
    }

    .footer-links .social-icon {
        padding: 4px 0;
    }
}

/* Modal Redesign */
.modal-dialog {
    max-width: 400px;
}

.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    overflow: hidden;
}

.modal-header {
    background: #19469B;
    padding: 20px;
    border: none;
    position: relative;
}

.modal-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

.btn-close {
    background-color: transparent;
    padding: 8px;
    margin: 0;
    opacity: 1;
    position: absolute;
    right: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.btn-close:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
}

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

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 6px;
}

.form-control {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: #19469B;
    box-shadow: none;
    background: #fff;
}

textarea.form-control {
    min-height: 100px;
    resize: none;
}

.modal .btn-started {
    margin-top: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    background: #19469B;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}

.modal .btn-started:hover {
    background: #2B59FF;
    transform: translateY(-2px);
}

.modal.fade .modal-dialog {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

/* Content Pages Modern Styling */
.content-section {
    padding: 100px 0 60px;
    min-height: calc(100vh - 400px);
    background-color: #fff;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E1E1E;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #E06C17;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.content-block h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1E1E1E;
    margin: 35px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.content-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.content-block ul {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style: none;
}

.content-block ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.content-block ul li:before {
    content: '•';
    color: #E06C17;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, rgba(25, 70, 155, 0.03), rgba(43, 89, 255, 0.03));
    transform: skewY(-5deg);
    transform-origin: top left;
}

.section-title {
    color: #19469B;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Office Cards */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.office-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.office-card.featured {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid rgba(25, 70, 155, 0.1);
    transform: translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #19469B, #2B59FF);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.office-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #19469B, #2B59FF);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transform: rotate(45deg);
}

.office-icon i {
    color: #fff;
    font-size: 24px;
    transform: rotate(-45deg);
}

.office-card h3 {
    color: #19469B;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.office-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 16px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    color: #19469B;
    font-size: 0.85rem;
    text-decoration: none;
    gap: 6px;
    transition: all 0.2s ease;
}

.location-link:hover {
    color: #2B59FF;
    text-decoration: none;
}

/* Quick Contact */
.quick-contact {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    justify-content: center;
    gap: 48px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quick-contact-item i {
    font-size: 24px;
    color: #19469B;
}

.quick-contact-item h4 {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-contact-item p {
    font-size: 1.1rem;
    color: #19469B;
    margin: 4px 0 0;
    font-weight: 600;
}

/* Contact Form */
.form-section-title {
    color: #19469B;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 24px;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper .form-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #19469B;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form-wrapper .form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    background: #f8f9fa;
    color: #495057;
    transition: all 0.2s ease;
}

.contact-form-wrapper .form-control:focus {
    border-color: #19469B;
    box-shadow: 0 0 0 3px rgba(25, 70, 155, 0.1);
    background: #fff;
}

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

.contact-form-wrapper .btn-started {
    margin-top: 8px;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .quick-contact {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

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

    .offices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .office-card {
        padding: 24px 20px;
    }

    .quick-contact {
        padding: 24px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
    }
    to {
        transform: scale(1);
    }
}

/* Scroll Animation Classes */
.scroll-animation {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.scroll-delay-1 {
    animation-delay: 0.2s;
}

.scroll-delay-2 {
    animation-delay: 0.4s;
}

.scroll-delay-3 {
    animation-delay: 0.6s;
}

/* Enhanced Hover Effects */
.content-block {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.contact-item i {
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
    color: #E06C17;
}

.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224,108,23,0.1);
}

.btn-started {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-started: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: 0.5s;
}

.btn-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224,108,23,0.2);
}

.btn-started:hover:before {
    left: 100%;
}

.page-title {
    transition: all 0.3s ease;
}

.page-title:hover:after {
    width: 80px;
    background-color: #c85a14;
}

/* Content Block List Items */
.content-block ul li {
    transition: all 0.3s ease;
}

.content-block ul li:hover {
    transform: translateX(5px);
    color: #333;
}

.content-block ul li:hover:before {
    transform: scale(1.2);
}

/* Social Icons */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #E06C17;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Add scroll-margin-top for anchor links */
[id] {
    scroll-margin-top: 100px;
}

/* WOW.js Animation Styles */
.wow {
    visibility: hidden;
}

.animate__animated {
    animation-duration: 1s;
}

.animate__fadeInUp {
    animation-duration: 0.8s;
}

.animate__fadeInLeft,
.animate__fadeInRight {
    animation-duration: 0.9s;
}

.animate__fadeIn {
    animation-duration: 1.2s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-bg);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 5px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-bg);
}

/* Premium Modal Design 2.0 */
.modal-backdrop {
    background: linear-gradient(135deg, rgba(25, 70, 155, 0.4), rgba(43, 89, 255, 0.4));
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
}

.modal-backdrop.show {
    opacity: 1;
}

.modal-dialog {
    max-width: 380px;
}

.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
    background: #fff;
    overflow: hidden;
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    /* background: linear-gradient(135deg, #19469B, #2B59FF); */
    z-index: 0;
}

.modal-header {
    border: none;
    padding: 24px 20px 16px;
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 auto;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-title i {
    font-size: 1rem;
    margin-top: -2px;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    margin-top: 4px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-subtitle i {
    font-size: 0.8rem;
    margin-top: -1px;
}

.btn-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 50%;
    opacity: 1;
    filter: brightness(0) invert(1);
    transition: all 0.2s ease;
    transform: scale(0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.8) rotate(90deg);
}

/* Form Styles */
.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #19469B;
    margin-bottom: 4px;
    display: block;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-control {
    border: 1px solid #E8EDF5;
    border-radius: 8px;
    padding: 8px 32px 8px 12px;
    font-size: 0.78rem;
    transition: all 0.2s ease;
    background: #F8FAFD;
    color: #2C3E50;
    font-weight: 400;
    height: auto;
    line-height: 1.5;
}

.form-control::placeholder {
    color: #A0AEC0;
    font-size: 0.75rem;
}

/* Form Icons Fix */
.form-group i {
    position: absolute;
    right: 12px;
    top: 32px;
    color: #A0AEC0;
    font-size: 0.85rem;
    opacity: 0.8;
    pointer-events: none;
}

.form-group.message-group i {
    display: none;
}

/* Form Button */
.modal .btn-started {
    width: 100%;
    padding: 9px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.78rem;
    background: linear-gradient(135deg, #19469B, #2B59FF);
    border: none;
    color: #fff;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    margin-top: 4px;
    height: 36px;
}

/* Contact Container Styles */
.contact-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Contact Info Panel */
.contact-info-panel {
    background: linear-gradient(135deg, #19469B, #2B59FF);
    color: #fff;
    padding: 48px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-header {
    position: relative;
    z-index: 2;
}

.contact-info-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-info-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-info-content {
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info-item i {
    font-size: 20px;
    color: #fff;
}

.contact-info-item div {
    display: flex;
    flex-direction: column;
}

.contact-info-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    margin: 0;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-social {
    margin-top: 48px;
    position: relative;
    z-index: 2;
}

.contact-social span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

.contact-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E") center;
    opacity: 0.1;
    z-index: 1;
}

/* Contact Form Panel */
.contact-form-panel {
    padding: 48px;
    background: #fff;
}

.form-floating {
    margin-bottom: 0;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    height: calc(3.5rem + 2px);
    font-size: 0.9rem;
    padding: 1.625rem 0.75rem 0.625rem;
    transition: all 0.2s ease;
}

.form-floating > textarea.form-control {
    height: 150px;
    resize: none;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: #19469B;
    box-shadow: 0 0 0 3px rgba(25, 70, 155, 0.1);
}

.form-floating > label {
    padding: 1rem 0.75rem;
    color: #6c757d;
    font-size: 0.85rem;
}

.form-check {
    margin: 8px 0;
}

.form-check-label {
    font-size: 0.85rem;
    color: #6c757d;
}

.btn-started {
    padding: 12px 32px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-started i {
    transition: transform 0.3s ease;
}

.btn-started:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .contact-info-panel {
        border-radius: 20px 20px 0 0;
        padding: 32px 24px;
    }

    .contact-form-panel {
        padding: 32px 24px;
    }

    .contact-info-content {
        margin-top: 32px;
    }

    .contact-social {
        margin-top: 32px;
    }
}

/* Privacy Policy and Terms & Conditions Pages */
.policy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: calc(100vh - 400px);
}

.policy-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.policy-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #19469B, #E06C17);
    border-radius: 2px;
}

.policy-header h1 {
    color: #19469B;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
    color: #19469B;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(25, 70, 155, 0.1);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-type: none;
}

.policy-content ul li {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #E06C17;
    border-radius: 50%;
}

.policy-content a {
    color: #E06C17;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.policy-content a:hover {
    color: #19469B;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 50px 0;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 25px;
        margin: 0 15px;
    }

    .policy-content h2 {
        font-size: 1.3rem;
    }

    .policy-content ul li {
        padding-left: 20px;
    }
}

/* Contact Form Styles */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.8rem 1rem;
    height: auto;
    font-size: 0.95rem;
}

.contact-form .form-control:focus {
    border-color: #19469B;
    box-shadow: 0 0 0 0.2rem rgba(25, 70, 155, 0.15);
}

.contact-form .form-floating label {
    padding: 1rem;
    color: #6c757d;
}

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

.contact-form .btn-primary {
    background: #19469B;
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #E06C17;
    transform: translateY(-1px);
}

.contact-form .form-check-input:checked {
    background-color: #19469B;
    border-color: #19469B;
}

.contact-form .form-check-label {
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-family: 'Inter', sans-serif;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease;
}

.whatsapp-icon {
    background: #25D366;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.whatsapp-icon i {
    color: #fff;
    font-size: 1.6rem;
}

.whatsapp-text {
    background: #fff;
    color: #1a1a1a;
    padding: 12px 25px 12px 60px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    position: absolute;
    left: 25px;
    white-space: nowrap;
    transform: translateX(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.whatsapp-text::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 2px;
}

.whatsapp-status {
    width: 12px;
    height: 12px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    top: -2px;
    right: -2px;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.05);
}

.whatsapp-btn:hover .whatsapp-text {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.whatsapp-widget {
    animation: float 3s ease-in-out infinite;
}

/* Mobile styles */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
        animation: none;
    }

    .whatsapp-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }

    .whatsapp-icon i {
        font-size: 1.4rem;
    }

    .whatsapp-text {
        padding: 10px 20px 10px 50px;
        font-size: 0.85rem;
        left: 20px;
    }
}