:root {
    --primary: #f723ac;
    /* Vivid Magenta */
    --secondary: #4caf50;
    /* Vivid Green */
    --primary-dark: #CC00CC;
    --secondary-dark: #00aa66;
    --light: #FFF;
    --dark: #333;
    --gray: #F5F5F5;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--gray);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 10%;
    padding-right: 10%;
}


/* ===============================
         MODERN HEADER STYLES
      ================================ */

.modern-header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1000 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.modern-header.hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 80px;
}


/* ===============================
         LOGO SECTION
      ================================ */

.header-logo {
    flex-shrink: 0;
}

.logo-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
}

.logo-image {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain;
    border-radius: 12px;
    background: linear-gradient(135deg, #f723ac, #ff6b9d);
    padding: 8px;
}

.logo-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.2;
}

.brand-name {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    letter-spacing: -0.5px;
    margin: 0 !important;
}

.brand-tagline {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #6b7280 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 !important;
}


/* ===============================
         NAVIGATION MENU
      ================================ */

.header-nav {
    flex: 1;
    display: flex !important;
    justify-content: center;
}

.nav-menu {
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex !important;
    align-items: center !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff !important;
    background: rgba(247, 35, 172, 0.08) !important;
}

.nav-link.active {
    color: #f7f7f7 !important;
    background: rgba(247, 35, 172, 0.12) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #f723ac;
    border-radius: 50%;
}


/* ===============================
     
                       /* ===============================
         CTA BUTTON
      ================================ */

.header-cta {
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    max-width: max-content;
    white-space: nowrap;
    padding: 12px 18px;
    background: linear-gradient(135deg, #f723ac, #ff6b9d);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    border: none;
    cursor: pointer;
    /* ✅ Proper centering */
    margin: 0 auto;
    display: inline-flex;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 6px 18px rgba(247, 35, 172, 0.3);
}


/* ✅ SOLID hover color (NOT transparent) */

.cta-button:hover {
    background: linear-gradient(135deg, #f723ac, #ff6b9d);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(247, 35, 172, 0.45);
    color: #fff;
}


/* ===============================
         MOBILE TOGGLE
      ================================ */

.mobile-toggle {
    display: none !important;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none !important;
    border: none !important;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-toggle:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #374151 !important;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}


/* ===============================
         MOBILE MENU OVERLAY
      ================================ */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo img {
    width: 32px;
    height: 32px;
}

.mobile-logo span {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.mobile-close {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
}

.mobile-close:hover {
    background: #e5e7eb;
    color: #374151;
}

.mobile-nav {
    padding: 24px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #f723ac;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}


/* ===============================
         RESPONSIVE DESIGN
      ================================ */

@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }
    .nav-menu {
        gap: 4px;
    }
    .nav-link {
        padding: 10px 16px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .header-nav,
    .header-cta {
        display: none !important;
    }
    .mobile-toggle {
        display: flex !important;
    }
    .logo-text {
        display: none !important;
    }
    .logo-image {
        width: 40px !important;
        height: 40px !important;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
        height: 70px;
    }
    .mobile-menu-content {
        width: 280px;
    }
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ===============================
         NAVIGATION MENU
      ================================ */

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #f723ac;
    background: rgba(247, 35, 172, 0.08);
}

.nav-link.active {
    color: #f723ac;
    background: rgba(247, 35, 172, 0.12);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #f723ac;
    border-radius: 50%;
}


/* ===============================
         DROPDOWN MENU
      ================================ */

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    margin-left: 8px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.2s ease;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    padding: 8px;
    margin-top: 8px;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(247, 35, 172, 0.08);
    color: #f723ac;
}


/* ===============================
      
                   /* ===============================
         MOBILE TOGGLE
      ================================ */

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #374151;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}


/* ===============================
         MOBILE MENU OVERLAY
      ================================ */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo img {
    width: 32px;
    height: 32px;
}

.mobile-logo span {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.mobile-close {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
}

.mobile-close:hover {
    background: #e5e7eb;
    color: #374151;
}

.mobile-nav {
    padding: 24px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #f723ac;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}


/* ===============================
         RESPONSIVE DESIGN
      ================================ */

@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }
    .nav-menu {
        gap: 4px;
    }
    .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-nav,
    .header-cta {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .logo-text {
        display: none;
    }
    .logo-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
        height: 70px;
    }
    .mobile-menu-content {
        width: 280px;
    }
}


/* Main Content */

main {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
}

.page {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.page.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: pageFadeIn 0.8s forwards;
}

@keyframes pageFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Hero Section */

.hero {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 0, 0.1));
    padding: 80px 0;
    border-radius: 20px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.1);
    transition: var(--transition);
}

.hero:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(255, 0, 255, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--dark);
}


/* Page Sections */

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #4caf50, #00aa66);
    border-radius: 5px;
}


/* Cards */

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-15px) rotateY(10deg);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.15);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #4caf50, #00aa66);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f723ac, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    transition: var(--transition);
}

.card-icon i {
    color: var(--light);
    font-size: 30px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.card p {
    color: #666;
}


/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item-1 {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
    transition: var(--transition);
    height: 250px;
}

.gallery-item-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}


/* Contact Form */

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-detail i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background-color: var(--light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transform-style: preserve-3d;
    transition: var(--transition);
}

.contact-form:hover {
    transform: translateY(-10px) rotateY(-10deg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
}

.submit-btn {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--light);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.2);
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 255, 0.3);
}


/* Footer */

footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo-icon {
    margin-bottom: 20px;
}

.footer-logo p {
    margin-top: 15px;
    color: #aaa;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary);
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}


/* Responsive Design */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: var(--light);
        box-shadow: var(--shadow);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin: 10px 0;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .cards-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header-content {
        padding: 15px 0;
    }
    .logo-text h1 {
        font-size: 1.5rem;
    }
    main {
        margin-top: 80px;
    }
    .hero {
        padding: 50px 0;
    }
}


/* About Hero Section */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}


/* Dark overlay for text readability */

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}


/* Content */

.about-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.about-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.about-hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    opacity: 0.95;
}


/* Mobile Optimization */

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
    }
}


/* ===============================
   LEADERSHIP PAGE STYLES
================================ */


/* Leadership Message Cards */

.leadership-message-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #f723ac;
    transition: transform 0.3s ease;
}

.leadership-message-card:hover {
    transform: translateY(-5px);
}

.leadership-message-card.reverse {
    grid-template-columns: 1fr 300px;
    border-left: 5px solid #4caf50;
}

.leadership-message-card.reverse .leader-photo {
    order: 2;
}

.leadership-message-card.reverse .leader-content {
    order: 1;
}

.leader-photo {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.leader-badge.president {
    background: linear-gradient(135deg, #f723ac, #ff6b9d);
}

.leader-badge.vice-president {
    background: linear-gradient(to right, #4caf50, #00aa66);
}

.leader-badge.secretary {
    background: linear-gradient(135deg, #2196f3, #03a9f4);
}

.leader-content h3 {
    color: #f723ac;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.leader-content h4 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.tenure {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.message-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}


/* Profile Cards */

.leadership-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.profile-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid #f723ac;
}

.profile-card:hover {
    transform: translateY(-10px);
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #f723ac;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h4 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.designation {
    color: #f723ac;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.specialization {
    color: #666;
    margin-bottom: 5px;
}

.profile-details {
    margin-top: 20px;
    text-align: left;
}

.profile-details p {
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-details i {
    color: #f723ac;
    width: 16px;
}


/* ===============================
   COMMUNITY SERVICES PAGE STYLES
================================ */


/* Service Categories */

.service-categories {
    margin-bottom: 80px;
}

.service-category {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #f723ac;
    transition: transform 0.3s ease;
    align-items: center;
}

.service-category:hover {
    transform: translateY(-5px);
}

.service-category.reverse {
    grid-template-columns: 1fr 300px;
    border-left: 5px solid #4caf50;
}

.service-category.reverse .service-image {
    order: 2;
}

.service-category.reverse .service-content {
    order: 1;
}

.service-image {
    width: 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-category:hover .service-image img {
    transform: scale(1.1);
}

.service-content h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #f723ac;
    font-size: 0.9rem;
}


/* Impact Statistics */

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid #f723ac;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card:nth-child(even) {
    border-top-color: #4caf50;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f723ac, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.stat-card:nth-child(even) .stat-icon {
    background: linear-gradient(to right, #4caf50, #00aa66);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}


/* ===============================
   MEDICAL CAMPS PAGE STYLES
================================ */


/* Medical Camps Styles */

.camps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.camp-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid #f723ac;
    position: relative;
}

.camp-card:hover {
    transform: translateY(-5px);
}

.camp-card.completed {
    border-top-color: #00aa66;
}

.camp-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.camp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.camp-card:hover .camp-image img {
    transform: scale(1.1);
}

.camp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(247, 35, 172, 0.05), rgba(0, 255, 0, 0.05));
}

.camp-date {
    text-align: center;
    background: #f723ac;
    color: white;
    border-radius: 10px;
    padding: 10px 15px;
    min-width: 70px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.camp-card.completed .camp-date {
    background: #00aa66;
}

.date-day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 600;
}

.date-year {
    font-size: 0.8rem;
    opacity: 0.9;
}

.camp-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.upcoming-badge {
    background: rgba(247, 35, 172, 0.1);
    color: #f723ac;
    border: 1px solid rgba(247, 35, 172, 0.3);
}

.completed-badge {
    background: rgba(0, 255, 0, 0.1);
    color: #00aa66;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.camp-content {
    padding: 25px;
}

.camp-content h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.camp-details {
    margin-bottom: 20px;
}

.camp-details p {
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.camp-details i {
    color: #f723ac;
    width: 16px;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.specialty-tag {
    background: rgba(247, 35, 172, 0.1);
    color: #f723ac;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.expected-beneficiaries,
.beneficiaries-served {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-weight: 600;
}

.expected-beneficiaries i {
    color: #f723ac;
}

.beneficiaries-served i {
    color: #00aa66;
}


/* Specialties Grid */

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.specialty-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    border-top: 3px solid #f723ac;
}

.specialty-card:hover {
    transform: translateY(-5px);
}

.specialty-card:nth-child(even) {
    border-top-color: #00aa66;
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f723ac, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.specialty-card:nth-child(even) .specialty-icon {
    background: linear-gradient(135deg, #00aa66, #4caf50);
}

.specialty-card h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.specialty-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Impact Summary */

.impact-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.impact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid #f723ac;
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-card:nth-child(even) {
    border-top-color: #00aa66;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f723ac;
    margin-bottom: 10px;
}

.impact-card:nth-child(even) .impact-number {
    color: #00aa66;
}

.impact-label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}


/* ===============================
   NEWS PAGE STYLES
================================ */


/* News Grid */

.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news-card {
    flex: 1 1 calc(33.333% - 20px);
    /* 3 cards per row */
    min-width: 300px;
}

.news-image {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    background: #f3f3f3;
    margin-bottom: 14px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card.featured {
    flex: 1 1 100%;
    /* Featured takes full width */
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f723ac;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: #f723ac;
}

.news-content h3 {
    color: #333;
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-content h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #f723ac;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #e91e63;
    gap: 10px;
}


/* Circulars Section */

.circulars-section {
    margin-bottom: 80px;
}

.circular-item {
    display: flex;
    gap: 25px;
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #4caf50;
    transition: transform 0.3s ease;
}

.circular-item:hover {
    transform: translateY(-3px);
}

.circular-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f723ac, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.circular-content h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.circular-subject {
    color: #f723ac;
    font-weight: 600;
    margin-bottom: 5px;
}

.circular-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.circular-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.download-link {
    color: #f723ac;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.download-link:hover {
    color: #e91e63;
    transform: translateX(5px);
}


/* Activities Timeline */

.activities-timeline {
    margin-bottom: 80px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 90px;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #00aa66, transparent);
}

.timeline-date {
    text-align: center;
    flex-shrink: 0;
}

.date-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f723ac, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.date-month {
    color: #fffefe;
    font-size: 0.9rem;
    font-weight: 600;
}

.timeline-content {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    flex: 1;
    border-left: 4px solid #00aa66;
}

.timeline-content h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.activity-location {
    color: #f723ac;
    font-weight: 600;
    margin-bottom: 10px;
}

.activity-description {
    color: #555;
    line-height: 1.6;
}


/* Notices Section */

.notices-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.notice-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #f723ac;
    transition: transform 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
}

.notice-card.important {
    border-top-color: #ff9800;
}

.notice-card.urgent {
    border-top-color: #f44336;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.notice-priority {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    background: #f723ac;
}

.notice-card.important .notice-priority {
    background: #ff9800;
}

.notice-card.urgent .notice-priority {
    background: #f44336;
}

.notice-date {
    color: #666;
    font-size: 0.85rem;
}

.notice-card h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.notice-card p {
    color: #555;
    line-height: 1.6;
}


/* ===============================
   SHARED STYLES
================================ */


/* Call to Action Section */

.cta-section {
    background: linear-gradient(135deg, rgba(247, 35, 172, 0.1), rgba(0, 255, 0, 0.1));
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 60px;
}

.cta-content h3 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 30px;
}


/* ===============================
   RESPONSIVE STYLES
================================ */


/* Tablet and Mobile Responsive */

@media (max-width: 768px) {
    /* Leadership Page */
    .leadership-message-card,
    .leadership-message-card.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .leadership-message-card.reverse .leader-photo,
    .leadership-message-card.reverse .leader-content {
        order: unset;
    }
    .leader-photo {
        height: 300px;
        max-width: 250px;
        margin: 0 auto;
    }
    .leadership-profiles {
        grid-template-columns: 1fr;
    }
    /* Community Services Page */
    .service-category,
    .service-category.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .service-category.reverse .service-image,
    .service-category.reverse .service-content {
        order: unset;
    }
    .service-image {
        width: 100%;
        margin: 0 auto 20px;
    }
    .service-icon {
        margin-bottom: 20px;
    }
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Medical Camps Page */
    .camps-grid {
        grid-template-columns: 1fr;
    }
    .camp-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .impact-summary {
        grid-template-columns: repeat(2, 1fr);
    }
    /* News Page */
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card.featured {
        grid-row: span 1;
    }
    .circular-item {
        flex-direction: column;
        text-align: center;
    }
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    .timeline-item::after {
        display: none;
    }
    .timeline-date {
        margin-bottom: 20px;
    }
    .notices-section {
        grid-template-columns: 1fr;
    }
    /* Shared Styles */
}

@media (max-width: 480px) {
    /* Community Services */
    .impact-stats {
        grid-template-columns: 1fr;
    }
    .service-category {
        padding: 30px 20px;
    }
    /* Medical Camps */
    .specialties-grid,
    .impact-summary {
        grid-template-columns: 1fr;
    }
    .camp-content {
        padding: 20px;
    }
    /* News */
    .news-content,
    .circular-item,
    .timeline-content,
    .notice-card {
        padding: 20px;
    }
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
    /* Shared */
    .cta-section {
        padding: 40px 20px;
    }
}