:root {
    --primary-pink: #de117c;
    --primary-dark: #a50d5c;
    --primary-light: #ff4d9f;
    --secondary-purple: #6b2d5c;
    --accent-gold: #ffd700;
    --dark-navy: #1a1a2e;
    --light-bg: #fff5fb;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(222, 17, 124, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-light));
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-pink);
}

.dropdown {
    position: relative;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    z-index: 999;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(222, 17, 124, 0.15);
    list-style: none;
    min-width: 250px;
    padding: 0.5rem 0;
    border-radius: 10px;
    border-top: 3px solid var(--primary-pink);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, var(--light-bg), var(--white));
    color: var(--primary-pink);
}

/* External link styling in dropdown */
.dropdown-menu a[target="_blank"] {
    position: relative;
}

.dropdown-menu a[target="_blank"]::before {
    content: '\f35d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.dropdown-menu a[target="_blank"]:hover::before {
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-pink);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-purple) 100%);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1200') center/cover;
    opacity: 0.08;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-pink);
    box-shadow: 0 4px 15px rgba(222, 17, 124, 0.3);
}

.btn-primary:hover {
    background: var(--accent-gold);
    color: var(--dark-navy);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-light));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(222, 17, 124, 0.1);
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(222, 17, 124, 0.2);
    border-color: var(--primary-pink);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(222, 17, 124, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-navy);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-navy);
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-light));
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s;
}

.feature:hover {
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    transform: translateX(5px);
}

.feature i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.feature span {
    color: var(--text-dark);
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(222, 17, 124, 0.2);
    border: 3px solid var(--light-bg);
}

/* Team Section */
.team {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

/* Leadership Message Section */
.leadership-message {
    padding: 80px 0;
    background: var(--white);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 50px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #de117c;
}

.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--light-bg);
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px 10px 0 0;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn:hover {
    color: var(--primary-pink);
    background: var(--light-bg);
}

.tab-btn.active {
    color: var(--primary-pink);
    background: var(--light-bg);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-light));
}

.tabs-content {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(222, 17, 124, 0.1);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.message-image {
    max-width: 100%;
    text-align: center;
}

.message-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(222, 17, 124, 0.15);
    transition: transform 0.3s;
    cursor: pointer;
}

.message-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tabs-content {
        padding: 20px;
    }
}

/* Team Section */
.team {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 100%;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(222, 17, 124, 0.15);
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
    width: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(222, 17, 124, 0.25);
    border-color: var(--primary-pink);
}

.member-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.member-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(222, 17, 124, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.team-member:hover .member-image::after {
    opacity: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    padding: 20px 15px 10px;
    color: var(--dark-navy);
    font-size: 1.1rem;
    line-height: 1.3;
}

.member-role {
    padding: 0 15px 20px;
    color: var(--primary-pink);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(222, 17, 124, 0.1);
    transition: all 0.3s;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(222, 17, 124, 0.2);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-top: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--dark-navy);
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
}

.info-item p a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin: 3px 0;
}

.info-item p a:hover {
    color: var(--primary-pink);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(222, 17, 124, 0.15);
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(222, 17, 124, 0.1);
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    overflow: hidden;
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-light), var(--accent-gold));
}

.clients-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin-top: 30px;
}

.clients-slider {
    display: flex;
    gap: 30px;
    animation: slideClients 60s linear infinite;
    width: max-content;
}

.clients-slider:hover {
    animation-play-state: paused;
}

@keyframes slideClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    min-width: 350px;
    max-width: 350px;
    box-shadow: 0 8px 30px rgba(222, 17, 124, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.client-card:hover::before {
    transform: scaleX(1);
}

.client-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 45px rgba(222, 17, 124, 0.25);
    border-color: var(--primary-pink);
}

.client-logo {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.client-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(222, 17, 124, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.client-card:hover .client-logo::after {
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
    filter: grayscale(20%);
}

.client-card:hover .client-logo img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.client-info {
    text-align: center;
}

.client-info h4 {
    font-size: 1.1rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.6;
}

.client-info p i {
    color: var(--primary-pink);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.client-info p a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.client-info p a:hover {
    color: var(--primary-pink);
}

/* Duplicate slider items for seamless loop */
.clients-slider::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--secondary-purple) 100%);
    color: var(--white);
    padding: 50px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-light), var(--accent-gold));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-pink);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--primary-pink);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(222, 17, 124, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Slide Menu */
.mobile-slide-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    z-index: 9999;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 20px rgba(222, 17, 124, 0.15);
    overflow-y: auto;
    border-right: 3px solid var(--primary-pink);
}

.mobile-slide-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-light));
    color: var(--white);
    box-shadow: 0 2px 10px rgba(222, 17, 124, 0.3);
}

.mobile-logo img {
    height: 55px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li {
    border-bottom: 1px solid rgba(222, 17, 124, 0.1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    gap: 12px;
}

.mobile-nav-link i {
    font-size: 1.1rem;
    color: var(--primary-pink);
    width: 20px;
    text-align: center;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(90deg, var(--light-bg), transparent);
    color: var(--primary-pink);
    padding-left: 25px;
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.mobile-dropdown-toggle {
    justify-content: space-between;
}

.mobile-dropdown-arrow {
    font-size: 0.9rem !important;
    transition: transform 0.3s;
    width: auto !important;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--light-bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-menu .mobile-nav-link {
    padding: 12px 20px 12px 50px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(222, 17, 124, 0.05);
}

.mobile-dropdown-menu .mobile-nav-link:hover {
    background: var(--white);
    padding-left: 55px;
}

.mobile-dropdown-menu .mobile-nav-link i {
    font-size: 0.9rem;
}

/* Hide desktop menu on mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Adjust dropdown menu width for smaller screens */
    .dropdown-menu {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(222, 17, 124, 0.2);
        border-radius: 0 0 10px 10px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        border: none;
        margin-top: 10px;
        min-width: auto;
        width: 100%;
        display: none;
        background: var(--light-bg);
        border-radius: 8px;
        padding: 10px 0 10px 20px;
    }
    
    .dropdown::before {
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown > a {
        position: relative;
        padding-right: 30px;
    }
    
    .dropdown > a i {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s;
    }
    
    .dropdown.active > a i {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .team {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .member-image {
        height: 300px;
    }
    
    .team-member h3 {
        font-size: 1.2rem;
        padding: 20px 15px 10px;
    }
    
    .member-role {
        font-size: 0.9rem;
        padding: 0 15px 20px;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .clients-section {
        padding: 60px 0;
    }
    
    .client-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px;
    }
    
    .client-logo {
        height: 150px;
    }
    
    .client-info h4 {
        font-size: 1rem;
        min-height: 45px;
    }
    
    .client-info p {
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 65px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .clients-section {
        padding: 50px 0;
    }
    
    .client-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
    }
    
    .client-logo {
        height: 130px;
        padding: 15px;
    }
    
    .client-info h4 {
        font-size: 0.95rem;
        min-height: 40px;
    }
    
    .client-info p {
        font-size: 0.8rem;
        margin: 6px 0;
    }
    
    .clients-slider {
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .member-image {
        height: 250px;
    }
    
    .team-member h3 {
        font-size: 1rem;
        padding: 15px 10px 8px;
    }
    
    .member-role {
        font-size: 0.8rem;
        padding: 0 10px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .info-item i {
        margin: 0 auto;
    }
    
    .info-item div {
        width: 100%;
    }
    
    .info-item p a {
        display: inline-block;
        margin: 5px 0;
    }
}


/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.partner-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    border: 2px solid var(--primary-pink);
    background: transparent;
    color: var(--primary-pink);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 17, 124, 0.3);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.partner-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(222, 17, 124, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(222, 17, 124, 0.2);
    border-color: var(--primary-pink);
}

.partner-logo {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
}

.partner-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.05);
}

.partner-card h3 {
    color: var(--dark-navy);
    font-size: 1.2rem;
    margin: 0;
}

.partner-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
}

.partner-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.partner-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* Partnership Benefits Section */
.partnership-benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(222, 17, 124, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(222, 17, 124, 0.2);
    border-color: var(--primary-pink);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(222, 17, 124, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    color: var(--dark-navy);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Partnership Types Section */
.partnership-types {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.type-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(222, 17, 124, 0.1);
    transition: all 0.3s;
    border-left: 4px solid var(--primary-pink);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(222, 17, 124, 0.2);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(222, 17, 124, 0.3);
}

.type-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.type-card h3 {
    color: var(--dark-navy);
    font-size: 1.2rem;
    margin: 0;
}

.type-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-purple) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200') center/cover;
    opacity: 0.08;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Responsive Design for Partners */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }

    .partner-categories {
        gap: 10px;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .partner-card {
        padding: 25px 20px;
    }

    .partnership-benefits {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 25px;
    }

    .partnership-types {
        padding: 60px 0;
    }

    .types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .type-card {
        padding: 30px 25px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partner-categories {
        flex-direction: column;
    }

    .category-btn {
        width: 100%;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }
}


/* Tenders Section */
.tenders-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.tender-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-pink);
    background: transparent;
    color: var(--primary-pink);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 17, 124, 0.3);
}

.tenders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.tender-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(222, 17, 124, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tender-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.tender-card:hover::before {
    transform: scaleX(1);
}

.tender-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(222, 17, 124, 0.2);
    border-color: var(--primary-pink);
}

.tender-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.tender-status {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tender-status.open {
    background: #d4edda;
    color: #155724;
}

.tender-status.closing-soon {
    background: #fff3cd;
    color: #856404;
}

.tender-status.closed {
    background: #f8d7da;
    color: #721c24;
}

.tender-id {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    background: var(--light-bg);
    padding: 6px 12px;
    border-radius: 8px;
}

.tender-card h3 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
    line-height: 1.4;
}

.tender-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.tender-meta p {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tender-meta i {
    color: var(--primary-pink);
    width: 16px;
    text-align: center;
}

.tender-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.tender-details {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

.detail-badge i {
    color: var(--primary-pink);
}

.tender-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.tender-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Tender Guidelines Section */
.tender-guidelines {
    padding: 80px 0;
    background: var(--white);
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.guideline-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(222, 17, 124, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.guideline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(222, 17, 124, 0.2);
    border-color: var(--primary-pink);
}

.guideline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(222, 17, 124, 0.3);
}

.guideline-icon i {
    font-size: 2rem;
    color: var(--white);
}

.guideline-card h3 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.guideline-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Responsive Design for Tenders */
@media (max-width: 768px) {
    .tenders-section {
        padding: 60px 0;
    }
    
    .tenders-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tender-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .tender-card {
        padding: 25px;
    }
    
    .tender-card h3 {
        font-size: 1.1rem;
    }
    
    .tender-guidelines {
        padding: 60px 0;
    }
    
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guideline-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .tender-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tender-details {
        flex-direction: column;
    }
    
    .detail-badge {
        width: 100%;
        justify-content: center;
    }
    
    .tender-filters {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
}
