/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.close:hover {
    color: #14b8a6;
}

.modal-caption {
    color: white;
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 500;
}

/* Gallery Image Hover Effect */
.carousel-slide img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    gap: 1rem;
}

/* Logo Styles */
.nav-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.logo-square {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 8px;
    position: relative;
}

.logo-square::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: white;
    border-radius: 4px;
    opacity: 0.9;
}

.logo-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-dots span {
    width: 4px;
    height: 4px;
    background: #14b8a6;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    text-decoration: none;
}

.logo-tagline {
    font-size: 9px;
    color: #666666;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-top: 2px;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.8rem;
}

/* Remove underlines from logo link */
.nav-logo a {
    text-decoration: none;
}

.nav-logo a:hover {
    text-decoration: none;
}

.nav-logo a:focus {
    text-decoration: none;
}

.nav-logo a:visited {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}


.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: white;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

/* Active navigation link */
.nav-link.active {
    color: white;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.2);
}

/* Removed underline effect - using background hover instead */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(20, 184, 166, 0.4) 0%, rgba(13, 148, 136, 0.4) 100%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: slideInUp 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: #14b8a6;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #14b8a6;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #14b8a6;
    border: 2px solid #14b8a6;
}

.btn-outline:hover {
    background: #14b8a6;
    color: white;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

/* About Section */
.about {
    background: #f8fafc;
    padding: 50px 0 40px 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
}

.about-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a202c;
    font-weight: 600;
    line-height: 1.3;
}

.about-section p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Leadership Team Section */
.leadership-team {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leadership-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Founder Section */
.founder-section {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.founder-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #14b8a6;
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
    flex-shrink: 0;
}

.founder-info {
    text-align: center;
}

.founder-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-weight: 700;
    text-align: center;
}

.founder-title {
    color: #14b8a6;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.bio-summary {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 0;
}

/* Co-Founders Section */
.co-founders-section {
    margin-top: 1.5rem;
    text-align: center;
}

.co-founders-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a202c;
}

.co-founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

.co-founder-card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid #f1f5f9;
}

.co-founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #14b8a6;
}

.co-founder-image {
    margin-bottom: 1rem;
}

.co-founder-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(20, 184, 166, 0.3);
}

.co-founder-info {
    text-align: center;
}

.co-founder-name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-weight: 600;
}

.co-founder-role {
    color: #14b8a6;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.co-founder-expertise {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.expertise-tag {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Enhanced Leadership Team Styles */
.leadership-header {
    text-align: center;
    margin-bottom: 3rem;
}

.leadership-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000 !important;
}

.leadership-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.founder-image-container {
    position: relative;
    flex-shrink: 0;
}

.founder-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.founder-badge i {
    font-size: 0.9rem;
}

.founder-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    border: 1px solid #e2e8f0;
}

.stat-item i {
    color: #14b8a6;
    font-size: 1rem;
}

.founder-expertise {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.founder-expertise .expertise-tag {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.about-founder {
    display: flex;
    justify-content: center;
}

.founder-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 600px;
}

.founder-card:hover {
    transform: translateY(-5px);
}

.founder-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.founder-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #14b8a6;
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.founder-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.founder-title {
    color: #14b8a6;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.founder-bio {
    text-align: left;
    margin-top: 1rem;
}

.bio-summary {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #14b8a6;
}

.founder-details {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.founder-details h4 {
    color: #14b8a6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.founder-details h4:first-child {
    margin-top: 0;
}

.founder-details ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.founder-details ul:last-child {
    margin-bottom: 0;
}

.founder-details li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #555;
}

.founder-details li strong {
    color: #14b8a6;
    font-weight: 600;
}

/* Contact Page Specific Styles */
.ceo-profile-card {
    display: flex;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
    align-items: flex-start;
}

.ceo-image {
    flex-shrink: 0;
}

.ceo-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #14b8a6;
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.ceo-info {
    flex: 1;
}

.ceo-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 700;
}

.ceo-title {
    color: #14b8a6;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.ceo-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.ceo-achievements h4 {
    color: #14b8a6;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ceo-achievements ul {
    margin: 0;
    padding-left: 1.5rem;
}

.ceo-achievements li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.5;
}

.social-links-section {
    margin-top: 4rem;
    text-align: center;
}

.social-links-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: #14b8a6;
}

.social-link i {
    font-size: 2rem;
    color: #14b8a6;
}

.social-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .ceo-profile-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .ceo-image img {
        width: 150px;
        height: 150px;
    }
    
    .ceo-info h3 {
        font-size: 1.5rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        min-width: 100px;
        padding: 1rem;
    }
    
    .social-link i {
        font-size: 1.5rem;
    }
}

/* Very Small Mobile Screens */
@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        min-height: 100%;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1.5rem;
    }

    .hero-buttons .btn {
        width: 90%;
        max-width: 250px;
    }
}

.bio-details h4 {
    color: #333;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.bio-details ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.bio-details li {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.5;
}

.experience-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 3px solid #14b8a6;
}

.experience-item strong {
    color: #14b8a6;
    font-size: 1rem;
}

.experience-item p {
    margin: 0.5rem 0 0 0;
    color: #666;
    font-size: 0.9rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.skill-tag {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Co-Founders Section */
.co-founders-section {
    margin-top: 3rem;
    text-align: center;
}

.co-founders-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.co-founders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.co-founder-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.co-founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.co-founder-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.co-founder-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 700;
    line-height: 1.2;
}

.co-founder-role {
    color: #14b8a6;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Solutions Section */
.solutions {
    background: #f8fafc;
    padding: 80px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.feature-tag {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.solution-card:hover .card-hover-effect {
    left: 100%;
}

/* Development Process Section */
.development-process {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid #e5e7eb;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Technologies Section */
.technologies-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid #e5e7eb;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
}

.tech-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-item {
    background: #f8fafc;
    color: #14b8a6;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    transform: translateY(-2px);
}

/* Our Products Section */
.products {
    background: white;
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #14b8a6;
    box-shadow: 0 20px 50px rgba(20, 184, 166, 0.2);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}


.product-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #14b8a6;
    margin-bottom: 1rem;
}

.product-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-features .feature-tag {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.live {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.status-badge::before {
    content: '●';
    margin-right: 6px;
    font-size: 0.8rem;
}

/* Responsive adjustments for products */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }
}

/* Portfolio Section */
.portfolio {
    background: #f8fafc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.portfolio-metrics {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.metric {
    background: #f0f9ff;
    color: #14b8a6;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Clients Section */
.clients {
    background: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    color: #666;
    text-align: center;
}

.client-logo:hover {
    transform: translateY(-5px);
    color: #14b8a6;
}

.client-logo i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.client-image {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8fafc;
    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yeforum-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    position: relative;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0066cc;
    letter-spacing: -0.5px;
    text-transform: capitalize;
}

.trademark {
    font-size: 0.5rem;
    color: #000000;
    margin-left: 1px;
    margin-top: -6px;
    position: absolute;
    top: 6px;
    right: 6px;
    font-weight: normal;
}

.unique-vacations-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
}

.go4ship-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
}

.clothaura-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
}

.sks-finance-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
}

.client-logo small {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.25rem;
}

/* Gallery Carousel Section */
.gallery-carousel {
    background: #f8fafc;
    padding: 80px 0;
}

.gallery-carousel-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-carousel-tab {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-carousel-tab i {
    font-size: 1.1rem;
}

.gallery-carousel-tab:hover {
    border-color: #14b8a6;
    color: #14b8a6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.2);
}

.gallery-carousel-tab.active {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-color: #14b8a6;
    color: white;
    box-shadow: 0 5px 20px rgba(20, 184, 166, 0.3);
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    display: none;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-container.active {
    display: block;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.carousel-slide {
    min-width: calc(25% - 15px);
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.carousel-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: #f8fafc;
    border: none;
    outline: none;
}

/* Fallback for images that don't load */
.carousel-slide img:not([src]),
.carousel-slide img[src=""],
.carousel-slide img[src*="undefined"] {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img:not([src])::after,
.carousel-slide img[src=""]::after,
.carousel-slide img[src*="undefined"]::after {
    content: "📷";
    font-size: 2rem;
    color: white;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.5);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Careers Section */
.careers {
    background: #f8fafc;
}

.careers-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.career-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
}

.career-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.career-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.career-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

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

.career-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #14b8a6;
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

/* Office Locations */
.office-locations {
    margin-bottom: 4rem;
}

.office-locations h3 {
    margin-bottom: 2.5rem;
}

/* Contact Info Bar */
.contact-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.info-item:hover i,
.info-item:hover span,
.info-item:hover a {
    color: white;
}

.info-item i {
    font-size: 1rem;
    color: #14b8a6;
    transition: color 0.3s ease;
}

.info-item span,
.info-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.office-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.office-header i {
    font-size: 1.5rem;
    color: #14b8a6;
}

.office-header h4 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-address {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: #14b8a6;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 65px;
        flex-direction: column;
        background-color: white;
        width: 80%;
        max-width: 320px;
        text-align: left;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
        padding: 1rem 0;
        z-index: 999;
        height: calc(100vh - 65px);
        overflow-y: auto;
        border-radius: 0 0 0 15px;
        gap: 0;
        display: none;
    }
    
    .nav-menu.active {
        right: 0;
        display: flex;
    }

    /* Backdrop overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-menu .nav-link {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        display: block;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        margin: 0;
        border-radius: 0;
        transition: all 0.2s ease;
        text-align: left;
    }

    .nav-menu .nav-link:hover {
        background-color: #f8fafc;
        transform: translateX(-2px);
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Logo responsiveness */
    .logo-container {
        gap: 8px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-square {
        width: 32px;
        height: 32px;
        border-radius: 6px;
    }

    .logo-square::before {
        top: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
        border-radius: 3px;
    }

    .logo-name {
        font-size: 20px;
    }

    .logo-tagline {
        font-size: 8px;
    }

    /* Ensure no underlines on mobile logo */
    .logo-name {
        text-decoration: none !important;
    }

    .logo-tagline {
        text-decoration: none !important;
    }

    .nav-logo a {
        text-decoration: none !important;
    }

    .nav-logo a:hover,
    .nav-logo a:focus,
    .nav-logo a:visited {
        text-decoration: none !important;
    }

    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-background {
        width: 100%;
        height: 100%;
    }

    .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    .gradient-overlay {
        width: 100%;
        height: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-main {
        order: 1;
    }
    
    .about-founder {
        order: 2;
    }

    /* Center align About section headings on mobile */
    .about-section h3 {
        text-align: center;
    }

    /* Leadership Team Mobile */
    .leadership-team {
        padding: 2rem;
        overflow-x: hidden;
    }

    .leadership-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Founder Section Mobile */
    .founder-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .founder-image img {
        width: 100px;
        height: 100px;
    }

    .founder-info h4 {
        font-size: 1.5rem;
    }

    /* Co-Founders Mobile */
    .co-founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .co-founder-card {
        padding: 1rem;
    }

    .co-founder-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .co-founder-card h5 {
        font-size: 1rem;
    }

    /* Image Modal Mobile */
    .modal-content {
        width: 95%;
        max-width: 100%;
    }

    .modal-content img {
        max-height: 70vh;
    }

    .close {
        top: -30px;
        font-size: 30px;
    }

    .modal-caption {
        font-size: 1rem;
        margin-top: 15px;
    }

    /* Co-Founders Mobile */
    .co-founders-section {
        overflow-x: hidden;
        width: 100%;
    }

    .co-founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .co-founder-card {
        padding: 1rem 0.5rem;
        min-height: auto;
        min-width: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .co-founder-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        flex-shrink: 0;
    }

    .co-founder-card h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .co-founder-role {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .skills-grid {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-bar {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .info-item {
        width: 100%;
        justify-content: center;
    }
    
    .office-card {
        padding: 1.5rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }

    .careers-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .development-process {
        margin-top: 3rem;
        padding-top: 2rem;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .solutions {
        padding: 40px 0;
        min-height: auto;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .technologies-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery Carousel Mobile */
    .gallery-carousel-tabs {
        flex-direction: row;
        gap: 0.75rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-carousel-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .gallery-carousel-tab i {
        font-size: 1rem;
    }

    .carousel-wrapper {
        padding: 0 50px;
        overflow: hidden;
    }

    .carousel-container {
        overflow: visible;
    }

    .carousel-track {
        gap: 15px;
    }

    .carousel-slide {
        min-width: calc(50% - 7.5px);
        border-radius: 8px;
    }

    .carousel-slide img {
        height: 200px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        padding: 0 40px;
        overflow: hidden;
    }

    .carousel-container {
        overflow: visible;
    }

    .carousel-track {
        gap: 10px;
    }

    .carousel-slide {
        min-width: 100%;
        border-radius: 6px;
    }

    .carousel-slide img {
        height: 180px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .gallery-carousel-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 100px;
    }

    .gallery-carousel-tabs {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    /* Contact Page Mobile Styles for Very Small Screens */
    .ceo-profile-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .ceo-image img {
        width: 120px;
        height: 120px;
    }

    .ceo-info h3 {
        font-size: 1.6rem;
    }

    .ceo-title {
        font-size: 1rem;
    }

    .ceo-description {
        font-size: 0.9rem;
    }

    .ceo-achievements h4 {
        font-size: 1rem;
    }

    .social-links-section h3 {
        font-size: 1.3rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        padding: 0.8rem;
        min-width: 80px;
    }

    .contact h3 {
        font-size: 1.3rem;
    }

    /* Contact Page Mobile Styles */
    .ceo-profile-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }

    .ceo-image {
        display: flex;
        justify-content: center;
    }

    .ceo-image img {
        width: 150px;
        height: 150px;
    }

    .ceo-info h3 {
        font-size: 1.8rem;
        text-align: center;
    }

    .ceo-title {
        text-align: center;
        font-size: 1.1rem;
    }

    .ceo-description {
        text-align: center;
        font-size: 0.95rem;
    }

    .ceo-achievements h4 {
        text-align: center;
        font-size: 1.1rem;
    }

    .ceo-achievements ul {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .social-links-section h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .social-link {
        padding: 1rem;
        min-width: 100px;
    }

    .contact h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .section-header h2 {
        text-align: center;
    }

    .section-header p {
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    /* Logo for very small screens */
    .logo-name {
        font-size: 18px;
    }

    .logo-tagline {
        font-size: 7px;
    }

    .logo-container {
        gap: 6px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .career-card,
    .solution-card,
    .contact-form {
        padding: 1.5rem;
    }

    .solutions-grid {
        gap: 1rem;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .process-step {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto 1rem auto;
    }

    /* Mobile navigation improvements */
    .nav-menu {
        padding: 0.8rem 0;
        width: 50%;
        max-width: 250px;
        right: -50%;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0.2rem 0;
    }

    .nav-menu .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        margin: 0 0.4rem;
    }

    /* Form improvements */
    .contact-form-section {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Office cards */
    .office-card {
        padding: 1rem;
    }

    .office-header h4 {
        font-size: 1.1rem;
    }

    .office-address {
        font-size: 0.9rem;
    }

    .co-founder-card {
        padding: 1rem 0.5rem;
        min-height: 140px;
    }

    .co-founder-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .co-founder-name {
        font-size: 0.9rem;
    }

    .co-founder-role {
        font-size: 0.7rem;
    }

    /* Enhanced Leadership Team Mobile Styles */
    .leadership-title {
        font-size: 1.4rem;
    }

    .leadership-subtitle {
        font-size: 0.9rem;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .founder-info {
        text-align: center;
    }

    .founder-name {
        font-size: 1.5rem;
    }

    .founder-stats {
        justify-content: center;
    }

    .founder-expertise {
        justify-content: center;
    }

    .founder-badge {
        position: static;
        margin: 1rem auto 0 auto;
        align-self: center;
    }

    /* Co-Founders Very Small Screens */
    .co-founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Our Offices Section Styles */
.office-locations {
    margin-top: 4rem;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.office-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.office-card.primary-office {
    border: 2px solid #14b8a6;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.office-card.branch-office {
    border: 1px solid #e2e8f0;
}

.office-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    z-index: 2;
}

.primary-office .office-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    padding-right: 6rem;
}

.office-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.primary-office .office-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.office-title h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.office-type {
    font-size: 0.9rem;
    color: #14b8a6;
    font-weight: 600;
    margin: 0;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-address {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.office-address i {
    color: #14b8a6;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.office-address p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.contact-item i {
    color: #14b8a6;
    width: 16px;
    text-align: center;
}

.office-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.office-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.office-actions .btn-primary {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    border: none;
}

.office-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.office-actions .btn-outline {
    background: transparent;
    color: #14b8a6;
    border: 2px solid #14b8a6;
}

.office-actions .btn-outline:hover {
    background: #14b8a6;
    color: white;
    transform: translateY(-2px);
}

/* Office Section Responsive */
@media (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .office-card {
        padding: 1.5rem;
    }
    
    .office-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-right: 0;
        margin-top: 0;
    }
    
    .office-actions {
        flex-direction: column;
    }
    
    .office-badge {
        position: static;
        margin-bottom: 1rem;
        align-self: flex-start;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .office-locations {
        margin-top: 2rem;
    }
    
    .office-card {
        padding: 1rem;
    }
    
    .office-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .office-title h4 {
        font-size: 1.2rem;
    }
}

/* Contact Form Section Styles */
.contact-form-section {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #4a5568;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #14b8a6;
    background: white;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #14b8a6;
    border-color: #14b8a6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.submit-btn {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-width: 180px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin: 0;
}

.form-note i {
    color: #14b8a6;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .form-title {
        font-size: 1.4rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 1rem;
    }
    
    .form-header {
        margin-bottom: 1.5rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   DONATION SYSTEM STYLES
   ======================================== */

.donation-section {
    background: #f9fafb;
    min-height: calc(100vh - 65px);
    padding: 80px 0;
}

@media (max-width: 768px) {
    .donation-section {
        padding: 20px 0 !important;
    }
}

.donation-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Progress Steps */
.donation-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: #14b8a6;
    color: white;
}

.progress-step.completed .step-circle {
    background: #10b981;
    color: white;
}

.step-label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
}

.progress-step.active .step-label {
    color: #14b8a6;
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 1rem;
    margin-top: -20px;
}

.progress-step.completed + .progress-line {
    background: #10b981;
}

/* Donation Steps */
.donation-step {
    display: none;
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.donation-step.active {
    display: block;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Cause Cards */
.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.cause-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cause-card:hover {
    border-color: #14b8a6;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.15);
    transform: translateY(-4px);
}

.cause-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.cause-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.cause-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Package Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.package-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: #14b8a6;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.15);
}

.package-card.popular {
    border-color: #14b8a6;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #14b8a6;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.package-price {
    margin-bottom: 1.5rem;
}

.package-price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

.package-price .period {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

.btn-select {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #14b8a6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.quantity-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #14b8a6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    border-color: #14b8a6;
    background: #f0fdfa;
}

#quantityInput {
    width: 100px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0;
}

.package-summary {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: #14b8a6;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
}

/* Donor Form */
.donor-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* Payment */
.payment-summary-card {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.payment-summary-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: #14b8a6;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.payment-method-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-btn:hover {
    border-color: #14b8a6;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.15);
    transform: translateY(-4px);
}

.payment-method-btn i {
    font-size: 2.5rem;
    color: #14b8a6;
}

.payment-method-btn span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.payment-method-btn small {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Success Step */
.success-content {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.success-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.success-content p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.donation-id {
    font-size: 1rem;
    color: #14b8a6;
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f0fdfa;
    border-radius: 0.5rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-primary {
    padding: 0.75rem 2rem;
    background: #14b8a6;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
    padding: 0.75rem 2rem;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-link {
    background: none;
    border: none;
    color: #14b8a6;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #6b7280;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.btn-back:hover {
    color: #14b8a6;
}

/* Donation Summary Sidebar */
.donation-summary {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 90px;
}

.donation-summary h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .donation-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem;
    }
    
    .donation-summary {
        position: static !important;
        margin-top: 2rem !important;
    }
    
    .donation-progress {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 1.5rem !important;
    }
    
    .progress-line {
        display: none;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px !important;
    }
    
    .donation-section {
        padding: 20px 0 !important;
        min-height: calc(100vh - 65px) !important;
    }
    
    .donation-container {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .donation-progress {
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
        flex-wrap: wrap;
        gap: 0.5rem !important;
    }
    
    .progress-step {
        flex: 0 0 auto;
        min-width: 50px;
    }
    
    .step-circle {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.9rem !important;
    }
    
    .step-label {
        font-size: 0.65rem !important;
        margin-top: 0.25rem !important;
    }
    
    .progress-line {
        display: none !important;
    }
    
    .donation-step {
        padding: 1.5rem 1rem !important;
        margin: 0 !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .section-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .causes-grid,
    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .cause-card {
        padding: 1.5rem !important;
    }
    
    .cause-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cause-card h3 {
        font-size: 1.25rem !important;
    }
    
    .cause-card p {
        font-size: 0.85rem !important;
    }
    
    .package-card {
        padding: 1.5rem !important;
    }
    
    .quantity-selector {
        margin: 1.5rem 0 !important;
    }
    
    .quantity-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.25rem !important;
    }
    
    #quantityInput {
        width: 80px !important;
        height: 45px !important;
        font-size: 1.25rem !important;
    }
    
    .package-summary {
        padding: 1rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .donor-form {
        max-width: 100% !important;
    }
    
    .form-group {
        margin-bottom: 1.25rem !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem !important;
        font-size: 1rem !important;
    }
    
    .payment-summary-card {
        padding: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .payment-methods {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .payment-method-btn {
        padding: 1.5rem !important;
    }
    
    .payment-method-btn i {
        font-size: 2rem !important;
    }
    
    .payment-method-btn span {
        font-size: 1rem !important;
    }
    
    .success-content {
        padding: 1.5rem 1rem !important;
    }
    
    .success-icon {
        font-size: 4rem !important;
        margin-bottom: 1rem !important;
    }
    
    .success-content h2 {
        font-size: 1.75rem !important;
    }
    
    .success-content p {
        font-size: 1rem !important;
    }
    
    .success-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        padding: 0.75rem 1.5rem !important;
    }
    
    .btn-back {
        margin-bottom: 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .donation-summary {
        position: static !important;
        margin-top: 1.5rem !important;
        padding: 1rem !important;
    }
    
    .summary-item {
        padding: 0.5rem 0 !important;
        font-size: 0.9rem !important;
    }
    
    .summary-item.total {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .donation-section {
        padding: 15px 0 !important;
    }
    
    .donation-progress {
        padding: 0.75rem !important;
    }
    
    .step-circle {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
    }
    
    .step-label {
        font-size: 0.6rem !important;
    }
    
    .donation-step {
        padding: 1rem 0.75rem !important;
    }
    
    .section-title {
        font-size: 1.25rem !important;
    }
    
    .section-subtitle {
        font-size: 0.85rem !important;
    }
    
    .cause-card,
    .package-card {
        padding: 1rem !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.65rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
}

