/* ========================================
   ROOT COLORS
======================================== */
:root {
    --primary-pink: #e11d74;
    --secondary-blue: #007bff;
    --dark-navy: #0a1128;
    --text-grey: #4a4a4a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

/* ========================================
   GLOBAL STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-grey);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-navy);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

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

/* ========================================
   COMMON SECTION LABEL
======================================== */
.section-label {
    color: var(--primary-pink);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

/* ========================================
   COLOR UTILITY CLASSES
======================================== */
.text-pink {
    color: var(--primary-pink) !important;
}

.text-blue {
    color: var(--secondary-blue) !important;
}

/* ========================================
   SERVICES DESCRIPTION
======================================== */
.services-desc {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    color: var(--text-grey);
}

/* ========================================
   FOOTER PINK ICONS
======================================== */
.footer-icon-pink {
    color: var(--primary-pink) !important;
}

/* ========================================
   NAVBAR
======================================== */
.main-nav {
    background: var(--white);
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

/* Offset page content so it doesn't hide under fixed navbar */
body {
    padding-top: 72px;
}

/* CHANGE 3: Logo fills navbar height with no excess padding */
.logo {
    padding: 0;
    line-height: 0;
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
}

.navbar-nav .nav-link {
    color: var(--dark-navy);
    font-weight: 600;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-pink);
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
}

.dropdown-item:hover {
    background: var(--primary-pink);
    color: var(--white);
}

/* ========================================
   BUTTONS
======================================== */
.btn-primary {
    background: var(--primary-pink);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #c21863;
    transform: translateY(-2px);
}

.btn-outline-dark {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
}

.btn-success {
    background: var(--primary-pink);
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 600;
}

.btn-success:hover {
    background: #c21863;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    padding: 100px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.92)),
        url('../Images/bg-pattern.png');
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    font-size: 60px;
    font-weight: 800;
    margin-top: 20px;
}

.hero-section h1 span {
    color: var(--primary-pink);
}

.hero-section p {
    font-size: 18px;
    max-width: 600px;
}

/* CHANGE 1: Hero image scaled up to fill right column height */
.hero-logo-img {
    max-width: 100%;
    width: 100%;
    animation: float 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

/* ========================================
   CHANGE 2: HERO INLINE FEATURE STRIP
======================================== */
.hero-features {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(225, 29, 116, 0.05);
    border: 1px solid rgba(225, 29, 116, 0.15);
    border-radius: 14px;
    padding: 14px 20px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 0 8px;
}

.hero-feature-item i {
    color: var(--primary-pink);
    font-size: 18px;
    flex-shrink: 0;
}

.hero-feature-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hero-feature-item strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-navy);
}

.hero-feature-item span {
    font-size: 11px;
    color: var(--text-grey);
}

.hero-feature-divider {
    width: 1px;
    height: 36px;
    background: rgba(225, 29, 116, 0.2);
    flex-shrink: 0;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    background: var(--light-bg);
}

/* CHANGE 3: Cards equal height via flex column; "Learn More" pinned to bottom */
.service-card {
    background: var(--white);
    border-radius: 20px;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon i {
    color: var(--secondary-blue);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.service-card ul li {
    font-weight: 500;
}

/* CHANGE 3: "Learn More" link styled in primary pink */
.learn-more-link {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.learn-more-link:hover {
    color: #c21863;
    gap: 10px;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    background: var(--white);
}

.profile-card {
    background: var(--white);
    padding: 20px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-8px);
}

.profile-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-pink);
    margin-bottom: 15px;
}

.profile-card h5 {
    margin-top: 10px;
    font-weight: 700;
}

.about-card {
    background: var(--light-bg);
    border-radius: 20px;
    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
}

.about-card i {
    color: var(--secondary-blue);
}

.about-card h4 {
    margin: 20px 0 12px;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: var(--light-bg);
}

.footer-cta {
    background:
        linear-gradient(135deg,
            var(--dark-navy),
            #14213d,
            var(--primary-pink));
    border-radius: 25px;
    color: var(--white);
}

.footer-cta h3,
.footer-cta p {
    color: var(--white);
}

/* FOOTER */
.footer-section {
    background: linear-gradient(135deg, var(--dark-navy), #14213d, var(--primary-pink));
    color: var(--white);
}

.footer-left-col {
    gap: 14px;
}

.footer-logo {
    height: auto;
    width: 160px;
    display: block;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 320px;
}

.footer-right-col {
    margin-bottom: 1.5rem;
}

.footer-col-heading {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
}

.footer-section h4 {
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
    transition: 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-section p {
    font-size: 14px;
    margin-bottom: 6px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-pink);
    transform: translateY(-5px);
}

.footer-bottom {
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   ICON COLORS
======================================== */
.fa-solid,
.fas,
.fa-brands {
    transition: 0.3s ease;
}

/* Main Icons Blue */
.service-icon i,
.feature-card i,
.about-card i {
    color: var(--secondary-blue);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 991px) {

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

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

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

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-feature-divider {
        width: 100%;
        height: 1px;
    }

    .hero-feature-item {
        padding: 0;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 15px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {

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

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

    .profile-card img {
        width: 110px;
        height: 110px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-desc {
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-col-heading {
        margin-top: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}


@media (max-width: 576px) {

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

    .btn-primary,
    .btn-outline-dark,
    .btn-success {
        width: 100%;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
    }
}