/* Reset & Base Styles - Optimized */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1c2951;
    --primary-blue: #2a3b6c;
    --accent-pink: #ff00ff;
    --accent-light: #ff66ff;
    --accent-purple: #9933ff;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f8f9ff;
    --bg-gradient: linear-gradient(135deg, #ff00ff 0%, #9933ff 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* For fixed header */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    font-size: 16px; /* Base font size */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    cursor: pointer;
    will-change: transform; /* Performance optimization */
}

.whatsapp-icon {
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    animation: floatAnimation 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    backface-visibility: hidden; /* Prevent flickering */
}

.whatsapp-icon:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
    animation-play-state: paused; /* Pause animation on hover */
}

.whatsapp-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    top: -15px;
    left: -15px;
    animation: pulseAnimation 2s infinite;
    pointer-events: none;
}

.whatsapp-tooltip {
    position: absolute;
    top: -60px;
    right: 0;
    background: var(--primary-dark);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseAnimation {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Fixed Header - Optimized */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    will-change: transform, background-color; /* Performance hint */
}

#header.scrolled {
    padding: 10px 0;
    background-color: rgba(28, 41, 81, 0.95);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Container with Image */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-dot {
    color: var(--accent-pink);
}

.tagline {
    font-size: 11px; /* REDUCED FROM 12px */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-top: 2px;
    letter-spacing: 0.8px; /* REDUCED FROM 1px */
    line-height: 1.1; /* ADDED for better text wrapping */
}

/* Navigation */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--bg-gradient);
    border-radius: 1px;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link i.fa-chevron-down {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 15px 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(255, 0, 255, 0.05);
    color: var(--accent-pink);
    border-left-color: var(--accent-pink);
    padding-left: 30px;
}

.header-cta {
    margin-left: 20px;
}

.cta-btn {
    background: var(--bg-gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.4);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-dark);
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: var(--transition);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: white;
}

.mobile-dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-nav-dropdown.active .mobile-dropdown-icon {
    transform: rotate(90deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.mobile-nav-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-subnav-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.mobile-subnav-link:hover {
    color: white;
    padding-left: 10px;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none; /* Improve performance */
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(153, 51, 255, 0.1) 100%);
    filter: blur(40px);
    will-change: transform; /* Performance hint */
}

.bg-shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    animation: shapeFloat 20s infinite alternate;
}

.bg-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: shapeFloat 25s infinite alternate-reverse;
}

.bg-shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 60%;
    animation: shapeFloat 30s infinite;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 0, 255, 0.1);
    color: var(--accent-pink);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 0, 255, 0.2);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    line-height: 1.1;
}

.highlight {
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    min-width: 180px;
    transition: var(--transition);
    flex: 1;
    max-width: 250px;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Business Graph Section - Unique class names */
.topmay-business-graph-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.topmay-graph-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.topmay-graph-visual-container {
    position: relative;
}

.topmay-graph-image-frame {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.topmay-graph-image-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.topmay-graph-image-box {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.topmay-business-graph-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.topmay-graph-image-box:hover .topmay-business-graph-img {
    transform: scale(1.05);
}

.topmay-graph-overlay-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(153, 51, 255, 0.05) 100%);
    pointer-events: none;
}

.topmay-graph-badge-label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.topmay-badge-icon {
    font-size: 16px;
}

.topmay-graph-text-container {
    padding: 20px;
}

.topmay-graph-section-header {
    margin-bottom: 40px;
}

.topmay-graph-main-title {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.topmay-graph-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

.topmay-graph-performance-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.topmay-metric-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.topmay-metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.topmay-metric-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-pink);
    font-size: 20px;
    flex-shrink: 0;
}

.topmay-metric-content {
    flex: 1;
}

.topmay-metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
    line-height: 1;
}

.topmay-metric-label {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.4;
}

.topmay-graph-description-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.topmay-graph-action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Section Common Styles */
section {
    padding: 100px 0;
    scroll-margin-top: 100px; /* For fixed header */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.feature-list i {
    color: var(--accent-pink);
    font-size: 18px;
    flex-shrink: 0;
}

.about-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-visual {
    position: relative;
}

.visual-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--bg-gradient);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0.1;
}

.card-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.card-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.card-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: var(--bg-gradient);
    color: white;
    border-top-left-radius: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    will-change: transform; /* Performance hint */
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 40px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-desc {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.4;
}

/* CEO Section - UPDATED FOR BETTER IMAGE FITTING */
.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ceo-image {
    position: relative;
}

.image-frame {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.image-frame:hover {
    transform: translateY(-5px);
}

.image-container {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5; /* Fallback background if image doesn't load */
}

.ceo-photo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Changed from cover to contain - this prevents cropping */
    object-position: center;
    transition: var(--transition);
}

.image-frame:hover .ceo-photo {
    transform: scale(1.03); /* Reduced scale for better effect with contain */
}

.ceo-badge {
    display: inline-block;
    background: var(--bg-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.quote-icon {
    font-size: 40px;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

.ceo-title {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.ceo-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 30px;
    line-height: 1.6;
    border-left: 4px solid var(--accent-pink);
    padding-left: 20px;
}

.ceo-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.ceo-signature {
    margin-bottom: 30px;
}

.signature-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.signature-title {
    font-size: 16px;
    color: var(--text-gray);
}

/* Services/Categories Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.service-card:hover {
    transform: translateY(-15px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 50px;
    color: var(--accent-pink);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-title {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-desc {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: auto;
}

.service-link:hover {
    gap: 15px;
}

/* CTA Section */
.cta-section {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    border-top-left-radius: 50px;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 18px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Community Section */
.community-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.community-title {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.community-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.community-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.tag {
    background: rgba(255, 0, 255, 0.1);
    color: var(--accent-pink);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.tag:hover {
    background: var(--bg-gradient);
    color: white;
    transform: translateY(-5px);
    border-color: var(--accent-pink);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: left;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(255, 0, 255, 0.1);
}

.form-group textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo .logo-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo .logo-img {
    width: 60px;
    height: 60px;
}

.footer-tagline {
    opacity: 0.8;
    margin-top: 10px;
    font-size: 13px; /* REDUCED FROM 14px */
    line-height: 1.3; /* ADJUSTED for better readability */
}

.footer-subtag {
    opacity: 0.6;
    margin-top: 3px; /* REDUCED FROM 5px */
    font-size: 11px; /* REDUCED FROM 12px */
    line-height: 1.3; /* ADJUSTED for better readability */
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    line-height: 1.4;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--bg-gradient);
    transform: translateY(-5px);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: var(--bg-gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-pink);
    border: 2px solid var(--accent-pink);
}

.btn-secondary:hover {
    background: rgba(255, 0, 255, 0.1);
    transform: translateY(-5px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .topmay-graph-content-wrapper,
    .about-content,
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .topmay-graph-performance-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-actions,
    .topmay-graph-action-buttons,
    .about-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-title,
    .topmay-graph-main-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .topmay-graph-performance-metrics {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .whatsapp-pulse {
        width: 80px;
        height: 80px;
        top: -10px;
        left: -10px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .image-container {
        height: 300px;
    }
    
    /* Adjust logo for mobile */
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 10px; /* Adjusted for mobile */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title,
    .topmay-graph-main-title {
        font-size: 24px;
    }
    
    .section-subtitle,
    .topmay-graph-subtitle {
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .community-title {
        font-size: 28px;
    }
    
    .community-text {
        font-size: 16px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .image-container {
        height: 250px;
    }
    
    .topmay-graph-image-box {
        height: 300px;
    }
}