@import url("https://fonts.googleapis.com/css?family=Exo:500,600,700|Roboto&display=swap");

/* Base fonts */
html, body, p, .card span, p span, table ul, .navbar {
    font-family: "Exo", sans-serif;
}

/* Reset and base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body fade-in on load */
body {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    /* When loaded */
    body.loaded {
        opacity: 1;
    }


/*----------topbar-----------------*/
.topbar {
    background: linear-gradient(to right, #6a1b9a, #ba68c8); /* deeper purple to soft lavender */

    color: #ffffff;
    font-family: "Exo", sans-serif;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 1045; /* Just below navbar */
}
    /*
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    
}
*/

    .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

.topbar-left span {
    margin-right: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar i {
    color: #ffe0f0;
    font-size: 0.95rem;
}

/* Updated Topbar Social Media Icons to match footer style */
.topbar-right a {
    background: #3c1053; /* deep purple */
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .topbar-right a:hover {
        background: #ad5389; /* soft pink */
        transform: scale(1.1);
        color: #fff;
        cursor: pointer;
    }

@media (max-width: 767px) {
    .topbar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .topbar-left,
    .topbar-right {
        justify-content: center;
    }

        .topbar-left span {
            margin-right: 0.8rem;
        }
}


@media (max-width: 767px) {
    .topbar {
        display: none;
    }

    .custom-navbar {
        margin-top: 0px !important;
    }

    .navbar-collapse {
        background: linear-gradient(90deg, #3c1053, #ad5389);
    }


}



/* --- Sticky navbar --- */
.custom-navbar {
    position: sticky;
    top: 30px; /* Adjust based on topbar height */
    left: 0;
    width: 100%;
    height: 80px; /* initial tall */
    background: linear-gradient(90deg, #3c1053, #ad5389);
    padding: 1.2rem 1rem;
    border-bottom: 3px solid #f06292;
    transition: all 0.4s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
}

    /*.custom-navbar {
    position: sticky;
    
    z-index: 1050;*/ /* Must be higher than topbar */
    /*background-color: #fff;*/ /* Or your navbar bg */
    /*box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}*/


    .custom-navbar.shrink {
        height: 56px;
        padding: 0.5rem 1rem;
        border-bottom-width: 2px;
    }

    .custom-navbar .navbar-brand {
        color: #fff;
        font-size: 1.3rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: color 0.3s, font-size 0.4s ease;
        font-weight: 700;
    }

    .custom-navbar.shrink .navbar-brand {
        font-size: 1.1rem;
    }

    .custom-navbar .nav-link {
        color: #fdfdfd;
        margin-left: 1.2rem;
        font-weight: 500;
        position: relative;
        transition: all 0.3s ease-in-out;
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .custom-navbar.shrink .nav-link {
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }

    .custom-navbar .nav-link::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 3px;
        left: 0;
        bottom: 0;
        background: linear-gradient(90deg, #ff6ec4, #7873f5);
        transition: 0.4s ease-in-out;
        border-radius: 5px;
    }

    .custom-navbar .nav-link:hover,
    .custom-navbar .nav-link:focus {
        color: #ffd6e0;
    }

        .custom-navbar .nav-link:hover::after {
            width: 100%;
        }

    .custom-navbar .nav-link.active {
        color: #ffd6e0;
        font-weight: 600;
    }

        .custom-navbar .nav-link.active::after {
            width: 100%;
            background: linear-gradient(90deg, #ff6ec4, #f06292);
        }

/* Navbar toggler */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}



/* Responsive */
@media (max-width: 767px) {
    .custom-navbar .nav-link {
        margin-left: 0;
        padding: 0.75rem 0;
        text-align: center;
    }
}

/* --- Scroll animation utility classes --- */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    will-change: transform, opacity;
}

    .scroll-reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Optionally, for sliding from left or right */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s ease-out;
}

    .scroll-reveal-left.active {
        opacity: 1;
        transform: translateX(0);
    }

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s ease-out;
}

    .scroll-reveal-right.active {
        opacity: 1;
        transform: translateX(0);
    }

/* ----- Other styles from your original CSS with minimal changes ---- */

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

    .control:hover {
        background: rgba(0,0,0,0.7);
    }

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #fbe5f5, #fdd6e8);
    color: #3c1053;
    font-family: 'Exo', sans-serif;
    padding: 10rem 2rem !important;
    box-shadow: 0 8px 24px rgba(251, 229, 245, 0.3);
}

    .about-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #3c1053;
    }

    .about-section p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #5e3c65;
    }

    .about-section img {
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transition: none !important;
    }

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #3c1053, #ad5389);
    color: #fff;
    font-family: 'Exo', sans-serif;
    padding: 6rem 2rem;
    /*margin: 0 auto 4rem auto;*/
    box-shadow: 0 8px 24px rgba(60, 16, 83, 0.5);
}

    .services-section .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 2rem;
        color: #fff;
    }

    .services-section .service-box {
        background-color: rgba(255 255 255 / 0.1);
        border-radius: 15px;
        padding: 2rem 1.5rem;
        text-align: center;
        box-shadow: 0 8px 24px rgba(255 255 255 / 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(255 255 255 / 0.15);
        margin-bottom: 2rem;
    }

        .services-section .service-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(255 105 180 / 0.4);
        }

    .services-section .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #ff6ec4;
    }

    .services-section .service-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color: #fff;
    }

    .services-section .service-text {
        font-size: 0.95rem;
        color: #f0d5f2;
        line-height: 1.6;
    }

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    font-family: "Exo", sans-serif;
    background: linear-gradient(135deg, #ff6ec4, #7873f5);
    color: #fff;
    padding: 0.65rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .learn-more-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #f06292, #ff9a9e);
        transition: all 0.4s ease;
        z-index: -1;
    }

    .learn-more-btn:hover::before {
        left: 0;
    }

    .learn-more-btn:hover {
        color: #fff;
        box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
    }

/* Testimonials Section */
.testimonials-section {
    background: #fff;
    padding: 5rem 2rem 6rem;
    font-family: 'Exo', sans-serif;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    color: #3c1053;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #3c1053;
    letter-spacing: 1.2px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.testimonial {
    display: none;
    padding: 2.5rem 3rem;
    text-align: center;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #3c1053;
    border: 1px solid #ad5389;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(173, 83, 137, 0.15);
    background: #fff;
    transition: opacity 0.4s ease;
}

    .testimonial.active {
        display: block;
    }

.testimonial-text {
    margin-bottom: 1.8rem;
    position: relative;
}

    .testimonial-text::before {
        content: "“";
        font-size: 4rem;
        position: absolute;
        left: -1.2rem;
        top: -1.6rem;
        color: rgba(60, 16, 83, 0.1);
        font-weight: 900;
        font-style: normal;
    }

.testimonial-author {
    font-weight: 600;
    font-style: normal;
    font-size: 1rem;
    color: #ad5389;
}

/* Dots */
.testimonial-dots {
    margin-top: 2rem;
    text-align: center;
}

    .testimonial-dots .dot {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin: 0 6px;
        background: #ad5389;
        border-radius: 50%;
        cursor: pointer;
        opacity: 0.4;
        transition: opacity 0.3s ease;
    }

        .testimonial-dots .dot.active,
        .testimonial-dots .dot:hover {
            opacity: 1;
        }

/* Clients Section */
.clients-section {
    background: linear-gradient(135deg, #fbe9f9, #fcd3e1); /* Updated background */
    padding: 4rem 0;
    font-family: 'Exo', sans-serif;
    text-align: center;
}

.clients-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #3c1053;
}

.clients-marquee {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 2rem; /* Controlled spacing */
    padding: 0 1rem;
    animation: scroll 25s linear infinite;
}

    /* Consistent card for all logos */
    .clients-track img {
        width: 160px; /* Fixed width */
        height: 80px; /* Fixed height */
        object-fit: contain; /* Keep aspect ratio within box */
        background-color: #fff;
        padding: 10px 15px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease, filter 0.3s ease;
        filter: grayscale(40%);
    }

        .clients-track img:hover {
            filter: none;
            transform: scale(1.05);
        }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



.contact-info-strip {
    background: linear-gradient(135deg, #3c1053, #ad5389); /* Deep purple to soft magenta */
    color: #ffffff;
    padding: 2rem 1rem;
    font-family: "Exo", sans-serif;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
}

    .contact-info-strip .container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }

.contact-box {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .contact-box i {
        font-size: 1.3rem;
        color: #fff3f8;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.6rem;
        border-radius: 50%;
    }



.site-footer {
    background: #2c003e;
    color: #ffffff;
    font-family: "Exo", sans-serif;
    padding: 3rem 1rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

    .footer-column h3,
    .footer-column h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: #ffb6d5; /* soft pink */
    }

    .footer-column p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #e0e0e0;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

        .footer-column ul li {
            margin-bottom: 0.6rem;
        }

            .footer-column ul li a {
                color: #ffffff;
                text-decoration: none;
                transition: color 0.3s;
            }

                .footer-column ul li a:hover {
                    color: #ffb6d5;
                }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        border-radius: 50%;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
        text-decoration: none;
    }

        .social-icons a:hover {
            background: linear-gradient(135deg, #ff9a9e, #fad0c4);
            color: #2c003e;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 4px 12px rgba(255, 182, 193, 0.3);
        }

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #ccc;
}


/* Animation Base Styles */
.reveal-from-left,
.reveal-from-right,
.reveal-from-bottom,
.reveal-from-top,
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    will-change: transform, opacity;
}

.reveal-from-left {
    transform: translateX(-50px);
}

.reveal-from-right {
    transform: translateX(50px);
}

.reveal-from-top {
    transform: translateY(-50px);
}

.reveal-from-bottom {
    transform: translateY(50px);
}

.fade-in {
    transform: none;
}

/* When visible */
.reveal-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}


.event-section {
    background: #000; /* Classic black for contrast */
    padding: 6rem 2rem;
    color: #fff;
}

.event-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.event-logo-wrapper {
    flex: 1 1 250px;
    text-align: center;
}

.event-logo {
    max-width: 300px;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.6));
}

.event-text {
    flex: 2 1 400px;
}

.event-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700; /* Gold accent */
}

    .event-title span,
    .event-description strong {
        color: #ff6ec4; /* Highlight pink accent */
    }

.event-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f0e5f5;
}


.subscribe-strip {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #3c1053;
    padding: 4rem 2rem;
    text-align: center;
    font-family: "Exo", sans-serif;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}


.subscribe-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #3c1053;
}

.subscribe-text {
    font-size: 1.1rem;
    color: #6a1b9a; /* Rich purple for better contrast */
    max-width: 700px;
    margin: 0 auto 2.5rem;
}


.subscribe-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

    .subscribe-form input[type="email"] {
        padding: 0.9rem 1.2rem;
        border: 2px solid #ad5389;
        border-radius: 50px;
        font-size: 1rem;
        flex: 1 1 250px;
        max-width: 350px;
        background: #ffffff;
        color: #3c1053;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

        .subscribe-form input[type="email"]::placeholder {
            color: #999;
        }

        .subscribe-form input[type="email"]:focus {
            outline: none;
            border-color: #ff6ec4;
            box-shadow: 0 0 0 4px rgba(255, 110, 196, 0.2);
        }

    .subscribe-form button {
        padding: 0.65rem 1.8rem;
        background: linear-gradient(135deg, #ff6ec4, #7873f5);
        color: #fff;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

        .subscribe-form button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f06292, #ff9a9e);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .subscribe-form button:hover::before {
            left: 0;
        }

        .subscribe-form button:hover {
            color: #fff;
            box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
        }



































/* === Common Padding Section === */
.section-padding {
    padding: 5rem 2rem;
}

/* === Section Titles === */
.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    font-family: "Exo", sans-serif;
    margin-bottom: 2rem;
    color: #3c1053;
    text-align: center;
}

/* === Director Section === */
.director-wrapper {
    background-color: #fbe5f6; /* light lavender-pink */
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.director-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.director-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.director-desc {
    flex: 1;
}

    .director-desc h3 {
        font-size: 1.6rem;
        color: #3c1053;
        margin-bottom: 0.5rem;
    }

    .director-desc h5 {
        font-size: 1.1rem;
        color: #944f82;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .director-desc p {
        font-size: 1.05rem;
        color: #4b2c4f;
        line-height: 1.8;
    }

/* === Scroll Reveal Classes === */
.reveal-from-left,
.reveal-from-right,
.reveal-from-bottom {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.reveal-from-left {
    transform: translateX(-50px);
}

.reveal-from-right {
    transform: translateX(50px);
}

.reveal-from-bottom {
    transform: translateY(50px);
}

.reveal-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* === Responsive === */
@media (max-width: 768px) {
    .director-section .container {
        flex-direction: column;
        text-align: center;
    }

    .director-img img {
        margin-bottom: 1.5rem;
    }

    .director-desc h3 {
        font-size: 1.4rem;
    }

    .director-desc h5 {
        font-size: 1rem;
    }
}


.service-section-padding {
    padding: 25px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #3c1053;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5a2c4f;
    max-width: 800px;
    margin: 0 auto 40px;
}

.service-tile {
    background-color: #fbe5f6;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 0px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

    .service-tile:hover {
        transform: translateY(-6px);
    }

.service-info h3 {
    font-size: 1.8rem;
    color: #3c1053;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .service-tile {
        text-align: center;
    }

        .service-tile .col-md-6 {
            width: 100%;
        }
}


/*----------contact us--------------*/

/* Contact Details Cards Container */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Single Contact Card */
.contact-card {
    background-color: #fbe5f6; /* same pastel pink */
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.3s ease;
}

    .contact-card:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

/* Icon circle */
.icon-circle {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover .icon-circle {
    transform: scale(1.1);
}

/* Different background colors for icons */
.bg-icon-phone {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.bg-icon-email {
    background: linear-gradient(135deg, #fc5c7d 0%, #6a82fb 100%);
}

.bg-icon-location {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
}

/* Card content */
.card-content h4 {
    color: #3c1053;
    margin-bottom: 8px;
    font-weight: 700;
}

.card-content p {
    color: #4a4a4a;
    font-size: 1.1rem;
    margin: 0;
}

.card-content small {
    color: #7a7a7a;
    font-size: 0.9rem;
    margin-top: 4px;
    display: block;
}

/* Contact Form Tile */
.contact-tile {
    background-color: #fbe5f6; /* pastel pink tile */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

    .contact-tile h3 {
        color: #3c1053;
        margin-bottom: 25px;
        font-weight: 700;
    }

/* Form styles */
.contact-form .form-control {
    border-radius: 6px;
    box-shadow: none;
    border: 1px solid #ccc;
}

.contact-form .btn-theme {
    background: linear-gradient(to right, #3c1053, #ad5389);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
}

    .contact-form .btn-theme:hover {
        background: linear-gradient(to right, #ad5389, #3c1053);
    }

/* Icon colors inside cards */
.contact-card i {
    pointer-events: none;
}

/* Map Section */
.map-section {
    margin-top: -40px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-details {
        gap: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-tile {
        padding: 30px;
        margin-top: 30px;
    }
}
