
        /* Base Styles & Variables */
        :root {
            --primary: #e83e8c;
            --primary-dark: #d42a7a;
            --accent: #ff7e33;
            --dark: #2a2a2a;
            --light: #ffffff;
            --gray: #f5f5f5;
            --dark-gray: #777777;
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Playfair Display', serif;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        html {
    scroll-behavior: smooth;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--light);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-secondary);
            font-weight: 600;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: var(--dark-gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: capitalize;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--light);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .btn-accent {
            background: var(--accent);
            color: var(--light);
        }

        .btn-accent:hover {
            background: #ff6a1a;
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .text-center {
            text-align: center;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--light);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .preloader .loader {
            width: 50px;
            height: 50px;
            border: 3px solid var(--gray);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Navbar */
       .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background: var(--light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 55px;
}

/* Nav menu */
.nav-menu {
    display: flex;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    font-size: 1rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Toggle Button */
.toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.toggle-btn .bar {
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    transition: var(--transition);
}

.toggle-btn.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.toggle-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.toggle-btn.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Nav */
@media (max-width: 768px) {
    .toggle-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--light);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 30px;
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
    }
}

        /* Hero Slider */
        .hero-slider {
            margin-top: 80px;
        }

        .carousel-item {
            height: 100vh;
            min-height: 600px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--light);
            width: 100%;
            padding: 0 20px;
            z-index: 1;
        }

        .slide-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease;
        }

        .slide-text {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }

        .btn.pulse {
            animation: pulse 2s infinite, fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 126, 51, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(255, 126, 51, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 126, 51, 0);
            }
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 3rem;
            height: 3rem;
            background-size: 100% 100%;
            background-color: var(--primary);
            border-radius: 50%;
            opacity: 0.8;
        }

        .carousel-control-prev-icon:hover,
        .carousel-control-next-icon:hover {
            opacity: 1;
            background-color: var(--primary-dark);
        }

        /* Carousel Indicators */
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            margin: 0 5px;
        }

        .carousel-indicators .active {
            background-color: var(--primary);
        }

        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--dark-gray);
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            background: var(--gray);
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .feature-item i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 10px;
        }

        .feature-item span {
            font-weight: 500;
        }

       /* Services Section Styling */
/* Services Section */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none" stroke="rgba(232, 62, 140, 0.03)" stroke-width="2"><circle cx="50" cy="50" r="40"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: #e83e8c;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: #777;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(232, 62, 140, 0.15);
}

.service-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-container img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(232, 62, 140, 0.1), rgba(232, 62, 140, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  padding: 25px;
  text-align: center;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #e83e8c;
}

.service-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #e83e8c;
  color: white;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}

.service-card:hover .service-btn {
  opacity: 1;
  transform: translateY(0);
}

.service-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.service-btn:hover::before {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
}

        /* Gallery Section */
        /* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 18px;
}

.gallery-zoom {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 20px;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 30px;
    font-weight: bold;
    padding: 10px;
    cursor: pointer;
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .lightbox-content {
        width: 95%;
    }
}

        /* Testimonials Section */
        .testimonials-section {
            background: var(--gray);
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-item {
            padding: 0 15px;
        }

        .testimonial-content {
            background: var(--light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .testimonial-content::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 5rem;
            color: rgba(232, 62, 140, 0.1);
            position: absolute;
            top: 10px;
            left: 20px;
            line-height: 1;
        }

        .testimonial-text {
            position: relative;
            z-index: 1;
            font-style: italic;
            color: var(--dark-gray);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--primary);
        }

        .testimonial-author h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .testimonial-author span {
            color: var(--dark-gray);
            font-size: 0.9rem;
        }

        .slick-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            list-style: none;
        }

        .slick-dots li {
            margin: 0 5px;
        }

        .slick-dots button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            border: none;
            font-size: 0;
            padding: 0;
            cursor: pointer;
            transition: var(--transition);
        }

        .slick-dots button:hover,
        .slick-dots li.slick-active button {
            background: var(--primary);
        }

       /* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background:#8c2265;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(0);
    opacity: 1;
}

/* .info-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.1);
    background: white;
} */

.info-item i {
    font-size: 1.5rem;
    color:white;
    margin-right: 20px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.2);
    color: var(--primary-dark);
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    color: white;
}

.info-item:hover h3 {
    color: white;
}

.info-item p,
.info-item a {
    color:white;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary);
}

.contact-form {
    flex: 1;
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.contact-form:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-primary {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: scale(1);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.4);
}

/* Animation for form elements when they appear */
@keyframes formElementAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* Footer */
        .footer {
            background: var(--dark);
            color: var(--light);
            padding: 60px 0 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about {
            padding-right: 20px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .footer-logo {
            height: 40px;
            margin-right: 10px;
        }

        .footer-about p {
            color:white;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links h3,
        .footer-services h3,
        .footer-contact h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after,
        .footer-services h3::after,
        .footer-contact h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
        }

        .footer-links ul li,
        .footer-services ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a,
        .footer-services ul li a {
            color: #aaa;
            transition: var(--transition);
        }

        .footer-links ul li a:hover,
        .footer-services ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-contact ul li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color:white;
        }

        .footer-contact ul li i {
            margin-right: 15px;
            color: var(--primary);
            font-size: 1.1rem;
            margin-top: 3px;
        }

        .footer-bottom {
            background: #1a1a1a;
            padding: 20px 0;
            text-align: center;
            color:white;
            font-size: 0.9rem;
        }

        .footer-bottom .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-legal {
            display: flex;
            gap: 20px;
        }

        .footer-legal a {
            color:white;
            transition: var(--transition);
        }

        .footer-legal a:hover {
            color: var(--primary);
        }

         /* Floating Social Icons */
        .floating-social {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }

        .floating-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .floating-social a:hover {
            transform: translateY(-5px);
        }

        .floating-social .whatsapp {
            background: #25D366;
        }

        .floating-social .instagram {
            background: #E1306C;
        }

        /* Google Map */
        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-top: 30px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-slider .slide-title {
                font-size: 3rem;
            }

            .about-content {
                flex-direction: column;
            }

            .contact-content {
                flex-direction: column;
            }

            .info-item {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .hero-slider .slide-title {
                font-size: 2.5rem;
            }

            .hero-slider .slide-text {
                font-size: 1rem;
            }

            .carousel-item {
                min-height: 500px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom .container {
                flex-direction: column;
            }

            .footer-legal {
                margin-top: 15px;
            }
        }

        @media (max-width: 576px) {
            .section {
                padding: 50px 0;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .hero-slider .slide-title {
                font-size: 2rem;
            }

            .btn {
                padding: 10px 25px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-content {
                padding: 20px;
            }

            .testimonial-content::before {
                font-size: 4rem;
            }

            .footer-bottom p {
                text-align: center;
            }
        }

        
    .hero-slider.swiper {
        width: 100%;
        height: 100vh;
        min-height: 500px;
        position: relative;
        margin-top: 80px;
    }

    .hero-slider .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-slider .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        width: 80%;
        max-width: 800px;
        z-index: 10;
        opacity: 0;
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .hero-slider .swiper-slide-active .slide-content {
        opacity: 1;
    }

    .hero-slider .slide-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-slider .slide-text {
        font-size: 1.2rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .hero-slider .btn-accent {
        background-color: #e83e8c;
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        border: none;
    }

    .hero-slider .btn-accent:hover {
        background-color: #d63350;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .hero-slider .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: white;
        opacity: 0.7;
    }

    .hero-slider .swiper-pagination-bullet-active {
        background: #e83e8c;
        opacity: 1;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        color: white;
        background: rgba(0, 0, 0, 0.3);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .hero-slider .swiper-button-next:hover,
    .hero-slider .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-slider .swiper-button-next::after,
    .hero-slider .swiper-button-prev::after {
        font-size: 1.5rem;
        font-weight: bold;
    }

    /* Responsive Adjustments for 3D Slider */
    @media (max-width: 768px) {
        .hero-slider .slide-title {
            font-size: 2rem;
        }
        
        .hero-slider .slide-text {
            font-size: 1rem;
        }
        
        .hero-slider .btn-accent {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
        
        .hero-slider .swiper-button-next,
        .hero-slider .swiper-button-prev {
            width: 40px;
            height: 40px;
        }
    }

    @media (max-width: 480px) {
        .hero-slider .slide-title {
            font-size: 1.5rem;
        }
        
        .hero-slider .slide-text {
            font-size: 0.9rem;
        }
    }


                body {
                margin: 0;
                font-family: Arial, sans-serif;
            }

            .swiper {
                width: 100%;
                height: 400px;
                position: relative;
                margin-top: 70px;
            }

            /* Slide Images */
            .swiper-slide img {
                width: 100%;
                height: 100%;
            }

            /* Content Box */
            .content-box {
                position: absolute;
                top: 70%;
                left: 50%;
                transform: translate(-50%, -50%) scale(0.8);
                background: rgba(0, 0, 0, 0.6);
                color: #fff;
                text-align: center;
                padding: 20px 30px;
                border-radius: 10px;
                opacity: 0;
                transition: opacity 0.8s ease, transform 0.8s ease;
                max-width: 400px;
            }

            .swiper-slide-active .content-box {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }

            .content-box h2 {
                margin: 0 0 10px;
                font-size: 28px;
            }

            .content-box p {
                margin: 0 0 15px;
                font-size: 16px;
                line-height: 1.4;
            }

            .content-box button {
                padding: 10px 20px;
                border: none;
                background: #f74464;
                /* color:#fff; */
                font-size: 16px;
                border-radius: 5px;
                cursor: pointer;
            }

            .content-box button:hover {
                background: #d63350;
            }

            /* Small Navigation Buttons */
            .swiper-button-next,
            .swiper-button-prev {
                color: #fff;
                background: rgba(0, 0, 0, 0.5);
                width: 30px;
                height: 30px;
                border-radius: 50%;
            }

            .swiper-button-next::after,
            .swiper-button-prev::after {
                font-size: 14px;
            }

            .swiper-button-next:hover,
            .swiper-button-prev:hover {
                background: rgba(0, 0, 0, 0.8);
            }

            /* ✅ Responsive Design */
            @media (max-width: 1024px) {

                /* Tablets */
                .swiper {
                    height: 350px;
                }

                .content-box {
                    max-width: 350px;
                    padding: 15px 20px;
                }

                .content-box h2 {
                    font-size: 24px;
                }

                .content-box p {
                    font-size: 14px;
                }

                .content-box button {
                    font-size: 14px;
                    padding: 8px 16px;
                }
            }

            @media (max-width: 768px) {

                /* Mobile Landscape */
                .swiper {
                    height: 300px;
                }

                .content-box {
                    top: 65%;
                    max-width: 300px;
                    padding: 12px 18px;
                }

                .content-box h2 {
                    font-size: 20px;
                }

                .content-box p {
                    font-size: 13px;
                }
            }

            @media (max-width: 480px) {

                /* Mobile Portrait */
                .swiper {
                    height: 250px;
                }

                .content-box {
                    top: 60%;
                    max-width: 250px;
                    padding: 10px 15px;
                }

                .content-box h2 {
                    font-size: 18px;
                }

                .content-box p {
                    font-size: 12px;
                }

                .content-box button {
                    font-size: 12px;
                    padding: 6px 12px;
                }
                
            }
              #home {
                position: relative;
            }

            .swiper-slide {
                position: relative;
            }

            .swiper-slide img {
                width: 100%;
                height: 500px;
                object-fit: cover;
            }

            .slide-caption {
                position: absolute;
                top: 50%;
                left: 60px;
                /* distance from left */
                transform: translateY(-50%);
                text-align: left;
            }

            .slide-caption h3 {
                color: #fff;
                /* white text */
                font-size: 2.5rem;
                font-weight: bold;
                margin: 0;
                text-transform: uppercase;
                letter-spacing: 1px;
            }


            .animated-btn {
            position: relative;
            padding: 16px 32px;
            font-size: 18px;
            font-weight: 600;
            color: white;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
            box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: pulse 2s infinite;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .animated-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.7s ease;
        }

        .animated-btn:hover::before {
            left: 100%;
        }

        .animated-btn:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 15px 35px rgba(238, 90, 36, 0.5);
            background: linear-gradient(45deg, #ee5a24, #ff6b6b);
        }

        .animated-btn:active {
            transform: translateY(0) scale(0.98);
            box-shadow: 0 5px 15px rgba(238, 90, 36, 0.3);
        }

        .btn-icon {
            display: inline-block;
            margin-right: 12px;
            font-size: 24px;
            animation: bounce 1.5s infinite, float 3s ease-in-out infinite;
        }

        .btn-text {
            position: relative;
            z-index: 1;
        }

        .btn-arrow {
            margin-left: 12px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .animated-btn:hover .btn-arrow {
            opacity: 1;
            transform: translateX(0);
            animation: arrowPulse 1s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3); }
            50% { box-shadow: 0 8px 25px rgba(238, 90, 36, 0.5), 0 0 0 12px rgba(238, 90, 36, 0.1); }
            100% { box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3); }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-8px); }
            60% { transform: translateY(-4px); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        @keyframes arrowPulse {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(4px); }
        }

        .animated-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .animated-btn:active::after {
            width: 300px;
            height: 300px;
        }

        /* Modal Styling */
        .modal {
            display: none;
            position: fixed;
            z-index: 999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
            overflow-y: auto;
        }

        .modal-content {
            background: linear-gradient(135deg, #fff8f8, #ffffff);
            margin: auto;
            padding: 30px;
            border-radius: 16px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 10px 50px rgba(0,0,0,0.2);
            position: relative;
            transform: scale(0.9);
            opacity: 0;
            animation: modalOpen 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
        }

        @keyframes modalOpen {
            to { 
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }

        .close {
            position: absolute;
            right: 25px;
            top: 15px;
            font-size: 28px;
            font-weight: bold;
            color: #ee5a24;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .close:hover {
            transform: rotate(90deg) scale(1.2);
            color: #ff6b6b;
        }

        .modal h2 {
            color: #ee5a24;
            margin-bottom: 20px;
            text-align: center;
        }

        .modal p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 25px;
            text-align: center;
        }

        .modal-icon {
            font-size: 60px;
            text-align: center;
            margin: 20px 0;
            animation: float 3s ease-in-out infinite;
        }

        .modal-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #ee5a24, #ff6b6b);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(238, 90, 36, 0.3);
        }

        .modal-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(238, 90, 36, 0.4);
        }

        .modal-btn:active {
            transform: translateY(0);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

