:root {
            --primary: #5D1916;
            --secondary: #FFF8DB;
            --dark: #2C0E0C;
            --light: #FFFEF5;
            --accent: #A83A33;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
        }

        
        /* ============================================
   SINGLE NAVBAR - COMPLETE VERSION
   ============================================ */

/* Header Base Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(93, 25, 22, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1003;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation - Visible on desktop */
.desktop-nav {
    display: flex;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Desktop Social Links */
.header-social-links {
    display: flex;
    gap: 1rem;
}

.header-social-links a {
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.header-social-links a:hover {
    color: orange;
    transform: translateY(-3px);
}

/* Mobile Menu Button - Hidden on desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    padding: 8px;
    z-index: 1003;
    position: relative;
}

/* Mobile Navigation - Hidden on desktop */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    padding-top: 80px;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav li {
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 18px 25px;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: #f8f8f8;
    color: var(--primary);
    padding-left: 30px;
}

/* Mobile Social Links */
.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 20px !important;
    background: #f9f9f9;
}

.mobile-social-links a {
    color: var(--primary) !important;
    font-size: 1.5rem !important;
    padding: 10px !important;
}

.mobile-social-links a:hover {
    background: transparent !important;
    color: orange !important;
    padding-left: 10px !important;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   MOBILE STYLES (768px and below)
   ============================================ */
@media (max-width: 768px) {
    /* Hide desktop elements */
    .desktop-nav,
    .header-social-links {
        display: none !important;
    }
    
    /* Show mobile elements */
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    /* Adjust hero sections for mobile header */
    .right-hero,
    .features-hero {
        margin-top: 80px;
    }
}

/* ============================================
   DESKTOP STYLES (769px and above)
   ============================================ */
@media (min-width: 769px) {
    /* Hide mobile elements */
    .mobile-menu-btn,
    .mobile-nav {
        display: none !important;
    }
    
    /* Show desktop elements */
    .desktop-nav,
    .header-social-links {
        display: flex !important;
    }
}
        
        
       /* Right-Aligned Hero Section */
.right-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px; /* Adjust for fixed header */
}

/* Background Image */
.right-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional parallax effect */
    z-index: 1;
}

/* Dark Overlay */
.right-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

/* Container */
.right-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Content - Aligned to Right */
.right-hero-content {
    max-width: 600px;
    margin-right: auto; /* This pushes it to the left */
    color: white;
    padding: 3rem 0;
    animation: fadeInRight 1s ease-out;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    border: 2px solid rgba(93, 25, 22, 0.2);
}

/* Title */
.right-hero-title {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.right-hero-subtitle {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Description */
.right-hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 500px;
}

.right-hero-description p {
    margin-bottom: 1.5rem;
}

/* CTA Buttons */
.right-hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.primary-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}





@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .right-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .right-hero-content {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .right-hero-overlay {
        background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    }
    
    .right-hero-buttons {
        justify-content: center;
    }
    
    .right-hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .right-hero-title {
        font-size: 2.8rem;
    }
    
    .right-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .right-hero-description {
        font-size: 1.1rem;
    }
    
    .right-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .right-hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .right-hero-title {
        font-size: 2.2rem;
    }
    
    .right-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .right-hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .right-hero-content {
        padding: 2rem 0;
    }
}

        /* About Section */
        .about__v4 .subtitle {
  background-color: #f5eed1;
  color: #5D1916;
  display: inline-block;
  padding: 10px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.about__v4 .features li .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: #5D1916;
  color: var(--bs-white);
}
.about__v4 .mission-statement {
  background-color: #5D1916;
  position: relative;
  bottom: -20px;
  width: 100%;
}
.about__v4 .mission-statement h3 {
  font-size: 10px;
  color: #5D1916;
}
.about__v4 .mission-statement p {
  color: var(--bs-white);
}
.about__v4 .mission-icon {
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  line-height: 50px;
  display: inline-block;
  background-color: rgba(var(--bs-secondary-rgb), 0.1);
}
.about__v4 .mission-icon i {
  color: #FFF8DB;
}

/* services-section */
        .services__v3 .subtitle {
  background-color:#f5f5f5;
  color: #5D1916;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.services__v3 .icon {
  display: inline-block;
  position: relative;
  color: #5D1916;
}

.services__v3 .icon:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 40px;
  right: -10px;
  bottom: 0px;
  border-radius: 50%;
  background-color: #FFF8DB;
}

.services__v3 .icon svg {
  width: 50px;
}
.services__v3 .service-card {
  border: #f5f5f5;
}

        /* Why Join Us - Accordion */
        .accordion-container {
            max-width: 800px;
            margin: 3rem auto 0;
        }

        .accordion-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .accordion-header {
            padding: 1.5rem 2rem;
            background-color: var(--secondary);
            color: var(--primary);
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background-color: #f5eed1;
        }

        .accordion-header.active {
            background-color: var(--primary);
            color: white;
        }

        .accordion-icon {
            transition: transform 0.3s ease;
        }

        .accordion-header.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .accordion-content.show {
            padding: 2rem;
            max-height: 500px;
        }

        /* Story Section with Globe */
        .story-section {
            padding: 5rem 5%;
            background-color: var(--secondary);
        }

        .story-container {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .story-content {
            flex: 1;
        }

        .globe-container {
            flex: 1;
            height: 400px;
            position: relative;
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.8s ease;
        }

        .globe-container.animated {
            transform: scale(1);
            opacity: 1;
        }

        .globe {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #1a5276, #154360);
            position: relative;
            overflow: hidden;
            box-shadow: 
                inset 0 0 50px rgba(255, 255, 255, 0.1),
                0 0 60px rgba(93, 25, 22, 0.3);
        }

        .highlight {
            position: absolute;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--accent);
            box-shadow: 0 0 20px var(--accent);
            animation: pulse 2s infinite;
        }

        .australia {
            top: 70%;
            left: 85%;
        }

        .kenya {
            top: 40%;
            left: 55%;
        }

        .highlight-label {
            position: absolute;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .australia-label {
            top: 65%;
            left: 70%;
        }

        .kenya-label {
            top: 35%;
            left: 65%;
        }

        /* Contact Section */
        .contact-container {
            display: flex;
            gap: 4rem;
        }

        .contact-form {
            flex: 1;
        }

        .contact-map {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            height: 500px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--primary);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(93, 25, 22, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 3rem auto 0;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 5% 1.5rem;
            margin-top: 5rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .social-links{
            color:#fff;
            display:block;
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.1);
                opacity: 1;
            }
            100% {
                transform: scale(1);
                opacity: 0.8;
            }
        }

        @keyframes rotateGlobe {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-container, .story-container, .contact-container {
                flex-direction: column;
            }
            
            .about-image, .about-content {
                transform: none !important;
            }
            
            .globe-container {
                order: -1;
                height: 300px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }

       @media (max-width: 768px) {
    .header-container {
        padding: 1rem 3%;
    }
    
    /* Hide the desktop navigation */
    #mainNav {
        display: none !important;
    }
    
    /* Show mobile menu button */


    /* Adjust hero section for mobile */
    .right-hero {
        margin-top: 60px;
    }
}
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 3rem 3%;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .service-card, .accordion-item {
                padding: 1.5rem 1rem;
            }
            
            .mission h2 {
                font-size: 2.2rem;
            }
        }


/* Why Join us section */
/* Features Hero Section */
.features-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    overflow: hidden;
    margin-top: 70px; /* Adjust for fixed header */
}

.features-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1526779259212-939e64788e3c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.features-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.features-hero-content {
    max-width: 1200px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
}

.features-hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.features-hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Features Grid */
.features-hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1100px;
}

.feature-card-join {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card-join.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-card-join:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-join {
    width: 70px;
    height: 70px;
    background: rgba(255, 248, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card-join:hover .feature-icon-join {
    background: var(--secondary);
    color: var(--primary);
    transform: rotate(15deg) scale(1.1);
}

.feature-title-join {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.feature-description-join {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* CTA Button */
.features-hero-cta {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary);
    margin-top: 1rem;
}

.features-hero-cta:hover {
    background-color: transparent;
    color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .features-hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .features-hero {
        min-height: auto;
        padding: 6rem 1rem 3rem;
    }
    
    .features-hero-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 1.5rem;
        margin: 2rem auto;
    }
    
    .features-hero-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }
    
    .features-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-card-join {
        padding: 2rem 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .feature-icon-join {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-title-join {
        font-size: 1.2rem;
    }
    
    .feature-description-join {
        font-size: 0.95rem;
    }
    
    .features-hero-cta {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-hero {
        padding: 5rem 0.5rem 2rem;
    }
    
    .features-hero-title {
        font-size: 1.8rem;
    }
    
    .features-hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-card-join {
        padding: 1.5rem 1rem;
    }
}

/* our story section */

.simple-about {
    padding: 5rem 5%;
    background-color: #FFF8DB;
    overflow: hidden; /* Prevent scrollbars during animation */
}

.simple-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Content on the Left - Initial hidden state */
.simple-about-content {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px); /* Start offscreen left */
    transition: all 0.8s ease;
}

/* Animated state */
.simple-about-content.animated {
    opacity: 1;
    transform: translateX(0);
}

.simple-about-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s; /* Delay for staggered effect */
}

.simple-about-content.animated .simple-about-title {
    opacity: 1;
    transform: translateY(0);
}

.simple-about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* Stagger paragraph animations */
.simple-about-text p:nth-child(1) {
    transition-delay: 0.5s;
}

.simple-about-text p:nth-child(2) {
    transition-delay: 0.7s;
}

.simple-about-content.animated .simple-about-text p {
    opacity: 1;
    transform: translateY(0);
}

.simple-about-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.9s; /* Button appears last */
}

.simple-about-content.animated .simple-about-button {
    opacity: 1;
    transform: translateY(0);
}

.simple-about-button:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Image on the Right - Initial hidden state */
.simple-about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(50px); /* Start offscreen right */
    transition: all 0.8s ease 0.2s; /* Slight delay after content */
}

/* Animated state */
.simple-about-image.animated {
    opacity: 1;
    transform: translateX(0);
}

.simple-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.simple-about-image:hover img {
    transform: scale(1.03);
}

/* Additional Hover Effects */
.simple-about-image:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateX(0) scale(1.02); /* Maintain position but scale */
}

/* Responsive Design */
@media (max-width: 992px) {
    .simple-about-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .simple-about-image, 
    .simple-about-content {
        width: 100%;
    }
    
    .simple-about-title {
        text-align: center;
    }
    
    /* Adjust animation directions for mobile */
    .simple-about-content {
        transform: translateY(30px); /* Change to vertical for mobile */
    }
    
    .simple-about-image {
        transform: translateY(30px); /* Change to vertical for mobile */
        transition-delay: 0.4s;
    }
    
    .simple-about-content.animated,
    .simple-about-image.animated {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .simple-about {
        padding: 3rem 5%;
    }
    
    .simple-about-title {
        font-size: 2rem;
    }
    
    .simple-about-text p {
        font-size: 1rem;
    }
    
    /* Adjust animation timings for mobile */
    .simple-about-title {
        transition-delay: 0.2s;
    }
    
    .simple-about-text p:nth-child(1) {
        transition-delay: 0.4s;
    }
    
    .simple-about-text p:nth-child(2) {
        transition-delay: 0.6s;
    }
    
    .simple-about-button {
        transition-delay: 0.8s;
    }
}

/* contact-section */
.contact__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: #5D1916;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.contact__v2 .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #5D1916;
  border-radius: 50%;
}
