:root {
    --primary-color: #ec1f27;
    --secondary-color: #fd0202;
    --accent-color: #1A659E;
    --light-bg: #cdcdce;
    --dark-text: #1a1a1a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 75px;
    /* Adjust this value to make it bigger or smaller */
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}
.hero-section{
    padding: 35px 0 80px 0;
}
/* Shopex Specific Navbar Styles */
.bdc-navbar {
    padding: 0.5rem 0;
}

.bdc-nav-links .nav-link {
    font-size: 1.1rem;
    color: #1a2530 !important;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
}

.bdc-nav-links .nav-link:hover {
    color: #ec1f27 !important;
}

.text-bdc-orange {
    color: #ec1f27 !important;
    font-weight: 600;
}

.btn-bdc-outline-orange {
    color: #ec1f27;
    border: 1.5px solid #ec1f27;
    background-color: transparent;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-bdc-outline-orange:hover {
    background-color: #ec1f27;
    color: white;
}

.btn-bdc-outline-orange:hover svg {
    stroke: white;
}

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

.btn-primary:hover {
    background: #ec1f27;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Dropdown Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 10px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--dark-text);
    border-radius: 5px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Hover Dropdown for Desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInUp 0.3s ease;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        margin-top: 1rem;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1.5rem;
        margin-top: 0;
        background: #f8f9fa;
    }

    .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }

    .navbar-nav .ms-3 {
        margin-left: 0 !important;
    }
}

/* Hero Section */
.hero-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.custom-green-btn {
    transition: all 0.3s ease;
}

.custom-green-btn:hover {
    background-color: #17983c !important;
    border-color: #17983c !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 176, 70, 0.4) !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background-color: #000;
    overflow: hidden;
}

.clients-section h2 {
    color: #fff !important;
    font-size: 1.5rem;
}

.clients-slider {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    padding-bottom: 20px;
}

.clients-slide-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.clients-slide-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    background: white;
    border-radius: 4px;
    padding: 10px 20px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 200px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* UI Showcase Section */
.ui-showcase-section {
    padding: 20px 0 60px 0;
    background-color: #000;
    overflow: hidden;
}

.ui-slider {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
}

.ui-slide-track {
    display: flex;
    width: max-content;
    animation: scroll-ui 60s linear infinite;
    gap: 20px;
    padding: 0 10px;
}

.ui-slide-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-ui {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ui-slide {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    height: 430px;
    width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    border: 1px solid #333;
}

.ui-slide:hover {
    transform: scale(1.03);
    z-index: 10;
}

.ui-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* High-Fidelity Design: Reasons Section (1:1 Match) */
.bdc-reasons-section {
    padding: 100px 0;
    background-color: #f7fbf8;
    /* The exact ultra-pale green background from image */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.bdc-reasons-section p{

    font-size: 21px;

    font-weight: 500;
}
.bdc-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4a5568;
    /* Slate dark gray */
    line-height: 1.4;
    /* margin-bottom: 40px; */
}

.bdc-color-green {
    color: #ec1f27;
    /* Exact matching bright green */
}

.bdc-premium-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 20px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.bdc-premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.bdc-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

/* Exact pastel backgrounds from the mockup */
.bg-pastel-green {
    background-color: #e5f5ea;
}

.bg-pastel-orange {
    background-color: #faebe5;
}

.bg-pastel-brown {
    background-color: #f4eee6;
}

.bg-pastel-blue {
    background-color: #eaf1fa;
}

.bg-pastel-cyan {
    background-color: #e5f6fc;
}

.bg-pastel-yellow {
    background-color: #f7f4e7;
}

.bg-pastel-purple {
    background-color: #f3ebfa;
}

.bg-pastel-pink {
    background-color: #faebf1;
}

.bdc-premium-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3748;
    /* Darker title font */
}

.bdc-premium-card p {
    font-size: 0.95rem;
    color: #718096;
    /* Slightly more muted grey */
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .bdc-main-title {
        font-size: 1.8rem;
    }

    .bdc-reasons-section {
        padding: 60px 0;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: white;
}

.video-wrapper {
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-wrapper:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    transition: transform 0.3s ease;
    z-index: 10;
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.benefits-list span {
    font-size: 1.1rem;
    color: var(--dark-text);
    font-weight: 500;
}

/* Bottom CTA Section */
.bottom-cta-section {
    background-color: #f6e7ec !important;
    /* Extremely light blue-ish white */
}

.bottom-cta-section h2 {
    font-size: 2.5rem;
}

.cta-btn {
    padding: 15px 30px 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    min-width: 320px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn-blue {
    background-color: #e50017;
    /* Adjusting to match image's exact blue */
}

.cta-btn-blue:hover {
    background-color: #2451a8;
    color: white;
}

.cta-btn-green {
    background-color: #0099e1;
    /* Adjusting to match image's exact green */
}

.cta-btn-green:hover {
    background-color: #319e48;
    color: white;
}

.cta-buttons-wrapper {
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f8fbfb;
}

.features-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 8px;
    margin-bottom: 10px;
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e10009;
}

.features-nav .nav-link:hover {
    color: #ff5722;
}

.features-nav .nav-link.active {
    background-color: #ec1f27 !important;
    color: white !important;
}

.features-content-box {
    background-color: #ebf8f2;
    border-radius: 24px;
    padding: 4rem;
}

.features-content-box p {
    color: #555;
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 0;
}

.features-content-box h3 {
    color: #222;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
}

.solution-card {
    background: linear-gradient(135deg, #2196F3, var(--accent-color));
    color: white;
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    right: -50px;
    transition: all 0.5s ease;
}

.solution-card:hover::before {
    transform: scale(1.5);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.solution-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.solution-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.solution-card ul li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #fef4ee 0%, #edf1ef 100%);
}

.price-card {
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.side-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.center-card {
    background: #ec1f27;
    border: none;
    box-shadow: 0 15px 50px rgba(255, 87, 34, 0.3);
    transform: scale(1.05);
    z-index: 2;
}

.price-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ec1f27;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.center-card .price-title {
    color: white;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
    font-weight: 400;
}

.center-card .old-price {
    color: rgba(255, 255, 255, 0.8);
}

.badge-custom {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}

.badge-green {
    background: #42abe0;
    color: white;
    align-self: flex-start;
}

.badge-white {
    background: white;
    color: #ff5722;
    align-self: flex-start;
}

.price-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.center-card .price-desc {
    color: rgba(255, 255, 255, 0.9);
}

.price-details-box {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
}

.center-card .price-details-box {
    background: white;
    border: none;
}

.details-title {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-outline-orange {
    color: #ff5722;
    border: 1px solid #ff5722;
    background: transparent;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-orange:hover {
    background: #ff5722;
    color: white;
}

.btn-orange {
    background: #ff5722;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-orange:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

.star-badge {
    position: absolute;
    top: -25px;
    right: -25px;
    background: white;
    color: #ff5722;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    z-index: 10;
    /* Using a starburst shape */
    clip-path: polygon(50% 0%, 61% 15%, 79% 5%, 79% 23%, 98% 30%, 86% 46%, 100% 64%, 82% 71%, 86% 90%, 68% 85%, 50% 100%, 35% 85%, 15% 90%, 18% 71%, 0% 64%, 13% 46%, 2% 30%, 21% 23%, 21% 5%, 39% 15%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

@media (max-width: 991px) {
    .center-card {
        transform: scale(1);
    }

    .star-badge {
        right: 0px;
        top: -10px;
    }
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Integrations Section */
.integrations-section {
    padding: 80px 0;
    background: #f7f7f7;
    border: 3px solid #ff0808;
    border-right: none;
    border-left: none;
}

.integration-badge {
    background: white;
    border-radius: 15px;
    padding: 10px;
    margin: 4px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #ec1f27;
}

.integration-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.integration-badge i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2196F3, var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.btn-light {
    background: white;
    color: var(--secondary-color);
    padding: 1rem 3rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

footer h5 {
    color: #df0009;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 0.3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}
.package-section h2{
    font-size: 23px;
    padding-top: 20px;
}
/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff;
        padding: 1rem;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Base Hero Typography Styles */
.hero-title {
    color: #0b1c2b !important;
    font-size: 3.8rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: #4a5568;
    font-size: 1.3rem;
    line-height: 1.6;
}

/* WhatsApp Widget */
.whatsapp-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.wa-tooltip-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-tooltip-close {
    background-color: #000;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.2s;
}

.wa-tooltip-close:hover {
    background-color: #333;
}

.wa-tooltip-text {
    background-color: #fff;
    color: #333;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #eaeaea;
    box-shadow: 4px 5px 0px #0fd276;
    letter-spacing: 0.3px;
}

.wa-float-btn {
    background-color: #0fd276;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(15, 210, 118, 0.3);
    transition: transform 0.3s ease;
    margin-right: 5px;
}

.wa-float-btn:hover {
    transform: scale(1.08);
    color: #fff;
}

/* ------------------------------------- */
/* Contact Page Styles */
/* ------------------------------------- */

.contact-talk-section {
    background: #ffffff;
    padding: 120px 0 140px 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
}

.contact-talk-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, 0.01) 40px, rgba(255, 255, 255, 0.01) 41px);
    pointer-events: none;
}

.contact-glow-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(200, 220, 50, 0.4) 0%, rgba(200, 220, 50, 0) 70%);
    border-radius: 50%;
    top: 50px;
    right: 15%;
    z-index: 0;
    pointer-events: none;
}

.contact-main-title {
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 2px;
}

.font-serif {
    font-family: 'Playfair Display', "Times New Roman", Times, serif;
}

.text-light-gray {
    color: #42abe0;
}

.text-theme-green {
    color: #ec1f27;
    text-shadow: 0 0 10px rgba(15, 210, 118, 0.3);
}

.contact-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', sans-serif;
}

.contact-desc {
    color: #3c3c3c;
    font-size: 1.05rem;
    line-height: 1.8;
    letter-spacing: 0.3px;
    max-width: 95%;
}

.contact-form-box {
    background: rgb(26 29 27);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.text-muted-green {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.custom-dark-input {
    background-color: #1e211f !important;
    border: 1px solid #2d3330 !important;
    color: #c5cbc7 !important;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-dark-input:focus {
    border-color: #0fd276 !important;
    box-shadow: 0 0 0 2px rgba(15, 210, 118, 0.15) !important;
    color: #fff !important;
}

.custom-dark-input::placeholder {
    color: #556259;
}

.custom-select-wrapper select option {
    background-color: #1e211f;
    color: #c5cbc7;
}

.btn-theme-green {
    background-color: #ec1f27;
    color: #000;
    border: none;
    padding: 8px 10px 8px 22px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 50px;
    font-size: 0.95rem;
}

.btn-theme-green:hover {
    background-color: #0cd576;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 210, 118, 0.3);
}

.btn-theme-green .icon-circle {
    width: 32px;
    height: 32px;
    margin-left: 8px;
}

@media (max-width: 991px) {
    .contact-main-title {
        font-size: 5rem;
    }
}

/* ------------------------------------- */
/* About Page Styles */
/* ------------------------------------- */

.about-page-wrapper {
    background-color: #f7f6ec;
    color: #1a1a1a;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a201c;
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a201c;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a544a;
    font-weight: 500;
}

.about-section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a201c;
    letter-spacing: -0.5px;
}

/* Journey Timeline */
.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    display: inline-block;
}

.timeline-circle {
    width: 45px;
    height: 45px;
    background-color: #2b302c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px #f7f6ec; /* matches background */
}

/* Vertical line connecting circles */
.timeline-line {
    position: absolute;
    width: 2px;
    background-color: #d8d8ce;
    top: 45px;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a201c;
}

.timeline-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a544a;
    margin-bottom: 12px;
}

/* Responsive adjustments for timeline */
@media (max-width: 767px) {
    .timeline-line {
        display: none;
    }
    .timeline-circle {
        margin-bottom: 20px;
    }
    .timeline-item {
        margin-bottom: 40px;
        text-align: center;
    }
    .timeline-item > div {
        text-align: center !important;
    }
}

/* Team Section */
.about-team-section {
    position: relative;
}

.team-blur-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, rgba(235, 220, 255, 0.7) 0%, rgba(200, 230, 255, 0.5) 50%, rgba(255, 230, 200, 0.6) 100%);
    filter: blur(40px);
    z-index: 0;
}

.team-card {
    background: transparent;
}

.team-img-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.team-img-wrapper:hover {
    transform: translateY(-5px);
}

.team-img-wrapper img {
    border-radius: 8px;
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
}

.team-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a201c;
}

.team-role {
    font-size: 0.85rem;
    color: #5a645a;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Team Section */
.about-team-section {
    position: relative;
    background-color: #f7f6ec; /* ensuring consistent background */
}

.team-blur-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, rgba(235, 220, 255, 0.7) 0%, rgba(200, 230, 255, 0.5) 50%, rgba(255, 230, 200, 0.6) 100%);
    filter: blur(40px);
    z-index: 0;
}

.team-card {
    background: #fff;
    border-radius: 9px; /* square corners per design */
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px; /* padding around image */
}

.team-img-wrapper img {
    border-radius: 0;
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}

/* Social Overlay on Hover */
.team-social-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.team-card:hover .team-social-overlay {
    opacity: 1;
    visibility: visible;
}

.team-card:hover .team-img-wrapper img {
    filter: brightness(0.6);
    transform: scale(1.03);
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

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

.social-icon.fb { background-color: #3b5998; }
.social-icon.tw { background-color: #1da1f2; }
.social-icon.in { background-color: #0077b5; }
.social-icon.pi { background-color: #bd081c; }

.social-icon.fb:hover { background-color: #2d4373; }
.social-icon.tw:hover { background-color: #0c85d0; }
.social-icon.in:hover { background-color: #005885; }
.social-icon.pi:hover { background-color: #8c0615; }

.team-info {
    padding: 25px 20px;
    text-align: center;
    background-color: #fafafa;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.team-role {
    font-size: 0.85rem;
    color: #777;
    font-weight: 400;
    margin: 0;
}
/* ------------------------------------- */
/* Footer Styles */
/* ------------------------------------- */

footer {
    background-color: #1b120f;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    border-top: 3px solid #F44336; /* Yellow accent top border matches the design's bottom yellow bar */
    /* Looking at the image, there's a thick yellow border at the very bottom, let's add that to footer or a specific div */
}

.custom-footer-top {
    padding-bottom: 2rem !important;
}

.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 {
    color: #e0e0e0;
}

.footer-title {
    color: #ec1f27; /* Yellow color */
    font-size: 1.4rem;
    font-weight: 500;
}

.footer-contact-list li {
    font-size: 1rem;
    line-height: 1.5;
    color: #f1f1f1;
}

.footer-icon {
    color: #ec1f27;
    font-size: 1.1rem;
}

.footer-social-title {
    color: #ec1f27;
    font-size: 1rem;
    font-weight: 500;
}

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

.social-circle {
    width: 35px;
    height: 35px;
    background-color: #ec1f27;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-circle:hover {
    transform: translateY(-3px);
    background-color: #ec1f27;
    color: #000;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffbc00;
}

.member-title {
    font-size: 1.2rem;
}

.footer-divider {
    border-color: #ffbc00;
    opacity: 1;
    border-width: 2px;
}
