/* Base Styles */

body , html{
      overflow-x: hidden;
}
body {
    background: #f9f9f9;
    color: #333;
}

/*page load css*/
body.loading {
    overflow-y: hidden;
  }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('img/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 0.5s forwards;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #daa520;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
}

.cta-btn:hover {
    background: white;
    color: #2e8b57;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/*mouse effect css*/




/* Rooms Section */
.rooms {
    padding: 5rem 5%;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 1s forwards;
    position: relative;
}

.rooms h2,
.events h2,
.gallery h2,
.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2e8b57;
}

.room-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    overflow: hidden;
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.room-info p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2e8b57;
    margin-bottom: 1rem;
}

.book-now {
    background: #2e8b57;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-decoration: none;
}

.book-now:hover {
    background: #246c45;
}

/* Events Section */

#events{
    overflow: hidden;
}
.events_index {
    padding: 5rem 5%;
    background: #f5f5f5;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 1.2s forwards;
    position: relative;
}

.events_index .event-types {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.events_index .event-types .event-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.events_index .event-types .event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.events_index .event-types .event-card i {
    font-size: 2.5rem;
    color: #daa520;
    margin-bottom: 1rem;
}

.events_index .event-types .event-card h2{
    text-align: center;
}

.events_index .event-types .event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.events_index .event-types .event-card p {
    color: #666;
}

/* Upcoming Events Section */

#upcoming-events{
    position: relative;
    overflow: hidden;
}
.upcoming-events {
    padding: 5rem 5%;
    background: #f5f5f5;
}

.events_index h2 {

  margin-bottom: 2rem;
}
.upcoming-events h2{
  margin-top: 20px;

}

.upcoming-events h2 , .events_index h2 {
     text-align: center;
  font-size: 2.5rem;
  background: linear-gradient(45deg, #2e8b57, #55b9a1);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s ease-in-out infinite;
}


@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.upcoming-events .event-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: -30px;
}

.upcoming-events .event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.upcoming-events .event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.upcoming-events .event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.upcoming-events .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.upcoming-events .event-card:hover .event-image img {
    transform: scale(1.1);
}

.upcoming-events .event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2e8b57;
    color: white;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    line-height: 1;
}

.upcoming-events .event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.upcoming-events .event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}

.upcoming-events .event-details {
    padding: 1.5rem;
}

.upcoming-events .event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.upcoming-events .event-details p {
    color: #666;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 18px;
}

.upcoming-events .event-details i {
    color: #2e8b57;
    width: 20px;
    text-align: center;
    font-size: 25px;
    position: relative;
    top:7px;
}

.upcoming-events .event-desc {
    min-height: 60px;
    font-size: 0.95rem;
    margin: 1rem 0;
}

.upcoming-events .event-btn {
    background: #2e8b57;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-decoration: none;
}

.upcoming-events .event-btn:hover {
    background: #246c45;
}




@keyframes zigzagMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 0;
    }
}




/* Gallery Section */
.gallery {
    padding: 5rem 5%;
    overflow: hidden;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2e8b57;
}

.gallery-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px; /* Space for scrollbar */
}

.gallery-track {
    display: flex;
    gap: 15px;
    width: max-content; /* Allows horizontal scrolling */
    padding: 10px 0;
}

.gallery-item {
    position: relative;
    min-width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-overlay p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 0 15px;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.gallery-item:hover .image-overlay p {
    transform: translateY(0);
}

/* Hide scrollbar but keep functionality */
.gallery-container::-webkit-scrollbar {
    height: 8px;
}

.gallery-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-container::-webkit-scrollbar-thumb {
    background: #2e8b57;
    border-radius: 10px;
}

/* Make gallery items in one row */
.gallery-track {
    display: flex;
    justify-content: space-between; /* Adjusts items in a row with space between */
}



/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: #f5f5f5;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 1.6s forwards;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #2e8b57;
    margin-right: 1rem;
    width: 30px;
/*    text-align: center;*/
}

.info-item p {
    color: #333;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea , .contact-form select{
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #2e8b57;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    width: 100%;
}

.submit-btn:hover {
    background: #246c45;
}










/*about page */



.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('img/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.about-container,
.container,
.testimonial-carousel {
    flex-wrap: wrap;
    flex-direction: row;
}

.about-content {
    padding: 5rem 5%;
}

.about-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2e8b57;
    margin-bottom: 1.0rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.mission-vision {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.mv-card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.mv-card:hover{
    background: #f2fff0;

    
}

.mv-card i {
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 1rem;
}

.mv-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
    background: #f5f5f5;
    text-align: center;
}

.team-section h2 {
    margin-bottom: 3rem;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.member-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
/*    transition: 2s;*/
}

.member-card:hover{

box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.member-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid #2e8b57;
}

.member-card h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.member-card p {
    color: #666;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    color: #2e8b57;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #246c45;
}

/* Achievements Section */
.achievements {
    padding: 5rem 5%;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card i {
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: #2e8b57;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
























/* Founder Message */
.founder-message {
    padding: 5rem 5%;
    background: #f5f5f5;
}

.container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.founder-image img {
    width: 500px;
    height: 500px;
    border-radius: 20px;
    transition: 2s;
}

.container:hover .founder-image img{
transform: scale(1.2);
border-radius: 20px;

}

.message-content {
    flex: 1;
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
    border-left: 3px solid #2e8b57;
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.signature img {
    height: 50px;
    margin-top: 1rem;
}

/* Sustainability */
.sustainability {
    padding: 5rem 5%;
    text-align: center;
}

.eco-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.eco-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.eco-card i {
    font-size: 2rem;
    color: #2e8b57;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 5%;
    background: #f5f5f5;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}



.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    min-width: 350px;
    scroll-snap-align: start;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.testimonial-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 2rem auto;
    max-width: 1200px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%; /* 3 cards = 300% */
}

.testimonial-card {
    flex: 0 0 33.333%;
    padding: 2rem;
    box-sizing: border-box;
    background: white;
    border-radius: 10px;
    margin: 0 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-height: 250px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.carousel-dots span {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-dots span.active {
    background: #2e8b57;
}

.rating {
    color: #daa520;
    margin-bottom: 1rem;
}

.guest-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.guest-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Location Advantage */
.location-advantage {
    display: flex;
    min-height: 400px;
}

.location-map, .location-text {
    flex: 1;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-text {
    padding: 3rem;
    background: #2e8b57;
    color: white;
}

.location-text ul {
    list-style: none;
    margin-top: 2rem;
}

.location-text li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Awards */
.awards-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.awards-logos img {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.awards-logos img:hover {
    filter: grayscale(0%);
}


/*hotel section*/




/* Rooms Page Specific Styles */
.hotel-rooms-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('img/11.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

/* Filter Buttons */
.hotel-room-types .filter-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.hotel-room-types .filter-btn {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.hotel-room-types .filter-btn.active, .filter-btn:hover {
    background: #2e8b57;
    color: white;
    border-color: #2e8b57;
}

/* Room Grid */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.room-card:hover {
    transform: translateY(-10px);
}


.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}
.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2e8b57;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.room-badge.premium {
    background: #daa520;
}

.room-details {
    padding: 1.5rem;
}

.room-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}
.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.room-features span {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-features i {
    color: #2e8b57;
}
.room-desc {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2e8b57;
}

.price small {
    font-size: 1rem;
    font-weight: normal;
    color: #666;
}

.view-btn {
    background: #2e8b57;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.view-btn:hover {
    background: #246c45;
}
/* Category Content Sections */
.category-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.category-details {
    display: none;
    animation: fadeIn 0.5s ease;
}

.category-details.active {
    display: block;
}

.detail-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.detail-text {
    flex: 1;
}

.detail-text h3 {
    font-size: 1.8rem;
    color: #2e8b57;
    margin-bottom: 1.5rem;
}

.detail-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.feature-list i {
    color: #2e8b57;
}

.detail-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.detail-image:hover img {
    transform: scale(1.05);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Responsive Design */


/* Amenities Section */
.amenities-section {
    padding: 5rem 5%;
    background: #f5f5f5;
}

.amenities-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.amenity-card i {
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 1rem;
}

.amenity-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('img/12.jpg');
    background-size: cover;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}


.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.cta-btn.primary {
    background: #2e8b57;
    color: white;
    border: none;
}

.cta-btn.primary:hover {
    background: #246c45;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #333;
}





  /* Event page Hero Section */
       


        /* Event Hero Section */
        .event-hero-page{
            height: 60vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('img/7.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .event-hero-page .event-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }
        
        .event-hero-page .event-hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .event-hero-page .btn , .event-page-types .btn ,  .event-page-cta .btn{
            display: inline-block;
            background: #2e8b57;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .event-hero-page .btn:hover , .event-page-types .btn:hover ,  .event-page-cta .btn:hover {
            background: #246c45;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* Event Types Section */
        .event-page-types {
            padding: 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .event-page-types .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .event-page-types .section-title h2 {
            font-size: 2.5rem;
            color: #2e8b57;
            margin-bottom: 1rem;
        }
        
        .event-page-types .event-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .event-page-types .event-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .event-page-types .event-card:hover {
            transform: translateY(-10px);
        }
        
        .event-page-types .event-image {
            height: 250px;
            overflow: hidden;
        }
        
        .event-page-types .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .event-page-types .event-card:hover .event-image img {
            transform: scale(1.1);
        }
        
        .event-page-types .event-info {
            padding: 25px;
        }
        
        .event-page-types .event-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2e8b57;
        }
        
        .event-page-types .event-info p {
            margin-bottom: 1.5rem;
            color: #666;
        }
        
        .event-page-types .event-features {
            margin-bottom: 1.5rem;
        }
        
        .event-page-types .event-features li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        
        .event-page-types .event-features i {
            color: #2e8b57;
            margin-right: 10px;
        }
        
        /* CTA Section */
        .event-page-cta {
            padding: 80px 5%;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('img/1.jpg') center/cover;
            color: white;
        }
        
        .event-page-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .event-page-cta p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }
        


        /* Timeline Section */
.event-page-planning-timeline {
    padding: 80px 0;
    background: #f9f9f9;
    position: relative;
}

.event-page-planning-timeline .event-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.event-page-planning-timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 1rem;
}

.event-page-planning-timeline .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.event-page-planning-timeline .timeline {
    position: relative;
    padding: 40px 0;
}

.event-page-planning-timeline .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #2e8b57;
    z-index: 1;
}

.event-page-planning-timeline .timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.event-page-planning-timeline .timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
   

}

.event-page-planning-timeline .timeline-dot {
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid #2e8b57;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.event-page-planning-timeline .timeline-content {
    width: calc(50% - 60px);
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    position: relative;
}

.event-page-planning-timeline .timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border-style: solid;
}

.event-page-planning-timeline .timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.event-page-planning-timeline .timeline-item:nth-child(odd) .timeline-content::before {
    right: 100%;
    border-width: 10px 15px 10px 0;
    border-color: transparent white transparent transparent;
}

.event-page-planning-timeline .timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.event-page-planning-timeline .timeline-item:nth-child(even) .timeline-content::before {
    left: 100%;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent white;
}

.event-page-planning-timeline .step-number {
    position: absolute;
    top: -20px;
    width: 40px;
    height: 40px;
    background: #2e8b57;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.event-page-planning-timeline .timeline-item:nth-child(odd) .step-number {
    left: -20px;
}

.event-page-planning-timeline .timeline-item:nth-child(even) .step-number {
    right: -20px;
}

.event-page-planning-timeline .timeline-content h3 {
    color: #2e8b57;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.event-page-planning-timeline .timeline-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.event-page-planning-timeline .step-features {
    list-style: none;
}

.event-page-planning-timeline .step-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.event-page-planning-timeline .timeline-item:nth-child(even) .step-features li {
    justify-content: flex-end;
}

.event-page-planning-timeline .step-features i {
    color: #2e8b57;
    margin-right: 8px;
}

.event-page-planning-timeline .timeline-item:nth-child(even) .step-features i {
    margin-right: 0;
    margin-left: 8px;
    order: 1;
}

.event-page-planning-timeline .timeline-cta {
    text-align: center;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease 0.6s;
}

.event-page-planning-timeline .timeline-cta.visible {
    opacity: 1;
/*    transform: translateY(0);*/
background: red;
}

.event-page-planning-timeline .timeline-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.event-page-planning-timeline .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #2e8b57;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.event-page-planning-timeline .event-page-planning-timeline .cta-button:hover {
    background: #246c45;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}



/* Packages Section */
.eventPage-packages {
    padding: 80px 0;
    background: #f9f9f9;
}

.eventPage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.eventPage-section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2e8b57;
    margin-bottom: 1rem;
}

.eventPage-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.eventPage-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.eventPage-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.eventPage-table-header {
    padding: 20px;
    text-align: center;
    background: #2e8b57;
    color: white;
    font-weight: 600;
    border: 1px solid #ddd;
}

.eventPage-package-tier {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.eventPage-package-price {
    font-size: 1.1rem;
    opacity: 0.9;
}

.eventPage-table-row:nth-child(even) {
    background: rgba(46, 139, 87, 0.05);
}

.eventPage-feature-name {
    padding: 15px 20px;
    font-weight: 600;
    border: 1px solid #eee;
    width: 25%;
}

.eventPage-silver, 
.eventPage-gold, 
.eventPage-platinum {
    padding: 15px 20px;
    text-align: center;
    border: 1px solid #eee;
    position: relative;
}

.eventPage-silver {
    background: rgba(192, 192, 192, 0.1);
}

.eventPage-gold {
    background: rgba(212, 175, 55, 0.1);
}

.eventPage-platinum {
    background: rgba(229, 228, 226, 0.2);
}

.eventPage-table-footer td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.eventPage-cta-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #2e8b57;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.eventPage-cta-btn:hover {
    background: #246c45;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.eventPage-custom-package {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
}

.eventPage-custom-package a {
    color: #2e8b57;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px dotted #2e8b57;
}

/* Highlight Recommended */
.eventPage-gold .eventPage-package-tier::after {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    right: 10px;
    background: #daa520;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.eventPage-mobile-packages{
    display: none;
}

.eventPage-mobile-packages ul li{
    list-style-type: none;

}


/* Gallery page Hero design */
.gallerPage-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('img/1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.gallerPage-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.gallerPage-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.gallerPage-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Filter Buttons */
.gallerPage-filter-container {
    padding: 20px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.gallerPage-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallerPage-filter-btn {
    padding: 8px 20px;
    border: none;
    background: #f1f1f1;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.gallerPage-filter-btn:hover, 
.gallerPage-filter-btn.active {
    background: #2e8b57;
    color: white;
}

/* Gallery Grid */
.gallerPage-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.gallerPage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallerPage-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
}

.gallerPage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallerPage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallerPage-item:hover .gallerPage-overlay {
    opacity: 1;
}

.gallerPage-item:hover img {
    transform: scale(1.05);
}

.gallerPage-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallerPage-overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallerPage-view-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #2e8b57;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s;
}

.gallerPage-view-btn:hover {
    background: #246c45;
    transform: scale(1.1);
}

/* Lightbox */
.gallerPage-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
}

.gallerPage-lightbox-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

#gallerPage-lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.gallerPage-lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
}

.gallerPage-close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.gallerPage-prev-btn, 
.gallerPage-next-btn {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.gallerPage-prev-btn {
    left: 30px;
}

.gallerPage-next-btn {
    right: 30px;
}


/* Lightbox Styles */
.gallerPage-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    flex-direction: column;
}

.gallerPage-lightbox-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#gallerPage-current-image {
    max-width: 90%;
    max-height: 70vh;
    object-fit: contain;
}

.gallerPage-related-images {
    padding: 20px;
    background: #222;
    text-align: center;
}

.gallerPage-related-images h3 {
    color: white;
    margin-bottom: 15px;
}

.gallerPage-related-grid {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallerPage-related-grid img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.gallerPage-related-grid img:hover,
.gallerPage-related-grid img.active {
    border-color: #2e8b57;
    transform: scale(1.1);
}

/* CTA Section */
.gallerPage-cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('img/11.jpg') center/cover;
    color: white;
}

.gallerPage-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.gallerPage-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallerPage-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.gallerPage-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallerPage-cta-btn {
    padding: 12px 30px;
    background: #2e8b57;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.gallerPage-cta-btn.alt {
    background: #daa520;
}

.gallerPage-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/*contact us page*/


.contact-page-container{
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            padding-top: 100px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }
        .contact-page-container h1 {
            color: #228B22; /* Forest Green */
            text-align: center;
            margin-bottom: 10px;
        }
        .contact-page-container .tagline {
            color: #8B4513; /* Earth Brown */
            text-align: center;
            margin-bottom: 30px;
            font-style: italic;
        }
        .contact-page-container .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .contact-page-container .contact-form {
            flex: 1;
            min-width: 300px;
        }
        .contact-page-container .form-group {
            margin-bottom: 15px;
        }
        .contact-page-container label {
            display: block;
            margin-bottom: 5px;
            color: #228B22;
            font-weight: bold;
        }
       .contact-page-container input , .contact-page-container textarea , .contact-page-container select {
            width: 100%;
            padding: 10px;
            border: 1px solid #8B4513;
            border-radius: 5px;
            background-color: #FFF8E7;
        }
        .contact-page-container button {
            background-color: #228B22;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
        }
        .contact-page-container button:hover {
            background-color: #8B4513;
        }
        .contact-page-container .contact-details {
            flex: 1;
            min-width: 300px;
            background-color: #F5F5F5;
            padding: 20px;
            border-radius: 8px;
        }
        .contact-page-container .contact-item {
            display: flex;
/*            align-items: center;*/
            margin-bottom: 15px;
        }
        .contact-page-container .contact-item i {
            font-size: 20px;
            color: #228B22;
            margin-right: 15px;
        }
        .contact-page-container .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .contact-page-container .social-icons a {
            color: #8B4513;
            font-size: 24px;
        }
        .contact-page-container .map-container {
            margin-top: 30px;
        }
        .contact-page-container .map-container iframe {
            width: 100%;
            height: 300px;
            border: 3px solid #228B22;
            border-radius: 8px;
        }













/*why page*/

.why_page {
  width: 100%;
  overflow: hidden;
}

/* ---------- Video Section ---------- */
.why_page .why_video {
  position: relative;
  width: 100%;
  height: 100vh;
}

.why_page .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.why_page .video-overlay {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 0 20px;
}

.why_page .video-overlay h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 2px;
}

/* ---------- Jim Corbett Section ---------- */
.why_page .why_corbett {
  background-color: #fff;
  padding: 60px 20px;
}

.why_page .corbett-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.why_page .corbett-text {
  flex: 1 1 40%;
  text-align: center;
}

.why_page .corbett-text h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}

.why_page .corbett-text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.why_page .corbett-text .divider {
  width: 60px;
  height: 2px;
  background-color: #555;
  margin: 0 auto;
}

.why_page .corbett-image {
  flex: 1 1 55%;
  text-align: center;
}

.why_page .corbett-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why_page .corbett-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Divider line between sections */
.section-divider {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 40px auto;
  width: 85%;
}

/*third section*/

.why_page .why_highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  justify-content: center;
}

.why_page .highlight-box {
  background-color: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  border-radius: 12px; /* Rounded corners for all boxes */
  flex: 1 1 28%;
  min-width: 280px;
}

.why_page .highlight-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px; /* Rounded corners for images */
  transition: transform 0.4s ease;
}

.why_page .highlight-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why_page .highlight-box:hover img {
  transform: scale(1.05);
}

.why_page .highlight-text {
  flex: 1 1 40%; 
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  background-color: #fafafa;
  min-width: 280px;
}

.why_page .highlight-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* ----------- Media Queries ----------- */

/* 992px and below (laptop, small desktops) */
@media (max-width: 992px) {
  .why_page .corbett-content {
    flex-direction: column;
    text-align: center;
  }

  .why_page .corbett-text,
  .why_page .corbett-image {
    flex: 1 1 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .why_page .corbett-text h2 {
    font-size: 2.2rem;
  }

  .why_page .corbett-text p {
    font-size: 1.1rem;
  }

  .why_page .why_highlight {
    gap: 25px;
  }
}

/* 768px and below (tablets, large phones) */
@media (max-width: 768px) {
  .why_page .video-overlay h1 {
    font-size: 2.2rem;
  }

  .why_page .corbett-text h2 {
    font-size: 2rem;
  }

  .why_page .corbett-text p {
    font-size: 1rem;
  }

  .why_page .corbett-content {
    gap: 30px;
  }

  .why_page .corbett-text .divider {
    width: 50px;
  }

  .why_page .why_highlight {
    flex-direction: column;
    align-items: center;
  }

  .why_page .highlight-box,
  .why_page .highlight-text {
    flex: 1 1 100%;
    max-width: 600px;
    min-width: auto;
  }

  .why_page .highlight-text {
    padding: 20px 15px;
    text-align: center;
  }
}

/* 576px and below (large phones) */
@media (max-width: 576px) {
  .why_page .video-overlay h1 {
    font-size: 1.8rem;
  }

  .why_page .why_corbett {
    padding: 40px 15px;
  }

  .why_page .corbett-text h2 {
    font-size: 1.8rem;
  }

  .why_page .corbett-text p {
    font-size: 0.95rem;
  }

  .why_page .corbett-image img {
    border-radius: 10px;
  }

  .why_page .section-divider {
    width: 90%;
  }
}

/* 480px and below (small phones) */
@media (max-width: 480px) {
  .why_page .video-overlay h1 {
    font-size: 1.6rem;
  }

  .why_page .corbett-text h2 {
    font-size: 1.6rem;
  }

  .why_page .corbett-text p {
    font-size: 0.9rem;
  }

  .why_page .corbett-text .divider {
    width: 40px;
  }

  .why_page .corbett-content {
    gap: 20px;
    padding: 0 10px;
  }

  .why_page .section-divider {
    margin: 30px auto;
  }

  .why_page .why_highlight {
    padding: 0 10px;
    gap: 15px;
  }
}

/* 320px and below (very small phones) */
@media (max-width: 320px) {
  .why_page .video-overlay h1 {
    font-size: 1.3rem;
    padding: 0 5px;
  }

  .why_page .why_corbett {
    padding: 30px 10px;
  }

  .why_page .corbett-text h2 {
    font-size: 1.4rem;
  }

  .why_page .corbett-text p {
    font-size: 0.85rem;
  }

  .why_page .corbett-text .divider {
    width: 30px;
  }

  .why_page .corbett-content {
    gap: 15px;
    padding: 0 5px;
  }

  .why_page .section-divider {
    width: 95%;
    margin: 20px auto;
  }

  .why_page .why_highlight {
    padding: 0 5px;
    gap: 10px;
  }

  .why_page .highlight-text p {
    font-size: 0.9rem;
  }
}









