 html {
    scroll-padding-top: 80px; /* Height of your sticky header */
}
 
 /* Travel Section */
 .travel-section {
     position: relative;
     min-height: 100vh;
     /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
     padding: 80px 0;
     overflow: hidden;
 }

 /* Decorative Background Elements */
 .bg-decoration {
     position: absolute;
     border-radius: 50%;
     background: rgb(187 160 71 / 11%);
     z-index: 1;
 }

 .bg-decoration:nth-child(1) {
     width: 400px;
     height: 400px;
     top: -100px;
     left: -100px;
     animation: float 8s ease-in-out infinite;
 }

 .bg-decoration:nth-child(2) {
     width: 300px;
     height: 300px;
     bottom: -50px;
     right: -50px;
     animation: float 10s ease-in-out infinite reverse;
 }

 @keyframes float {
     0%, 100% {
         transform: translate(0, 0);
     }

     50% {
         transform: translate(30px, 30px);
     }
 }

 .container {
     position: relative;
     z-index: 10;
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 40px;
 }

 /* Split Layout Container */
 .split-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     min-height: 80vh;
 }

 /* Left Side - Content */
 .left-content {
     animation: slideInLeft 1s ease;
 }

 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-80px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .logo-wrapper {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     gap: 20px;
     margin-bottom: 30px;
     animation: fadeIn 1s ease 0.2s backwards;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .logo {
     width: auto;
     /* height: 100px; */
     border-radius: 15px;
     /* object-fit: cover; */
     /* border: 4px solid #667eea; */
     /* box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); */
     transition: transform 0.4s ease;
 }

 .logo:hover {
     transform: scale(1.1);
     /* only grows slightly */
     transition: transform 0.3s ease;
     /* smooth animation */

 }

 .logo-text h1 {
     /* font-size: 3em; */
     /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
     /* -webkit-background-clip: text; */
     /* -webkit-text-fill-color: transparent; */
     /* background-clip: text; */
     font-weight: 700;
     margin-bottom: 5px;
     /* letter-spacing: 1px; */
 }

 /* .logo-text .tagline {
            font-size: 1.2em;
            color: #764ba2;
            font-style: italic;
            font-weight: 400;
        } */

 .description-content {
     background: white;
     padding: 15px;
     border-radius: 5px;
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
     position: relative;
     overflow: hidden;
     animation: fadeInUp 1s ease 0.4s backwards;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .description-content::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     /* background: linear-gradient(90deg, #000000 0%, #ffffff 100%); */
 }

 /* .description-content p {
            font-size: 1.15em;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
        } */

 .description-content p:last-child {
     margin-bottom: 0;
 }

 .highlight {
     /* color: #667eea; */
     font-weight: 700;
 }

 .cta-button {
     display: inline-block;
     margin-top: 30px;
     padding: 18px 40px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     text-decoration: none;
     border-radius: 50px;
     font-size: 1.2em;
     font-weight: 600;
     box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     animation: fadeIn 1s ease 0.6s backwards;
 }

 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
 }

 /* Right Side - Images */
 .right-images {
     position: relative;
     height: 600px;
 }

 .image-card {
     position: absolute;
     border-radius: 5px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
     transition: transform 0.4s ease, box-shadow 0.4s ease;
 }

 .image-card:hover {
     transform: scale(1.05);
     box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
     z-index: 10;
 }

 .image-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 /* Image 1 - Top Left */
 .image-card-1 {
     width: 350px;
     height: 280px;
     top: 0;
     left: 0;
     animation: slideInRight 1s ease 0.3s backwards;
     z-index: 2;
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(80px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* Image 2 - Bottom Right */
 .image-card-2 {
     width: 380px;
     height: 300px;
     bottom: 0;
     right: 0;
     animation: slideInRight 1s ease 0.6s backwards;
     z-index: 3;
 }

 /* Decorative Dots Pattern */
 .dots-pattern {
     position: absolute;
     width: 100px;
     height: 100px;
     background-image: radial-gradient(circle, var(--secondary) 2px, transparent 2px);
     background-size: 20px 20px;
     opacity: 0.3;
     z-index: 1;
 }

 .dots-pattern-1 {
     top: 50px;
     right: 20px;
     animation: fadeIn 1s ease 1s backwards;
 }

 .dots-pattern-2 {
     bottom: 100px;
     left: 40px;
     animation: fadeIn 1s ease 1.2s backwards;
 }

 /* Loading Animation Overlay */
 .loading-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     animation: fadeOut 0.8s ease forwards;
     animation-delay: 0.5s;
 }

 @keyframes fadeOut {
     to {
         opacity: 0;
         visibility: hidden;
     }
 }

 .loading-spinner {
     width: 50px;
     height: 50px;
     border: 4px solid rgba(255, 255, 255, 0.3);
     border-top-color: white;
     border-radius: 50%;
     animation: spin 1s linear infinite;
 }

 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .split-container {
         grid-template-columns: 1fr;
         gap: 60px;
     }

     .right-images {
         height: 500px;
         margin: 0 auto;
         max-width: 600px;
     }

     .image-card-1 {
         width: 300px;
         height: 240px;
     }

     .image-card-2 {
         width: 320px;
         height: 260px;
     }
 }

 @media (max-width: 768px) {
     .container {
         padding: 0 20px;
     }

     .logo-wrapper {
         flex-direction: column;
         text-align: center;
     }

     .logo-text h1 {
         font-size: 2.2em;
     }

     .logo-text .tagline {
         font-size: 1em;
     }

     .description-content {
         padding: 30px 20px;
     }

     .description-content p {
         font-size: 1.05em;
     }

     .right-images {
         height: 450px;
     }

     .image-card-1 {
         width: 250px;
         height: 200px;
     }

     .image-card-2 {
         width: 270px;
         height: 220px;
     }

     .cta-button {
         padding: 15px 35px;
         font-size: 1.1em;
     }
 }

 @media (max-width: 480px) {
     .logo {
         width: 80px;
         height: 80px;
     }

     .logo-text h1 {
         font-size: 1.8em;
     }

     .right-images {
         height: 400px;
     }

     .image-card-1 {
         width: 200px;
         height: 160px;
         left: 10px;
     }

     .image-card-2 {
         width: 220px;
         height: 180px;
         right: 10px;
     }
 }

 /* Parallax Section */
 .parallax-section {
     position: relative;
     height: 500px;
     background-image: url('../img/leopath-home-para-bg.jpg');
     background-attachment: fixed;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .parallax-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgb(0 0 0 / 24%);
 }

 .parallax-content {
     position: relative;
     z-index: 10;
     text-align: center;
     color: white;
     padding: 40px;
 }

 .parallax-content h2 {
     font-size: 3.5em;
     margin-bottom: 20px;
     text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
     animation: fadeInScale 1s ease;
     color: wheat;
 }

 @keyframes fadeInScale {
     from {
         opacity: 0;
         transform: scale(0.8);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 .parallax-content p {
     font-size: 1.5em;
     max-width: 700px;
     margin: 0 auto;
     text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
     animation: fadeInUp 1s ease 0.3s backwards;
 }

 @media (max-width: 768px) {
     .parallax-section {
         background-attachment: scroll;
         height: 400px;
     }

     .parallax-content h2 {
         font-size: 2.5em;
     }

     .parallax-content p {
         font-size: 1.2em;
     }
 }

 /* travel section  */
 .travel-section .cta-section {
     background: linear-gradient(135deg, #ffffff 0%, #f8f5eb 100%);
     color: #bba047;
     padding: 1rem 2rem;
     text-align: center;
     margin-top: 1rem;
 }

 .travel-section .cta-section p {
     font-size: 1rem;
     margin-bottom: 2rem;
     opacity: 0.9;
 }

 .travel-section-contact {
    background: linear-gradient(135deg, #28282B, #4B4B4F);
  
}

.travel-section-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.travel-section-contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-links .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.email-btn {
    background-color: #ffffff17;
    color: #fff;
}

.email-btn:hover {
    background-color: #ffffffbe;
    color: #000;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
        color: #fff;
}

.contact-links i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 500px) {
    .contact-links {
        flex-direction: column;
    }
}


 .travel-section-contact {
     background: linear-gradient(135deg, #000 0%, #000 100%);
     color: white;
     padding: 4rem 2rem;
     text-align: center;
 } /*

 .travel-section-contact h2 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .travel-section-contact p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     opacity: 0.9;
 }
.travel-section-contact .btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s 
ease;
    box-shadow: 0 5px 20px rgb(255 255 255 / 28%);
}
*/
/* EVENTS SEction  */
   .section-title {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            text-align: center;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #ffffff, var(--secondary));
            border-radius: 2px;
        }

        .intro-text {
            text-align: center;
            font-size: 1.05rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .event-card {
            background: white;
            border-radius: 12px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 3px solid transparent;
        }

        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(139, 26, 79, 0.15);
            border-top-color: var(--secondary);
        }

        .event-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            text-align: center;
        }

        .event-card h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            text-align: center;
        }

        .event-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
            text-align: center;
        }

        .services-section {
            background: white;
            padding: 2.5rem 1.5rem;
            margin-top: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .services-content {
            max-width: 1100px;
            margin: 0 auto;
        }

        .services-intro {
            text-align: center;
            font-size: 1.05rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

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

        .service-item {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            border-left: 4px solid var(--secondary);
            transition: all 0.3s ease;
        }

        .service-item:hover {
            background: #fff;
            box-shadow: 0 4px 15px rgba(139, 26, 79, 0.1);
            transform: translateX(5px);
        }

        .service-item h3 {
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .service-item i {
            color: var(--secondary);
            font-size: 1.3rem;
        }

        .service-item p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .collaboration-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 2.5rem 1.5rem;
            text-align: center;
            margin-top: 2rem;
        }

        .collaboration-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .collaboration-content h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .collaboration-content p {
            font-size: 1.05rem;
            line-height: 1.6;
            opacity: 0.95;
        }

        .cta-section {
            background: #2d2d2d;
            color: white;
            padding: 3rem 1.5rem;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 0.9rem 2.5rem;
            /* background: linear-gradient(45deg, #8b1a4f, #ff6b9d); */
            /* color: white; */
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
            /* box-shadow: 0 4px 15px rgba(139, 26, 79, 0.3); */
        }

        .btn:hover {
            transform: translateY(-2px);
            /* box-shadow: 0 6px 20px rgba(139, 26, 79, 0.5); */
        }

        .footer {
            background: #1a1a1a;
            color: white;
            padding: 1.5rem;
            text-align: center;
        }

        .footer p {
            opacity: 0.8;
            font-size: 0.9rem;
            margin: 0.3rem 0;
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 2rem;
            }

            .logo-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

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

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

        /* COr section  */
      
        .corporate-section {
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            padding: 2.5rem 1.5rem;
            /* margin-top: 2rem; */
        }

        /* .corporate-content {
            max-width: 900px;
            margin: 0 auto;
        } */
     .services-list {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .service-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s ease;
            
        }

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

        .service-row:hover {
            background: #f8f9fa;
            padding-left: 1.5rem;
        }

        .service-row .service-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--secondary), var(--secondary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-row .service-icon i {
            color: white;
            font-size: 1.2rem;
        }

        .service-details {
            flex: 1;
            display: flex;
            justify-content:flex-start;
            align-items: center;
            gap: 0rem;
        }

        .service-details p {
            color: #2d2d2d;
            font-size: 1rem;
            font-weight: 400;
            margin: 0;
            text-align: left;
        }


        .leo_events{
            padding: 80px 0;
        }

         /* Email Section */
        .email-section {
            background: white;
            padding: 35px 30px;
            margin-bottom: 25px;
            /* border: 1px solid #e8e8e8;
            border-left: 3px solid #1a1a1a; */
        }

        .email-section-title {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #999;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 1px solid #f0f0f0;
        }

        .email-list {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }

        .email-item {
            display: flex;
            align-items: center;
            padding: 18px 0;
            border-bottom: 1px solid #f5f5f5;
            transition: all 0.3s ease;
        }

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

        .email-item:hover {
            padding-left: 10px;
            background: #fafafa;
        }

        .email-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            flex-shrink: 0;
           
                border: 1px solid #e0e0e0;
    background: #f4f1e7;
    border-radius: 50%;
        }

        .email-icon i {
            font-size: 16px;
            color: #1a1a1a;
        }

        .email-details {
            flex: 1;
        }

        .email-label {
            font-size: 13px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 4px;
            text-transform: capitalize;
        }

        .email-link {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            font-weight: 400;
        }

        .email-link:hover {
            color: #1a1a1a;
        }


        /* Banner styles */
         .banner-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
         height: 100vh;
         text-align: left;
 

        position: relative;
        z-index: 2;
   
    }

    .banner-content .top-content {
        max-width: 800px;
        
        margin: 0 auto;
    }

    .carousel-item {
        height: 100vh; 
    }