/* ============================================
   SMARTECHMI — Custom Stylesheet
   ============================================ */

/* ====== CSS VARIABLES ====== */
:root {
    --primary-pink: #E8386D;
    --primary-teal: #2BBCD4;
    --white: #ffffff;
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #6c757d;
    --gray-700: #495057;
    --gradient-primary: linear-gradient(135deg, var(--primary-pink), var(--primary-teal));
    --gradient-reverse: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark-light));
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --shadow-glow-pink: 0 0 30px rgba(232,56,109,0.3);
    --shadow-glow-teal: 0 0 30px rgba(43,188,212,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* ====== GLOBAL RESET ====== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ====== CUSTOM SCROLLBAR ====== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-teal);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-pink);
}

/* ====== SELECTION ====== */
::selection {
    background: var(--primary-pink);
    color: var(--white);
}

/* ====== UTILITY CLASSES ====== */
.text-gradient {
    color: var(--primary-pink);
}

.bg-gradient-primary {
    background: var(--primary-pink);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ====== BUTTONS ====== */
.btn-gradient,
.btn-primary-pink {
    background: var(--primary-pink);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-gradient:hover,
.btn-primary-pink:hover {
    color: var(--white);
    background: var(--dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-glow-pink);
}

.btn-outline-gradient {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.btn-outline-gradient:hover {
    background: var(--primary-pink);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-pink);
}

/* ====== NAVBAR ====== */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    z-index: 1050;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95) !important;
    backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-teal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--primary-pink);
}

.navbar .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    padding: 8px 18px !important;
    border-radius: 50px;
    transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.navbar .dropdown-menu {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 10px;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
}

.navbar .dropdown-item {
    color: rgba(255,255,255,0.8);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.navbar .dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: var(--primary-teal);
}

.navbar .dropdown-divider {
    border-color: rgba(255,255,255,0.1);
}

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.3);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ====== FLOATING ICONS ====== */
.floating-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1040;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: floatingPulse 2s ease-in-out infinite;
}

.floating-phone {
    background: var(--primary-pink);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn:hover {
    transform: scale(1.15);
    color: var(--white);
    box-shadow: var(--shadow-glow-pink);
}

@keyframes floatingPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(232,56,109,0.3); }
    50% { box-shadow: 0 4px 25px rgba(232,56,109,0.6); }
}

/* ====== HERO SECTION ====== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,56,109,0.15), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(43,188,212,0.12), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-slider-wrap {
    position: relative;
    z-index: 1;
}

.hero-slide {
    padding: 40px 0;
}

.hero-slide .hero-tag {
    display: inline-block;
    background: rgba(232,56,109,0.15);
    color: var(--primary-pink);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-slide h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-slide h1 span {
    color: var(--primary-teal);
}

.hero-slide p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 30px;
}

/* Hero Form Card */
.hero-form-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 35px;
    position: relative;
    z-index: 2;
}

.hero-form-card .form-title {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 700;
}

.hero-form-card .form-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
}

.hero-form-card .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(43,188,212,0.15);
    color: var(--white);
}

.hero-form-card .form-select option {
    background: var(--dark);
    color: var(--white);
}

/* Sticky Form */
@media (min-width: 992px) {
    .hero-form-sticky {
        position: sticky;
        top: 100px;
    }
}

/* ====== PAGE HERO BANNER ====== */
.page-hero {
    background: var(--dark);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(232,56,109,0.12), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(43,188,212,0.12), transparent 50%);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero .breadcrumb {
    justify-content: center;
    background: none;
    margin: 0;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.page-hero .breadcrumb-item.active {
    color: var(--primary-teal);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ====== STATS SECTION ====== */
.stats-section {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 500;
}

/* ====== SERVICE CARDS ====== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-pink);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background: rgba(232,56,109,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-pink);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-pink);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* ====== WHY CHOOSE US ====== */
.why-choose-section {
    position: relative;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.why-point-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-md);
    background: rgba(232,56,109,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    font-size: 1.3rem;
    transition: var(--transition);
}

.why-point:hover .why-point-icon {
    background: var(--primary-pink);
    color: var(--white);
}

.why-point h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.why-point p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

/* ====== CTA SECTION ====== */
.cta-section {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(232,56,109,0.06);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: rgba(43,188,212,0.06);
    border-radius: 50%;
}

@keyframes ctaFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

.btn-white {
    background: var(--white);
    color: var(--primary-pink);
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    transition: var(--transition);
}

.btn-white:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ====== TESTIMONIALS ====== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonial-info h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ====== PORTFOLIO SECTION ====== */
.portfolio-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    background: var(--gray-200);
    cursor: pointer;
}

.portfolio-card-bg {
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
}

.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(26,26,46,0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h5 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.portfolio-overlay span {
    color: var(--primary-teal);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ====== ABOUT PAGE ====== */
.about-story-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 400px;
    background: rgba(232,56,109,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-story-img i {
    font-size: 8rem;
    color: var(--primary-teal);
}

.mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-pink);
    transform: scaleX(0);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.mission-card:hover::after {
    transform: scaleX(1);
}

.mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(232,56,109,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-pink);
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.team-img {
    height: 200px;
    background: rgba(43,188,212,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-teal);
}

.team-info {
    padding: 20px;
}

.team-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-info span {
    color: var(--primary-pink);
    font-size: 0.85rem;
    font-weight: 500;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-pink);
    color: var(--white);
}

/* Values */
.value-item {
    text-align: center;
    padding: 25px 15px;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(43,188,212,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary-teal);
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--primary-teal);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.value-item h6 {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ====== SERVICES PAGE ====== */
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    margin-bottom: 40px;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-md);
}

.service-detail-img {
    height: 300px;
    background: rgba(232,56,109,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-pink);
}

.service-detail-body {
    padding: 35px;
}

.service-detail-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-detail-body p {
    color: var(--gray-500);
    margin-bottom: 15px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-features-list li {
    padding: 6px 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.service-features-list li i {
    color: var(--primary-teal);
    margin-right: 10px;
    font-size: 0.85rem;
}

/* ====== SUB-SERVICE PAGES ====== */
.included-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    margin-bottom: 12px;
}

.included-item:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.included-item-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: rgba(232,56,109,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    font-size: 1.1rem;
}

.included-item:hover .included-item-icon {
    background: var(--primary-pink);
    color: var(--white);
}

.included-item h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
}

.process-step h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary-pink);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured .pricing-badge {
    display: block;
}

.pricing-badge {
    display: none;
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-pink);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-teal);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-plan {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-pink);
    margin-bottom: 5px;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
    color: var(--gray-700);
}

.pricing-features li i {
    margin-right: 10px;
    font-size: 0.8rem;
}

.pricing-features li i.bi-check-circle-fill {
    color: var(--primary-teal);
}

.pricing-features li i.bi-x-circle-fill {
    color: var(--gray-300);
}

.pricing-features li.disabled {
    color: var(--gray-300);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    padding: 18px 24px;
    background: var(--white);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(232,56,109,0.05);
    color: var(--primary-pink);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 1rem;
    width: auto;
    height: auto;
    transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\F286';
    transform: none;
    color: var(--primary-pink);
}

.faq-accordion .accordion-body {
    color: var(--gray-500);
    line-height: 1.8;
    padding: 0 24px 18px;
}

/* ====== CONTACT PAGE ====== */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-pink);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(232,56,109,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary-pink);
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--primary-pink);
    color: var(--white);
}

.contact-info-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.contact-info-card a:hover {
    color: var(--primary-pink);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(43,188,212,0.1);
}

/* Map Placeholder */
.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Business Hours */
.business-hours {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 1px solid var(--gray-200);
}

.business-hours h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.business-hours table {
    width: 100%;
}

.business-hours td {
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-100);
}

.business-hours td:first-child {
    font-weight: 600;
    color: var(--dark);
}

.business-hours td:last-child {
    text-align: right;
    color: var(--gray-500);
}

.social-links-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-link-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray-500);
    transition: var(--transition);
}

.social-link-btn:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
}

/* ====== CHATBOT WIDGET ====== */
.chatbot-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1060;
    font-family: var(--font-body);
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-pink);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(232,56,109,0.4);
    transition: var(--transition);
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(232,56,109,0.5);
}

.chatbot-notification {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-teal);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.chatbot-panel {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    max-height: 520px;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: chatSlideUp 0.35s ease;
    background: var(--white);
}

@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-header {
    background: var(--dark);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.chatbot-header-name {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.chatbot-header-status {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chatbot-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4CD964;
    display: inline-block;
}

.chatbot-close-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.chatbot-close-btn:hover {
    background: rgba(255,255,255,0.2);
}

.chatbot-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.chatbot-new-chat-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.chatbot-new-chat-btn:hover {
    background: rgba(43,188,212,0.4);
    transform: rotate(180deg);
}

.chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px;
    max-height: 360px;
    min-height: 280px;
    background: var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbot-body::-webkit-scrollbar {
    width: 4px;
}

.chatbot-body::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

/* Bot message */
.chat-msg {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    max-width: 88%;
}

.chat-msg.bot {
    align-self: flex-start;
}

.chat-msg.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-msg-avatar {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.65rem;
}

.chat-msg.user .chat-msg-avatar {
    background: var(--primary-pink);
}

.chat-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
    word-break: break-word;
}

.chat-msg.bot .chat-bubble {
    background: var(--white);
    color: var(--gray-700);
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.chat-msg.user .chat-bubble {
    background: var(--primary-pink);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); background: var(--gray-300); }
    30% { transform: translateY(-6px); background: var(--primary-teal); }
}

/* Option buttons (service selection) */
.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.chat-option-btn {
    background: var(--white);
    border: 1.5px solid var(--primary-pink);
    color: var(--primary-pink);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.chat-option-btn:hover {
    background: var(--primary-pink);
    color: var(--white);
}

.chat-skip-btn {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 4px;
    text-decoration: underline;
}

.chat-skip-btn:hover {
    color: var(--primary-pink);
}

/* Footer input */
.chatbot-footer {
    border-top: 1px solid var(--gray-200);
    padding: 12px;
    background: var(--white);
}

.chatbot-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.chatbot-input:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(43,188,212,0.1);
}

.chatbot-input:disabled {
    background: var(--gray-100);
    cursor: not-allowed;
}

.chatbot-send {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-pink);
    border: none;
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.chatbot-send:hover {
    background: var(--dark);
    transform: scale(1.05);
}

.chatbot-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive chatbot */
@media (max-width: 480px) {
    .chatbot-panel {
        width: calc(100vw - 32px);
        right: -8px;
        bottom: 70px;
        max-height: 440px;
    }

    .chatbot-body {
        min-height: 220px;
        max-height: 300px;
    }
}

/* ====== ENQUIRY FORM (Reusable) ====== */
.enquiry-form .form-floating > .form-control,
.enquiry-form .form-floating > .form-select {
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    height: auto;
    padding: 1rem 0.75rem;
}

.enquiry-form .form-floating > .form-control:focus,
.enquiry-form .form-floating > .form-select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(43,188,212,0.1);
}

.enquiry-form .form-floating > label {
    color: var(--gray-500);
}

/* Form Alert Messages */
.form-alert .alert {
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    padding: 12px 18px;
}

/* ====== FOOTER ====== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-teal);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.92rem;
}

.footer-contact li i {
    color: var(--primary-teal);
    margin-top: 4px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

.footer-contact a:hover {
    color: var(--primary-pink);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}

/* ====== NEW COMPONENTS ====== */

/* --- Utility --- */
.ls-wide { letter-spacing: 2px; }

/* --- How It Works Step Cards --- */
.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 25px 30px;
    text-align: center;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 40px rgba(232,56,109,0.1);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    letter-spacing: 0;
}

.step-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(232,56,109,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-pink);
    transition: var(--transition);
}

.step-card:hover .step-icon-circle {
    background: var(--primary-pink);
    color: white;
}

.step-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.6;
}

/* --- Timeline (How It Works / Our Journey) --- */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gray-200);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: right;
    padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
    padding-left: calc(50% + 40px);
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(232,56,109,0.15);
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.timeline-content p {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.timeline-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 12px;
    height: 160px;
}

.timeline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.timeline-item:hover .timeline-img img {
    transform: scale(1.05);
}

/* --- Brand Marquee --- */
.brand-marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    position: relative;
}

.brand-marquee::before,
.brand-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
}

.brand-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--white), transparent);
}

.brand-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--white), transparent);
}

.brand-track {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    animation: marqueeScroll 25s linear infinite;
}

.brand-track img {
    height: 36px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--transition);
}

.brand-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Portfolio Card Image (replacing bg icons) --- */
.portfolio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img {
    transform: scale(1.08);
}

/* --- Industry Cards --- */
.industry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.industry-img {
    height: 180px;
    overflow: hidden;
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-img img {
    transform: scale(1.08);
}

.industry-card h5 {
    padding: 18px 15px;
    margin: 0;
    text-align: center;
    font-size: 1.05rem;
}

.industry-card p {
    padding: 0 15px 18px;
    margin: 0;
    font-size: 0.88rem;
    text-align: center;
    color: var(--gray-500);
}

/* --- Tech Badges --- */
.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    background: var(--white);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}

.tech-badge:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
    color: var(--primary-teal);
}

.tech-badge img {
    width: 22px;
    height: 22px;
}

/* --- Result / Case Study Cards --- */
.result-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.result-card-img {
    height: 200px;
    overflow: hidden;
}

.result-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.result-card:hover .result-card-img img {
    transform: scale(1.08);
}

.result-card-body {
    padding: 20px;
}

.result-card-body h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.result-card-body p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

/* --- Gallery Images --- */
.gallery-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 220px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-img:hover img {
    transform: scale(1.06);
    filter: brightness(1.08);
}

/* --- Mini Stat Cards (Contact page) --- */
.mini-stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px 15px;
    text-align: center;
    transition: var(--transition);
}

.mini-stat-card:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.mini-stat-card i {
    font-size: 1.6rem;
    color: var(--primary-pink);
    margin-bottom: 8px;
    display: block;
}

.mini-stat-card h6 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.mini-stat-card p {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin: 0;
}

/* --- Team / Service Detail Real Images --- */
.team-img img,
.about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Legal Pages (Terms & Privacy) --- */
.legal-content {
    font-size: 0.95rem;
    line-height: 1.85;
}

.legal-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.legal-number {
    color: var(--primary-pink);
    font-weight: 700;
    margin-right: 4px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.legal-list li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--gray-700);
}

.legal-list li i {
    color: var(--primary-teal);
    margin-top: 3px;
    flex-shrink: 0;
}

.legal-content .table {
    font-size: 0.88rem;
}

.legal-content .table thead {
    background: var(--gray-100);
}

.legal-content .table th,
.legal-content .table td {
    padding: 10px 15px;
    vertical-align: middle;
}

/* ====== LIVELY ANIMATIONS ====== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-200deg); }
    to { opacity: 1; transform: rotate(0); }
}

.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-bounce-in { animation: bounceIn 0.8s ease forwards; }

/* Lively hover effects */
.service-card:hover,
.portfolio-card:hover {
    box-shadow: var(--shadow-lg);
}

.timeline-icon {
    animation: pulse 2.5s ease-in-out infinite;
}

.brand-track:hover {
    animation-play-state: paused;
}

/* --- Floating Bubbles --- */
.bubbles-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubbles-container ~ * {
    position: relative;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    animation: bubbleRise linear infinite;
}

.page-hero .bubble,
.hero-section .bubble {
    background: rgba(255, 255, 255, 0.1);
}

.cta-section .bubble {
    background: rgba(255, 255, 255, 0.08);
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: var(--bubble-opacity, 0.08);
    }
    25% { transform: translateY(-25vh) translateX(15px) scale(1.05); }
    50% { transform: translateY(-50vh) translateX(-10px) scale(0.95); }
    75% { transform: translateY(-75vh) translateX(20px) scale(1.02); }
    100% {
        transform: translateY(-110vh) translateX(-5px) scale(0.9);
        opacity: 0;
    }
}

/* --- Scroll Progress Bar --- */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--primary-pink);
    z-index: 10000;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* --- Card Tilt Transition Recovery --- */
.service-card,
.pricing-card,
.mission-card,
.result-card {
    transition: transform 0.25s ease, box-shadow 0.3s ease;
}

/* --- Feature Highlight Section --- */
.feature-highlight {
    position: relative;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-highlight:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: var(--white);
    background: var(--primary-pink);
}

.feature-highlight-icon.teal { background: var(--primary-teal); }
.feature-highlight-icon.dark { background: var(--dark); }

.feature-highlight h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-highlight p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 0;
}

/* --- Comparison Table --- */
.comparison-table {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table thead th {
    background: var(--dark);
    color: var(--white);
    padding: 15px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table tbody td {
    padding: 13px 18px;
    font-size: 0.9rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--dark);
}

.comparison-table tbody tr:hover td {
    background: rgba(232,56,109,0.03);
}

/* --- Stat Highlight Row --- */
.stat-highlight {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.stat-highlight:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-highlight .stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.4rem;
    background: rgba(232,56,109,0.1);
    color: var(--primary-pink);
}

.stat-highlight h3 {
    font-size: 2rem;
    color: var(--primary-pink);
    margin-bottom: 4px;
}

.stat-highlight p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* --- Why Choose Bullets --- */
.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.why-choose-item .wc-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43,188,212,0.12);
    color: var(--primary-teal);
    font-size: 1.1rem;
}

.why-choose-item h6 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.why-choose-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* --- Testimonial Quote Card (service pages) --- */
.quote-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-left: 4px solid var(--primary-pink);
}

.quote-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4rem;
    line-height: 1;
    color: rgba(232,56,109,0.1);
    font-family: Georgia, serif;
}

.quote-card p {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 15px;
}

.quote-card .quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-card .quote-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-card .quote-author h6 {
    margin: 0;
    font-size: 0.9rem;
}

.quote-card .quote-author span {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* --- Tools/Stack Showcase --- */
.tool-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 22px 15px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.tool-card:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.tool-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.tool-card h6 {
    font-size: 0.88rem;
    margin: 0;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 991.98px) {
    .hero-slide h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-form-card {
        margin-top: 30px;
    }

    .floating-icons {
        right: 10px;
    }

    .floating-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .navbar .navbar-collapse {
        background: var(--dark);
        border-radius: var(--radius-md);
        padding: 15px;
        margin-top: 10px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    /* Timeline collapses to single column */
    .timeline::before {
        left: 20px;
    }

    .timeline-icon {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        text-align: left;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-img { height: 140px; }
}

@media (max-width: 767.98px) {
    .hero-slide h1 {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .contact-form-wrap {
        padding: 25px;
    }

    .gallery-img { height: 180px; }
    .industry-img { height: 150px; }
    .result-card-img { height: 160px; }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 70px;
    }

    .hero-form-card {
        padding: 25px 20px;
    }

    .footer-top {
        padding: 50px 0 30px;
    }
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Swiper Custom Styles */
.hero-swiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    width: 10px;
    height: 10px;
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary-pink);
    width: 30px;
    border-radius: 10px;
}

/* Loading overlay */
.form-loading {
    pointer-events: none;
    opacity: 0.7;
}
.logo{
    height: 65px;
}

/* ====== ENQUIRY POPUP MODAL ====== */
.enquiry-modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.enquiry-modal-header {
    background: var(--dark);
    color: var(--white);
    padding: 20px 24px;
    border-bottom: none;
}

.enquiry-modal-header .modal-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
}

.enquiry-modal-header .modal-title i {
    color: var(--primary-teal);
}

#popupEnquiryForm .form-control,
#popupEnquiryForm .form-select {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-200);
    padding: 0.9rem 0.75rem;
    font-size: 0.92rem;
    transition: var(--transition);
}

#popupEnquiryForm .form-control:focus,
#popupEnquiryForm .form-select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(43,188,212,0.12);
}

.popup-service-select {
    height: calc(3.5rem + 3px);
    color: var(--gray-500);
}

.popup-service-select:has(option[value=""]:checked) {
    color: var(--gray-500);
}

.popup-service-select option:not([disabled]) {
    color: var(--dark);
}

#popupEnquiryForm .form-floating > label {
    color: var(--gray-500);
    font-size: 0.88rem;
}

#popupEnquiryForm .btn-gradient {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

#popupEnquiryForm .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,56,109,0.3);
}

/* ====== GLOBAL PRESENCE SECTION ====== */
.global-presence-section {
    background: #f8f9fa;
    overflow: hidden;
}

.global-presence-section .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.country-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.country-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 2px solid var(--primary-pink);
    border-radius: 50px;
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.country-badge:hover {
    background: var(--primary-pink);
    color: #fff;
    transform: translateY(-2px);
}

.flags-container {
    position: relative;
    padding: 20px;
}

.world-map-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cpath d='M100,200 Q200,100 300,180 T500,160 T700,200 Q750,220 700,250 T500,280 T300,260 Q200,240 100,200Z' fill='none' stroke='%23e0e0e0' stroke-width='1.5'/%3E%3Cpath d='M50,180 Q150,80 250,150 T450,140 T650,180 Q700,200 650,230 T450,260 T250,240 Q150,220 50,180Z' fill='none' stroke='%23eee' stroke-width='1'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.5;
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.flag-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flag-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-wrapper:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.flag-svg {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .global-presence-section .section-title {
        font-size: 2rem;
    }
    .flags-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .global-presence-section .section-title {
        font-size: 1.6rem;
    }
    .flags-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .flag-wrapper {
        width: 110px;
        height: 110px;
    }
    .country-badge {
        padding: 6px 18px;
        font-size: 0.8rem;
    }
}


h1{
    color: red;
    font-size: 5px;
}
.main-heading{
    color: blue;
    background-color: yellow;
}
#Sub{
    color: green;
    font-size: 15px;
}