/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Side Styles */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 90px;
    width: auto;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.main-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.main-menu a:hover {
    color: #0066cc;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0066cc;
    transition: width 0.3s;
}

.main-menu a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 8px 15px;
}

.dropdown-menu a {
    color: #555;
    display: block;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    color: #0066cc;
    padding-left: 5px;
}

/* Right Side Styles */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 500;
}

.contact-number i {
    color: #0066cc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #555;
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: #0066cc;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .navbar-left {
        gap: 20px;
    }

    .main-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        transition: left 0.4s;
        overflow-y: auto;
        padding: 20px 0;
    }

    .main-menu.active {
        left: 0;
    }

    .main-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s, visibility 0.3s;
        width: 100%;
        background-color: #f9f9f9;
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        visibility: visible;
        max-height: 500px;
        padding: 10px 0;
    }

    .navbar-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.active i::before {
        content: '\f00d';
    }
}

/* Services Section Styles */
.services-section {
    padding: 60px 20px;
    background-color: #cfd3d9;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1a73e8;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #e74c3c;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #1a73e8;
    font-size: 2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #1a73e8;
    color: white;
}

.service-name {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.service-btn {
    padding: 10px 25px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.service-btn:hover {
    background-color: #0d5bba;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 15px;
        border: 2px solid #e74c3c;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services-container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-name {
        font-size: 1.1rem;
    }
    
    .service-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}


/* Domestic Trips Section */
.domestic-trips {
    padding: 60px 20px;
    background-color: #cfd3d9;
    text-align: center;
}



.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e74c3c;
}

.trip-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trip-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.trip-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trip-card:hover .trip-image img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.trip-info {
    padding: 20px;
    text-align: left;
}

.trip-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.trip-duration {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.trip-highlights {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trip-highlights span {
    background: #ecf0f1;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trip-highlights i {
    color: #e74c3c;
}

.trip-btn {
    width: 100%;
    padding: 12px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.trip-btn:hover {
    background-color: #c0392b;
}

/* Responsive Design */
@media (max-width: 992px) {
    .trip-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .trip-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .trip-cards-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .trip-info {
        padding: 15px;
    }
    
    .trip-name {
        font-size: 1.3rem;
    }
}

/* International Trips Section */


.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e74c3c;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.trip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trip-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.trip-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trip-card:hover .trip-image img {
    transform: scale(1.05);
}

.trip-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-badge {
    background-color: #e74c3c;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.duration {
    font-size: 0.9rem;
    color: #ecf0f1;
}

.trip-content {
    padding: 20px;
}

.trip-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trip-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.trip-highlights span {
    background: #ecf0f1;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trip-highlights i {
    color: #e74c3c;
}

.book-now-btn {
    width: 100%;
    padding: 12px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #c0392b;
}

/* Responsive Design */
@media (max-width: 992px) {
    .trip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .trip-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .trip-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .international-trips {
        padding: 60px 0;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #cfd3d9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e74c3c;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #e74c3c;
}

.feature-card.highlighted {
    border-top: 4px solid #e74c3c;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card.highlighted::before {
    content: 'POPULAR';
    position: absolute;
    top: 10px;
    right: -30px;
    background: #e74c3c;
    color: white;
    padding: 3px 30px;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1a89c9;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card.highlighted .feature-icon {
    background: #3695e3;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 25px 20px;
        border: 2px solid #e74c3c;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-us {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-card.highlighted {
        transform: none;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #cfd3d9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e74c3c;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card.highlighted {
    transform: scale(1.05);
    border: 2px solid #e74c3c;
    position: relative;
}

.testimonial-card.highlighted::before {
    content: 'Featured';
    position: absolute;
    top: -12px;
    left: 20px;
    background: #e74c3c;
    color: white;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.rating {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e74c3c;
}

.customer-details h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.customer-details p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.testimonials-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    padding: 12px 30px;
    background-color: #ea5a0d;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
    padding: 12px 30px;
    background-color: transparent;
    color: #ea5a0d;
    border: 2px solid #ea5a0d;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e74c3c;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card.highlighted {
        transform: none;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}


/* Footer Styles */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    grid-column: span 1;
}

.footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

.company-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #bdc3c7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ecf0f1;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #e74c3c;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #e74c3c;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e74c3c;
    padding-left: 5px;
}

.contact-info {
    font-style: normal;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: #e74c3c;
    margin-top: 3px;
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.copyright {
    font-size: 0.9rem;
    color: #bdc3c7;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    font-size: 1.8rem;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .contact-item {
        gap: 10px;
    }
}

/* About Hero Section */
.about-hero {
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.about-hero p {
    color: white;
    font-size: 1.2rem;
}

/* About Content Section */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 30px 0 15px;
}

.values-list {
    list-style: none;
    margin: 25px 0;
}

.values-list li {
    margin-bottom: 12px;
    color: #555;
    font-size: 1.05rem;
}

.values-list i {
    color: #3389f3;
    margin-right: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Milestones Section */
.milestones {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ea5a0d;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.milestone-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-10px);
}

.milestone-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 10px;
}

.milestone-text {
    font-size: 1.1rem;
    color: #555;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f1f1f1;
}

.team-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.position {
    color: #ea5a0d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f1f1f1;
    border-radius: 50%;
    color: #555;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ea5a0d;
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #ea5a0d;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #bdc3c7;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2885fe;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ea5a0d;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .milestones-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 300px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .milestones-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 30px;
    }
}




/* Contact Hero Section */
.contact-hero {
    height: 350px;
    background-image: url('https://images.unsplash.com/photo-1499678329028-101435549a4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.contact-hero p {
    color: white;
    font-size: 1.2rem;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background-color: #cfd3d9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border:2px solid #e74c3c ;
}

.contact-form h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: hsl(24, 89%, 48%);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e74c3c;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #c0392b;
}

/* Contact Info */
.contact-info2 {
    padding: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #e74c3c;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border:2px solid #e74c3c;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}



/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: #cfd3d9;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #be530b;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



.float{
	position:fixed;
	width:80px;
	height:80px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:50px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
.btn-lightbox
{
margin-top: 16px;
      text-transform: uppercase;
      font-size: 14px;
      text-decoration: none;
      cursor: pointer;
      display: inline-block;
      padding: 10px;
      font-family: inherit;
      text-shadow: none;
      user-select: none;
      transition: all,.1s,ease-in;
      background-color: #FFA500;
      border: 1px solid #FFA500;
      color: #FFFFFF;
}


/* Base Styles */


.client-slider-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    overflow: hidden;
}

.slider-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2rem;
}

.client-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.client-slider-track {
    display: flex;
    align-items: center;
    width: calc(150px * 12); /* Double the items for seamless looping */
    animation: scroll 20s linear infinite;
}

.client-slide {
    flex: 0 0 150px;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-slide img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Pause animation on hover */
.client-slider-container:hover .client-slider-track {
    animation-play-state: paused;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 6)); /* Move by half the track width */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .client-slide {
        flex: 0 0 120px;
    }
    
    .client-slider-track {
        width: calc(120px * 12);
        animation: scroll 15s linear infinite;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-120px * 6));
        }
    }
}

@media (max-width: 480px) {
    .client-slide {
        flex: 0 0 100px;
        padding: 0 10px;
    }
    
    .client-slider-track {
        width: calc(100px * 12);
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(calc(-100px * 6));
        }
    }
    
    .slider-title {
        font-size: 1.5rem;
    }
}


/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .slide-content {
        width: 90%;
        padding: 1rem;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

/* EMI Floating Button Styles */
.emi-floating-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    font-family: 'Arial', sans-serif;
}

.emi-main-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a6bff, #2541b2);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.emi-main-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.emi-main-button .emi-tooltip {
    position: absolute;
    right: 80px;
    width: max-content;
    padding: 8px 15px;
    background-color: #333;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.emi-main-button:hover .emi-tooltip {
    opacity: 1;
    visibility: visible;
}

.emi-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 200px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.emi-toggle:checked ~ .emi-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.emi-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.emi-option i {
    margin-right: 12px;
    color: #4a6bff;
    font-size: 18px;
}

.emi-option:hover {
    background-color: #f5f7ff;
    color: #2541b2;
    padding-left: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .emi-floating-container {
        bottom: 20px;
        right: 20px;
    }
    
    .emi-main-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .emi-options {
        width: 180px;
    }
    
    .emi-option {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Base Styles */
.travel-help-btn {
    position: fixed;
    left: 20px;
    bottom: 200px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(67, 97, 238, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    border: none;
}

.travel-help-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

.travel-help-btn i {
    font-size: 24px;
}

.travel-help-tooltip {
    position: absolute;
    right: -10px;
    transform: translateX(100%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.travel-help-btn:hover .travel-help-tooltip {
    opacity: 1;
}

/* Modal Styles */
.travel-guidelines-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.travel-modal-content {
    background-color: white;
    border-radius: 16px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: travelFadeInUp 0.4s;
    transform-origin: center;
    display: flex;
    flex-direction: column;
}

@keyframes travelFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.travel-modal-header {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.travel-modal-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(58, 12, 163, 0.2), transparent);
    z-index: -1;
}

.travel-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.travel-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.travel-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Tab Styles */
.travel-tabs-scroll {
    overflow-x: auto;
    padding: 10px 0;
    background-color: #f1f3f5;
    flex-shrink: 0;
}

.travel-tabs-container {
    display: flex;
    padding: 0 10px;
    min-width: max-content;
}

.travel-tab-btn {
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-weight: 500;
    color: #555;
    transition: all 0.3s;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 5px;
}

.travel-tab-btn.active {
    background-color: white;
    color: #4361ee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.travel-tab-btn:not(.active):hover {
    color: #3a0ca3;
}

.travel-tab-btn.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background-color: #4361ee;
    border-radius: 3px;
}

.travel-content-container {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.travel-tab-content {
    display: none;
    animation: travelFadeIn 0.4s;
}

@keyframes travelFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.travel-tab-content.active {
    display: block;
}

/* Tips Container Styles */
.travel-tips-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.travel-dos-box, .travel-donts-box {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    background-color: white;
    border-top: 4px solid transparent;
}

.travel-dos-box:hover, .travel-donts-box:hover {
    transform: translateY(-5px);
}

.travel-dos-box {
    border-top-color: #4caf50;
    background: linear-gradient(to bottom, rgba(76, 175, 80, 0.03), white);
}

.travel-donts-box {
    border-top-color: #f44336;
    background: linear-gradient(to bottom, rgba(244, 67, 54, 0.03), white);
}

.travel-tip-title {
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.travel-dos-box .travel-tip-title {
    color: #2e7d32;
}

.travel-donts-box .travel-tip-title {
    color: #c62828;
}

.travel-tip-title i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.travel-tip-list {
    padding-left: 20px;
}

.travel-tip-list li {
    margin-bottom: 10px;
    line-height: 1.5;
    position: relative;
    padding-left: 10px;
}

.travel-dos-box .travel-tip-list li::before {
    content: '✓';
    color: #4caf50;
    position: absolute;
    left: -18px;
    font-weight: bold;
}

.travel-donts-box .travel-tip-list li::before {
    content: '✗';
    color: #f44336;
    position: absolute;
    left: -18px;
    font-weight: bold;
}

/* Content Headings */
.travel-tab-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.travel-tab-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #4361ee, #3a0ca3);
    border-radius: 3px;
}

/* Scrollbar Styling */
.travel-content-container::-webkit-scrollbar {
    width: 8px;
}

.travel-content-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.travel-content-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.travel-content-container::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.travel-tabs-scroll::-webkit-scrollbar {
    height: 6px;
}

.travel-tabs-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.travel-tabs-scroll::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 3px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .travel-tips-container {
        flex-direction: column;
    }
    
    .travel-dos-box, .travel-donts-box {
        min-width: 100%;
    }
    
    .travel-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .travel-help-btn {
        left: 10px;
        bottom: 10px;
        width: 50px;
        height: 50px;
    }

    .travel-tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}