/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0066cc;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: #0055aa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #0066cc;
    transition: all 0.3s ease;
}

.logo span {
    color: #ff6600;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    font-weight: 600;
    transition: color 0.3s;
    font-size: 16px;
}

nav ul li a:hover {
    color: #0066cc;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #0066cc;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #0066cc;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    /* height: 100vh; */
    height: 80vh;
    width: 100%;
    overflow: hidden;
    padding-top: 80px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
    opacity: 0.1;
    animation: bgMove 100s linear infinite;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-slide {
    user-select: none;
    -webkit-user-drag: none;
}

.hero-slide img {
    pointer-events: none;
}

/* Services Section */
.services {
    padding: 100px 0;
    text-align: center;
    background: white;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    color: #0066cc;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #ff6600;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 60px;
    color: #0066cc;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #ff6600;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f9f9f9;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 250px;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-text h2 {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    text-align: center;
    background: #f9f9f9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #0066cc;
}

.pricing-card:nth-child(2)::before {
    background: #ff6600;
}
.pricing-card:nth-child(4)::before {
    background: #ff6600;
}
.pricing-card:nth-child(6)::before {
    background: #ff6600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0066cc;
}

.price {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #ff6600;
}

.price span {
    font-size: 16px;
    color: #777;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li {
    border-bottom-color: #ddd;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.contact-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0066cc;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details div {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-details i {
    margin-right: 15px;
    color: #0066cc;
    font-size: 22px;
    width: 30px;
    text-align: center;
}

.contact-form {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.contact-form.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: #0066cc;
    color: white;
    padding: 70px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #0066cc, #ff6600);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #ff6600;
}

.footer-col p, .footer-col li {
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-col li a {
    transition: all 0.3s ease;
}

.footer-col li a:hover {
    color: #ff6600;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #ff6600;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.8;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #ff6600;
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
    
    .about-content, .contact-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
   /*  .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: all 0.5s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 20px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav ul li a {
        font-size: 18px;
    }*/
    
    .header-container {
        padding: 0px 0;
    }
    
    .hero-slider {
        height: 60vh;
        padding-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .about-content, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services, .gallery, .about, .pricing, .contact {
        padding: 70px 0;
    }
} 

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
        background: none;
        border: none;
        width: 24px;
        height: 18px;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 15px;
        padding: 0;
    }

    .logo {
    margin-top: 10px;
}
    
    /* Hamburger icon */
    .menu-toggle i.fa-bars {
        font-size: 20px;
        color: #333;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: all 0.4s ease-out;
        z-index: 1000;
        padding: 0;
        margin: 0;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 60px 20px 20px;
        margin: 0;
    }
    
    nav ul li {
        margin: 10px 0;
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    nav.active ul li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Staggered animation */
    nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
    nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
    nav.active ul li:nth-child(3) { transition-delay: 0.2s; }
    nav.active ul li:nth-child(4) { transition-delay: 0.25s; }
    nav.active ul li:nth-child(5) { transition-delay: 0.3s; }
    nav.active ul li:nth-child(6) { transition-delay: 0.35s; }
    
    nav ul li a {
        font-size: 16px;
        color: #333;
        padding: 12px 15px;
        display: block;
        width: 100%;
        border-radius: 4px;
        transition: all 0.2s ease;
        font-weight: 500;
    }
    
    nav ul li a:hover {
        background: #f5f5f5;
        color: #000;
    }
    
    /* Active menu item indicator */
    nav ul li a.active {
        color: #0066cc;
        font-weight: 600;
    }
    
    /* Close button style */
    .close-menu {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 20px;
        color: #666;
        cursor: pointer;
        padding: 5px;
        display: none;
        background: none;
        border: none;
    }
    
    nav.active .close-menu {
        display: block;
    }
    
    /* Overlay */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    nav.active ~ .overlay {
        opacity: 1;
        visibility: visible;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 15px;
    }
    
    .service-card, .pricing-card {
        padding: 30px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

.service-card p {
  text-align: justify;
}

/* Base Container Styles */
.store-container {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Left Column Styles */
.left-info {
  flex: 1;
  min-width: 300px;
  padding: 25px;
  border-right: 1px solid #e0e0e0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.left-info h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #0066cc;
}

.distance-meter {
  background: #f5f5f5;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: #666;
  margin-left: 15px;
}

.address {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
  margin: 5px 0 20px;
}

.info-boxes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.info-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  min-width: 150px;
}

.info-item:hover {
  background-color: #f9f9f9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.icon {
  height: 20px;
  width: auto;
}

.info-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.info-item p strong {
  color: #0066cc;
  font-weight: 700;
}

.mobile-only {
  display: none;
}

/* Right Column Styles */
.right-info {
  flex: 1;
  min-width: 300px;
  padding: 25px;
}

.rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.google-logo {
  height: 20px;
  margin-right: 8px;
}

.rating strong {
  font-weight: 600;
  color: #666;
  margin-right: 15px;
}

.rating-value {
  font-weight: 700;
  font-size: 18px;
  color: #0066cc;
}

.stars {
  color: #FFC107;
  font-size: 16px;
  margin-left: 5px;
}

.stars i {
  margin: 0 1px;
}

.count {
  color: #666;
  font-size: 14px;
  font-weight: normal;
  margin-left: 5px;
}

.divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 20px 0;
}

.action-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.btn {
  display: block;
  padding: 12px 15px;
  background-color: #0066cc;
  color: white;
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #0055aa;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .left-info {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
}

@media (max-width: 767px) {
  .left-info h2 {
    font-size: 20px;
  }
  
  .address {
    font-size: 14px;
  }
  
  .info-item p {
    font-size: 13px;
  }
  
  .rating {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .rating-value {
    margin-top: 5px;
  }
  
  .btn {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .mobile-only {
    display: flex;
  }
}

@media (max-width: 575px) {
  .info-item {
    padding: 8px 10px;
    min-width: 120px;
  }
  
  .icon {
    height: 18px;
  }
  
  .btn {
    padding: 8px 10px;
  }
  
  .action-buttons {
    grid-template-columns: 1fr;
  }
}


/* --------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.price-grid {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.gender-column {
    flex: 1;
}

.gender-column h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.pricing-features li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.pricing-features li span {
    font-weight: bold;
    color: #2c7be5;
}

.btn {
    display: inline-block;
    background: #2c7be5;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn:hover {
    background: #1a68d1;
}



/* ---------- */

    .sticky-buttons {
    position: fixed;
    top: 100px;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px 0 0 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sticky-btn i {
    margin-right: 8px;
}

.sticky-btn.whatsapp {
    background-color: #25d366;
     width: 50px;
     justify-content: center;
}

.sticky-btn.call {
    background-color: #e74c3c;
    width: 50px;
    justify-content: center;
}

.sticky-btn.ios,
.sticky-btn.android {
    background-color: #2980b9;
    width: 50px;
    justify-content: center;
}





