
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 17px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #3A8DFF, #006DFF, #00C2FF);

    transition: width 0.4s ease, left 0.4s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #3A8DFF;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.appointment-btn {
    background: linear-gradient(90deg, #3A8DFF, #00C2FF);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    font-size: 15px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(224, 80, 98, 0.3);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.contact-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: #3E464C;
}

.contact-text strong {
    color: #E05062;
    font-size: 14px;
}








/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8f9 50%, #e8f4f5 100%);
    position: relative;
    overflow: hidden;
    min-height: 95vh;
}

.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #67a5f1, transparent);
    border-radius: 50%;
    z-index: 0;
    animation: floatBg 8s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #5af1cc, transparent);
    border-radius: 50%;
    z-index: 0;
    animation: floatBg 10s ease-in-out infinite;
}

.hero-text {
    max-width: 48%;
    z-index: 1;
    animation: slideInLeft 1.2s ease forwards;
}

.tagline {
    color: #3A8DFF;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3.6rem;
    margin: 10px 0 20px;
    line-height: 1.2;
    color: #3E464C;
}

.hero-text h1 span {
    color: #50aee0;
}

.hero-text p {
    font-size: 1.15rem;
    margin: 20px 0 35px;
    color: #3E464C;
    line-height: 1.6;
}

.cta-btn {
    background: linear-gradient(90deg, #3A8DFF, #00C2FF);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(224, 80, 98, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(224, 80, 98, 0.4);
}

/* Hero Image */
.hero-image {
    width: 48%;
    z-index: 1;
    animation: slideInRight 1.2s ease forwards;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* 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); }
}

@keyframes floatBg {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}


                                    /* HOME ABOUT US SECTION */

                                    /* About Section */
/* About Section */
.about-section {
    height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 7%;
    background: #ffffff;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
    flex-wrap: wrap;
    width: 100%;
}

/* Larger Circular Image */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeInLeft 1.2s ease forwards;
}

.about-image img {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid #3875b7;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    animation: floatImg 6s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Text Content */
.about-text {
    flex: 1;
    animation: fadeInRight 1.2s ease forwards;
}

.section-subtitle {
    font-size: 4.6rem;
    font-weight: bold;
    color: #3A8DFF;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.4rem;
    color: #3E464C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.about-btn {
    display: inline-block;
    background: linear-gradient(90deg, #3A8DFF, #00C2FF);
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(224, 80, 98, 0.3);
}

.about-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(224, 80, 98, 0.4);
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image img {
        width: 300px;
        height: 300px;
    }

    .section-title {
        font-size: 2.4rem;
    }
}


                                 /* HOME PAGES SERVICE CARDS */

/* Services Section */
.services-section {
    padding: 90px 8%;
     background: linear-gradient(135deg, #ffffff 0%, #f4f8f9 50%, #e8f4f5 100%);
    text-align: center;
}

.section-subtitle {
    font-size: 1.7rem;
    font-weight: bold;
    color: #3A8DFF;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title {
    font-size:2,73rem;
    color: #444748;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Service Card */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-decoration: none;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Title Overlay - Only text, no gradient until hover */
.service-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 10px;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.4);
    text-align: center;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card:hover img {
    transform: scale(1.08);
}

/* Individual hover gradients */
.service-card.loan:hover .service-title {
    background: linear-gradient(180deg, rgba(68,171,182,0.2) 0%, rgba(68,171,182,0.9) 100%);
}
.service-card.insurance:hover .service-title {
    background: linear-gradient(180deg, rgba(224,80,98,0.2) 0%, rgba(224,80,98,0.9) 100%);
}
.service-card.investment:hover .service-title {
    background: linear-gradient(180deg, rgba(253,196,70,0.2) 0%, rgba(253,196,70,0.9) 100%);
}
.service-card.wealth:hover .service-title {
   background: linear-gradient(180deg, rgba(253,196,70,0.2) 0%, rgba(253,196,70,0.9) 100%);
}
.service-card.digital:hover .service-title {
    background: linear-gradient(180deg, rgba(44,150,160,0.2) 0%, rgba(44,150,160,0.9) 100%);
}
.service-card.debt:hover .service-title {
    background: linear-gradient(180deg, rgba(200,80,120,0.2) 0%, rgba(200,80,120,0.9) 100%);
}

/* Bottom Text */
.services-bottom-text {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-bottom-text p {
    font-size: 1.05rem;
    color: #3E464C;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 240px;
    }
}


                     /* WHY CHOOSE US SECTION */

/* Why Choose Us Section */
.why-choose-us {
    padding: 90px 8%;
    background: #ffffff;
    text-align: center;
}

/* Header */
.wcu-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    color: #3A8DFF;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    color: #3E464C;
    margin-bottom: 15px;
}

.title-underline {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #3A8DFF, #006DFF, #00C2FF);

    margin: 0 auto 20px;
    border-radius: 2px;
}

.wcu-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Grid Layout */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.wcu-card {
    background: white;
    padding: 35px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    border-top: 5px solid transparent;
}

.wcu-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.wcu-card h3 {
    font-size: 1.4rem;
    color: #3E464C;
    margin-bottom: 12px;
}

.wcu-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Hover Effects */
.wcu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wcu-grid {
        grid-template-columns: 1fr;
    }
}







                          /* TESTIMONIALS */
                          /* Testimonials Section */



.testimonials {
    padding: 90px 8%;
     background: linear-gradient(135deg, #ffffff 0%, #f4f8f9 50%, #e8f4f5 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative Shapes */
.testimonials::before,
.testimonials::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.15;
}
.testimonials::before {
    width: 250px;
    height: 250px;
    background: #3A8DFF;
    top: -60px;
    left: -80px;
}
.testimonials::after {
    width: 300px;
    height: 300px;
    background: #E05062;
    bottom: -80px;
    right: -100px;
}

/* Header */
.testimonials-header {
    max-width: 750px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    color: #3A8DFF;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    color: #3E464C;
    margin-bottom: 15px;
}

.title-underline {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #3A8DFF, #006DFF, #00C2FF);

    margin: 0 auto 20px;
    border-radius: 2px;
}

.testimonials-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

/* Card */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* Client Image */
.client-img {
    width: 90px;
    height: 90px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #3A8DFF, 0 0 15px rgba(68,171,182,0.6);
    transition: all 0.4s ease;
}
.testimonial-card:hover .client-img {
    box-shadow: 0 0 0 4px #E05062, 0 0 15px rgba(224,80,98,0.6);
}

/* Testimonial Content */
.testimonial-content {
    background: #f8fbfc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}
.testimonial-content::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #f8fbfc transparent transparent transparent;
}
.testimonial-content p {
    font-size: 1rem;
    color: #3E464C;
    line-height: 1.5;
    font-style: italic;
}

/* Client Info */
.client-info h4 {
    font-size: 1.2rem;
    color: #E05062;
    margin-bottom: 3px;
}
.client-info span {
    font-size: 0.95rem;
    color: #777;
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}





/* FAQ Section */
.faq-section {
    padding: 90px 8%;
    background: #ffffff;
    position: relative;
    text-align: center;
}

.faq-header {
    max-width: 750px;
    margin: 0 auto 50px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    color: #3A8DFF;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    color: #3E464C;
    margin-bottom: 15px;
}

.title-underline {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #3A8DFF, #006DFF, #00C2FF);

    margin: 0 auto 20px;
    border-radius: 2px;
}

.faq-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* FAQ Items */
.faq-container {
    max-width: 900px;
    margin: auto;
    text-align: left;
     /* background: linear-gradient(135deg, #ffffff 0%, #f4f8f9 50%, #e8f4f5 100%); */
}

.faq-item {
    background: #f8fbfc;
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    position: relative;
}

.faq-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(90deg, #3A8DFF, #00C2FF);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 1.15rem;
    flex: 1;
    color: #3E464C;
    margin: 0;
}

.faq-question i {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: #3A8DFF;
}

.faq-item.active .faq-question {
    border-left: 5px solid #3A8DFF;
    background: #ffffff;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: #E05062;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: white;
    padding: 0 20px;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px 20px;
}

.faq-answer p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }



 
                                 /* Blogs */


                                 /* Blogs Section */
.blogs-section {
    padding: 90px 8%;
    background: #ffffff;
    text-align: center;
}

/* Header */
.blogs-header {
    max-width: 750px;
    margin: 0 auto 50px;
}
.blogs-header p {
    font-size: 1.1rem;
    color: #555;
}

/* Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* Image */
.blog-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-img {
    transform: scale(1.05);
}

/* Overlay */
.blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
    transition: opacity 0.4s ease;
}
.blog-card:hover .blog-overlay {
    opacity: 1;
}

/* Read More Button */
.read-more {
    background: linear-gradient(90deg, #3A8DFF, #00C2FF);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(224,80,98,0.3);
}
.read-more:hover {
    transform: scale(1.05);
}

/* Blog Content */
.blog-content {
    padding: 18px 16px;
    text-align: left;
}
.blog-tag {
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
}
.blog-content h4 {
    font-size: 1.15rem;
    margin: 12px 0 8px;
    color: #3E464C;
    transition: color 0.3s ease;
}
.blog-card:hover h4 {
    color: #3A8DFF;
}
.blog-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .blogs-grid {
        grid-template-columns: 1fr;
    }
}






                         /* FOOTER SECTION */


                         /* Footer Base */
/* Footer Light Theme */
.premium-footer-light {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f5f9f9, #f9f9f9);
    padding: 60px 8% 30px;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

/* Background Shapes */
.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.4;
    animation: floatBg 8s ease-in-out infinite;
}
.shape1 {
    width: 300px;
    height: 300px;
    background: #3A8DFF;
    top: -100px;
    left: -80px;
}
.shape2 {
    width: 350px;
    height: 350px;
    background: #E05062;
    bottom: -120px;
    right: -100px;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Left Section */
.footer-left {
    flex: 1;
    min-width: 300px;
}
.footer-brand {
    font-size: 2rem;
    background: linear-gradient(90deg, #3A8DFF, #006DFF, #00C2FF);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 15px;
}
.footer-left p {
    color: #3E464C;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.footer-btn {
    display: inline-block;
    background: linear-gradient(90deg, #3A8DFF, #00C2FF);
    padding: 12px 28px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(224, 80, 98, 0.3);
}

/* Right Section */
.footer-right {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.footer-links h4,
.footer-contact h4 {
    color: #E05062;
    margin-bottom: 15px;
}
.footer-links a {
    display: block;
    color: #3E464C;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.footer-links a i {
    color: #3A8DFF;
    margin-right: 8px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #3A8DFF;
    transform: translateX(4px);
}
.footer-links a:hover i {
    color: #E05062;
}
.footer-contact p {
    font-size: 0.95rem;
    color: #3E464C;
    margin-bottom: 10px;
}
.footer-contact i {
    color: #3A8DFF;
    margin-right: 6px;
}

/* Social Icons */
.footer-social {
    text-align: center;
    margin: 20px 0;
}
.footer-social a {
    display: inline-block;
    margin: 0 8px;
    color: white;
    font-size: 1rem;
    background: linear-gradient(90deg, #3A8DFF, #00C2FF);
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #E05062, #40b7e6);
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #3E464C;
    margin-top: 15px;
}

/* Animations */
@keyframes floatBg {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}


                       /* COMMON HEADER FOR ALL */
                       /* Hero with Image Background */
.page-hero-img {
    position: relative;
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 85px; /* adjust for fixed navbar */
}

/* Overlay for better text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(68,171,182,0.5), rgba(224,80,98,0.5));
    backdrop-filter: blur(4px);
    z-index: 1;
}

/* Content */
.page-hero-content {
    position: relative;
    z-index: 5;
    animation: fadeUp 1.2s ease forwards;
}
.page-hero-content h1 {
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.page-hero-content p {
    font-size: 1.2rem;
    color: #f8f8f8;
    max-width: 650px;
    margin: 10px auto 0;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(70px);
    animation: float 8s ease-in-out infinite;
    z-index: 2;
}
.shape1 {
    width: 280px; height: 280px;
    background: #FDC446;
    top: -60px; left: -80px;
}
.shape2 {
    width: 250px; height: 250px;
    background: #3A8DFF;
    bottom: -80px; right: -60px;
    animation-delay: 2s;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
