* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/* About Section */
.about-section {
    padding: 100px 0;
    background:#2f3741;
    position: relative;
    color: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-header {
    margin-bottom: 2rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ecd36e;
    margin-bottom: 1rem;
    position: relative;
    
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    /* background: linear-gradient(45deg, #d4af37, #f4e284); */
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.3rem;
    color: white;
    font-weight: 300;
    line-height: 1.6;
}

.about-description {
    margin-bottom: 2.5rem;
}

.about-description p {
    color: white;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgb(16, 16, 16);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-achievements {
    margin-bottom: 2.5rem;
}

.about-achievements h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-list li {
    padding: 0.7rem 0;
    color: white;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #eee;
}

.achievement-list li:last-child {
    border-bottom: none;
}

.achievement-list li::before {
    content: '🏅';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.about-philosophy {
    margin-bottom: 2.5rem;
}

.about-philosophy h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.about-philosophy blockquote {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #d4af37;
    border-radius: 10px;
    font-style: italic;
    color: black;
    line-height: 1.7;
    margin: 0;
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-about-primary {
    background: linear-gradient(45deg, #d4af37, #f4e284);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-about-secondary {
    background: transparent;
    color: white;
    border: 2px solid #e7e9ed;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-about-secondary:hover {
    background: #1a2338;
    color: white;
    transform: translateY(-3px);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: #d4af37;
    font-weight: 600;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.credential-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #d4af37, #f4e284);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credential-text h4 {
    color: #1a2338;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.credential-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .about-cta {
        justify-content: center;
        flex-direction: column;
       
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .image-wrapper img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 1rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .credential-item {
        padding: 1rem;
    }

    .credential-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.services-container {
  width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #d4af37, #f4e284);
    border-radius: 2px;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-wrapper {
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.service-card {
    background: #2a2a2a;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(25% - 1.5rem);
    min-height: 450px;
    border: 1px solid #404040;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #d4af37, #f4e284);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #d4af37;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #bbbbbb;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.service-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #d4af37;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.service-btn:hover {
    background: #d4af37;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Slider Navigation */
.services-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-only {
    display: flex;
}

.nav-btn {
    background: #d4af37;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #b8941f;
    transform: scale(1.1);
}

.nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: scale(1);
}

.services-dots {
    display: flex;
    gap: 0.5rem;
}

.service-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

/* Tablet View */
@media (max-width: 1024px) {
    .service-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-title {
        font-size: 2.2rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

/*     .services-grid {
        gap: 1rem;
    } */

    .service-card {
        flex: 0 0 calc(90% - 1.5rem);
        padding: 2rem 1.5rem;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 1rem;
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .services-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
        min-height: 320px;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

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

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2338 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.cta-content {
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
   
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e8e8e8;
    font-weight: 300;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #b8b8b8;
}

.cta-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.2rem;
}

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

.cta-buttons-main {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(45deg, #d4af37, #f4e284);
    color: #1a2338;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid #d4af37;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-secondary:hover {
    background: #d4af37;
    color: #1a2338;
    transform: translateY(-3px);
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

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

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-title {
      
        font-size: 2.2rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }

    .cta-features {
        justify-content: center;
        gap: 1rem;
    }

    .cta-buttons-main {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
        display: block;
        padding: 1.2rem 1rem;
    }

    .cta-image img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-container {
        padding: 0 1rem;
    }

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

    .cta-features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        max-width: 280px;
        padding: 1rem 0.8rem;
        font-size: 1rem;
    }
}



/* Navbar Styles */
.navbar {
    background: rgba(26, 35, 56, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 35, 56, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #f4e284;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 56, 0.8), rgba(0, 0, 0, 0.6));
}

.slide1 {
    background-image: url(images/3.jpeg);        }

.slide2 {
    background-image: url(images/2.jpeg);        }

.slide3 {
    background-image: url(images/3.jpeg);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #d4af37;
    font-weight: 300;
    opacity: 0;
    animation: slideInRight 1s ease-out 0.7s forwards;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #f4e284);
    color: #1a2338;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

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

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 35, 56, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

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

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }
}

.image-gal{
    background-color: #242424;
}
.heading h2{
    text-align: center;
/*     margin-bottom: 60px; */
 margin-top: 2%;
 font-size: 3rem;
 font-weight: 700;
 color: white;
   
  }
.heading p{
    margin-bottom: 2%;
}
  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-left: 10%;
    margin-right: 10%;
   padding-bottom: 5%;;

  
  }

  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .gallery img:hover {
    transform: scale(1.05);
  }

  @media (min-width: 768px) {
    .gallery {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .clienttest{
    background-color: #323d46;
    color: white;
 font-size: 2rem;
 font-weight: 700;
 
  }



  h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .bip-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    
 
  }

  .bip-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .bip-slide {
    flex: 0 0 calc(100% / 2);
    padding: 10px;
  }

  .bip-slide img {
    width: 100%;

    object-fit: fill;
  }

  .bip-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ecd36e;
    border: none;
    color: white;
    padding: 12px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
    border-radius: 50%;
  }

  .bip-arrow:hover {
    background-color: rgba(0,0,0,0.8);
  }

  .bip-left-arrow {
    left: 10px;
  }

  .bip-right-arrow {
    right: 10px;
  }

  @media (min-width: 768px) {
    .bip-slide {
      flex: 0 0 calc(100% / 3);
    }
  }


  .footer {
    background: #1a1a1a;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffd700;
  }

  .footer-nav {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .footer-nav li a:hover {
    color: #fff;
  }

  .footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }

  .footer-social a {
    color: #ccc;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-social a:hover {
    color: #ffd700;
  }

  .footer-bottom {
    font-size: 14px;
    color: #888;
  }

  @media (max-width: 600px) {
    .footer-nav {
      flex-direction: column;
      gap: 10px;
    }

    .footer-social {
      justify-content: center;
    }
  }


  
  .modern-contact-section {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 50px;
    justify-content: center;
    gap: 40px;
    background: linear-gradient(to right, #0c0c0c, #1a1a1a);
  }

  .contact-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  }

  .contact-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffc107;
  }

  .contact-box p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #ccc;
  }

  .contact-details p {
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contact-details i {
    color: #ffc107;
    font-size: 1.1rem;
  }

  .social-links {
    margin-top: 20px;
  }

  .social-links a {
    color: #fff;
    font-size: 1.3rem;
    margin-right: 15px;
    transition: color 0.3s, transform 0.3s;
  }

  .social-links a:hover {
    color: #ffc107;
    transform: scale(1.1);
  }

  .map-box {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }

  .map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
  }

  @media (max-width: 768px) {
    .modern-contact-section {
      padding: 60px 20px;
    }

    .contact-box,
    .map-box {
      max-width: 100%;
    }
  }


 .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .popup {
      background: white;
      padding: 30px 20px;
      max-width: 400px;
      width: 90%;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      text-align: center;
      animation: popUp 0.3s ease-out;
    }

    @keyframes popUp {
      0% {
        transform: scale(0.7);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    .popup h2 {
      font-size: 20px;
      margin-bottom: 20px;
      color: #333;
    }

    .popup-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .popup-buttons button {
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.2s ease;
        margin-top:10px;
    }

    .btn-yes {
      background-color: green;
      color: white;
    }

    .btn-no {
      background-color: #dc3545;
      color: white;
    }

    .btn-yes:hover {
      background-color: #0056b3;
    }

    .btn-no:hover {
      background-color: #a71d2a;
    }

    /* Responsive */
    @media (max-width: 480px) {
      .popup h2 {
        font-size: 18px;
      }

      .popup-buttons {
        flex-direction: column;
        gap: 10px;
      }

      .popup-buttons button {
        width: 100%;
      }
    }

    /* Hidden content initially */
    #main-content {
      display: none;
      padding: 20px;
    }

