:root {
  --primary: #fc6f06;
  --dark: #2d2b2a;
  --light: #ffffff;
  --gray: #f8f9fa;
  --accent: #d45a05;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  overflow-x: hidden;
  color: #333;
  line-height: 1.6;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-size: 3rem;
  font-weight: 800;
  color: var(--light);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.loader-logo span {
  color: var(--primary);
}

.loader-bar {
  width: 250px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 10px;
  animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.loader-logo img{
    height: 80px;
}

/* Header */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 3px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 2px 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--dark);
  letter-spacing: 1px;
}

.navbar-brand span {
  color: var(--primary);
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 600;
  padding: 8px 25px !important;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.offcanvas-header {
  background-color: var(--dark);
  color: var(--light);
}

.offcanvas-body {
  background-color: var(--dark);
}

.offcanvas-body .nav-link {
  color: var(--light);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

/* Section Styling */
section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--dark);
  color: var(--light);
}

.section-light {
  background-color: var(--light);
  color: var(--dark);
}

.section-gray {
  background-color: var(--gray);
  color: var(--dark);
}

.section-title {
  font-weight: 800;
  /* margin-bottom: 60px; */
  position: relative;
  font-size: 2.8rem;
  line-height: 1.2;
}



.text-center .section-title:after {
  left: 50%;
  transform: translateX(-50%);
}

/* .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 0px;
} */

/* Banner Section */
.banner-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.banner-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(45, 43, 42, 0.85) 0%,
    rgba(45, 43, 42, 0.6) 100%
  );
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0.9;
}

.app-buttons .btn {
  padding: 15px 35px;
  border-radius: 50px;
  margin-right: 20px;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: var(--light);
}

.btn-primary-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(252, 111, 6, 0.4);
}

.btn-outline-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 991.98px) {
  .banner-content h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 80px 0;
  }

  .banner-content h1 {
    font-size: 2.5rem;
  }

  .banner-content p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .app-buttons .btn {
    display: block;
    width: fit-content;
    margin-bottom: 20px;
    text-align: center;
    justify-content: center;
  }



  .app-buttons {
    display: flex;
  }

  .app-buttons .btn {
    padding:  10px 20px;
  }




}

@media (max-width: 575.98px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .navbar-brand {
    font-size: 1.8rem;
  }
}



.navbar-brand img{
    height: 60px;

}





        :root {
            --primary: #fc6f06;
            --dark: #2d2b2a;
            --light: #ffffff;
            --gray: #f8f9fa;
            --accent: #d45a05;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
     
        
       
        
        .section-light {
            background-color: var(--light);
            color: var(--dark);
        }
        
        .section-title {
            font-weight: 800;
            /* margin-bottom: 60px; */
            position: relative;
            font-size: 2.8rem;
            line-height: 1.2;
        }
        
       
        
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        /* About Us Section Styles */
        .home-about {
            position: relative;
            overflow: hidden;
        }
        
        .home-about-content {
            padding-right: 30px;
        }
        
        .home-about-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--dark);
            line-height: 1.2;
        }
        
        .home-about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 5px;
            color: #555;
        }
        
        .home-about-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .home-about-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .home-about-icon {
            width: 40px;
            height: 40px;
            background: rgba(252, 111, 6, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .home-about-btn {
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border: none;
            color: var(--light);
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(252, 111, 6, 0.3);
        }
        
        .home-about-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(252, 111, 6, 0.4);
            color: var(--light);
        }
        
        /* Diagonal Images Container */
        .home-about-images {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .home-about-image-container {
            position: relative;
            width: 100%;
            height: 100%;
            
        }
        
        .home-about-img {
            position: absolute;
            width: 60%;
            height: 80%;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
        }
        
        .home-about-img-1 {
            top: 10%;
            left: 0;
            z-index: 2;
            clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
        }
        
        .home-about-img-2 {
            bottom: 10%;
            right: 0;
            z-index: 1;
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
        }
        
        .home-about-img:hover {
            /* transform: scale(1.03); */
            z-index: 3;
            width: 100%;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);

        }
        
        .home-about-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .home-about-stat {
            text-align: center;
            flex: 1;
        }
        
        .home-about-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .home-about-stat-text {
            font-size: 0.9rem;
            color: #666;
            font-weight: 600;
        }
        
        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .home-about-images {
                height: 450px;
            }
        }
        
        @media (max-width: 991.98px) {
            .home-about-content {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .home-about-images {
                height: 400px;
            }
            
            .home-about-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 767.98px) {
            section {
                padding: 50px 0;
            }
            
            .home-about-images {
                height: 350px;
            }
            
            .home-about-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .home-about-stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 575.98px) {
            .home-about-images {
                height: 300px;
            }
            
            .home-about-title {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .home-about-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .home-about-stat {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 15px;
            }
            
            .home-about-stat-number {
                margin-bottom: 0;
            }
        }
























        /* Why Choose Us Section Styles */
.why-choose-us {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1818 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23fc6f06' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 111, 6, 0.1), transparent);
    transition: left 0.6s;
}

.why-choose-card:hover::before {
    left: 100%;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: rgba(252, 111, 6, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(252, 111, 6, 0.1), rgba(212, 90, 5, 0.1));
    border: 2px solid rgba(252, 111, 6, 0.2);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.why-choose-card:hover .why-choose-icon {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1818 100%);
    color: var(--light);
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
}

.why-choose-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
    position: relative;
    z-index: 2;
}

.why-choose-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.why-choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    padding: 30px;
}

.why-choose-card:hover .why-choose-overlay {
    opacity: 1;
    transform: scale(1);
}

.why-choose-overlay-content {
    text-align: center;
    color: var(--light);
}

.why-choose-overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-choose-overlay-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Stats Section */
.why-choose-stats {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-stat {
    text-align: center;
    padding: 20px;
}

.why-choose-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-stat-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .why-choose-card {
        padding: 30px 20px;
    }
    
    .why-choose-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .why-choose-title {
        font-size: 1.3rem;
    }
    
    .why-choose-stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .why-choose-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .why-choose-title {
        font-size: 1.2rem;
    }
    
    .why-choose-stat-number {
        font-size: 2rem;
    }
    
    .why-choose-stat-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .why-choose-card {
        padding: 20px 15px;
    }
    
    .why-choose-overlay {
        padding: 20px;
    }
    
    .why-choose-overlay-content h4 {
        font-size: 1.1rem;
    }
    
    .why-choose-overlay-content p {
        font-size: 0.85rem;
    }
    
    .why-choose-stat {
        padding: 15px 10px;
    }
    
    .why-choose-stat-number {
        font-size: 1.8rem;
    }
}




/* How It Works Section Styles */
.how-it-works {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(252, 111, 6, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.how-it-works-process {
    position: relative;
    margin-bottom: 0px;
}

.how-it-works-step {
    background: var(--light);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    z-index: 2;
    min-height: 330px;
}

.how-it-works-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.how-it-works-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--light);
    box-shadow: 0 5px 15px rgba(252, 111, 6, 0.3);
}

.how-it-works-step-icon {
    width: 80px;
    height: 80px;
    background: rgba(252, 111, 6, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 25px;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.how-it-works-step:hover .how-it-works-step-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    transform: scale(1.1) rotate(10deg);
}

.how-it-works-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.how-it-works-step-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.how-it-works-step-arrow,
.how-it-works-step-complete {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.how-it-works-step-complete {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

/* Connection Line */
.how-it-works-connection {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
    z-index: 1;
}

.how-it-works-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 20%, 
        var(--primary) 80%, 
        transparent 100%);
    transform: translateY(-50%);
    opacity: 0.3;
}

.how-it-works-dots {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.how-it-works-dots span {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.how-it-works-dots span:nth-child(2) {
    animation-delay: 0.5s;
}

.how-it-works-dots span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Features Section */
.how-it-works-features {
    background: var(--light);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.how-it-works-feature {
    display: flex;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.how-it-works-feature:hover {
    transform: translateX(10px);
}

.how-it-works-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(252, 111, 6, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.how-it-works-feature:hover .how-it-works-feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    transform: rotate(-5deg);
}

.how-it-works-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
}

.how-it-works-feature-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .how-it-works-step {
        padding: 35px 20px;
    }
    
    .how-it-works-step-arrow,
    .how-it-works-step-complete {
        right: -12px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 991.98px) {
    .how-it-works-connection {
        display: none;
    }
    
    .how-it-works-step-arrow,
    .how-it-works-step-complete {
        display: none;
    }
    
    .how-it-works-step {
        margin-bottom: 40px;
        padding: 30px 20px;
    }
    
    .how-it-works-step-number {
        top: -15px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .how-it-works-step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .how-it-works-step-title {
        font-size: 1.3rem;
    }
    
    .how-it-works-features {
        padding: 40px 30px;
    }
}

@media (max-width: 767.98px) {
    .how-it-works-step {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .how-it-works-step-number {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .how-it-works-step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .how-it-works-step-title {
        font-size: 1.2rem;
    }
    
    .how-it-works-features {
        padding: 30px 20px;
    }
    
    .how-it-works-feature {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .how-it-works-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 15px;
    }
}

@media (max-width: 575.98px) {
    .how-it-works-step {
        padding: 20px 15px;
    }
    
    .how-it-works-step-number {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
        top: -12px;
    }
    
    .how-it-works-step-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .how-it-works-step-title {
        font-size: 1.1rem;
    }
    
    .how-it-works-step-text {
        font-size: 0.9rem;
    }
    
    .how-it-works-feature {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .how-it-works-feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

















/* Download App Section Styles */
.download-app {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1818 100%);
    position: relative;
    overflow: hidden;
}

.download-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23fc6f06' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.download-content {
    padding-right: 30px;
}

.download-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Download Features */
.download-features {
    margin-bottom: 40px;
}

.download-feature {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.download-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(252, 111, 6, 0.3);
}

.download-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(252, 111, 6, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.download-feature:hover .download-feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    transform: rotate(-5deg);
}

.download-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--light);
}

.download-feature-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
}

.download-btn.google-play {
    background: var(--light);
    color: var(--dark);
}

.download-btn.app-store {
    background: transparent;
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.3);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.download-btn.google-play:hover {
    background: var(--primary);
    color: var(--light);
}

.download-btn.app-store:hover {
    background: var(--light);
    color: var(--dark);
    border-color: var(--light);
}

.download-btn-icon {
    font-size: 2rem;
    margin-right: 15px;
}

.download-btn-text {
    display: flex;
    flex-direction: column;
}

.download-btn-text span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-btn-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Download Stats */
.download-stats {
    display: flex;
    gap: 30px;
}

.download-stat {
    text-align: center;
}

.download-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-stat-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Download Visual */
.download-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 600px;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    z-index: 2;
}

.phone-image {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.phone-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--primary);
    border-radius: 50px;
    z-index: -1;
    opacity: 0.5;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(252, 111, 6, 0.1);
    border: 2px solid rgba(252, 111, 6, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .download-content {
        padding-right: 20px;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 991.98px) {
    .download-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .download-feature {
        justify-content: center;
        text-align: left;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .download-stats {
        justify-content: center;
    }
    
    .download-visual {
        min-height: 500px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 767.98px) {
    .download-subtitle {
        font-size: 1.1rem;
    }
    
    .download-feature {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .download-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 15px;
    }
    
    .download-buttons {
        gap: 15px;
    }
    
    .download-btn {
        padding: 12px 20px;
        min-width: 160px;
    }
    
    .download-btn-icon {
        font-size: 1.8rem;
        margin-right: 12px;
    }
    
    .download-stats {
        gap: 20px;
    }
    
    .download-stat-number {
        font-size: 1.8rem;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .download-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .download-stat {
        flex: 1;
        min-width: 80px;
    }
    
    .download-stat-number {
        font-size: 1.6rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .element-1 {
        left: 5%;
    }
    
    .element-2 {
        right: 5%;
    }
    
    .element-3 {
        left: 10%;
    }
}





/* Contact Us Section Styles */
.contact-us {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-info {
    background: var(--light);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-info-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(252, 111, 6, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(252, 111, 6, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(252, 111, 6, 0.08);
    transform: translateX(5px);
    border-color: rgba(252, 111, 6, 0.2);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--light);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-method-icon {
    transform: rotate(-5deg) scale(1.1);
}

.contact-method-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-method-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Contact Social */
.contact-social h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(252, 111, 6, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    transform: translateY(-3px);
    border-color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-form {
    height: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--light);
    box-shadow: 0 0 0 3px rgba(252, 111, 6, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Form Check */
.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(252, 111, 6, 0.1);
    border-color: var(--primary);
}

.form-check-label {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(252, 111, 6, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .contact-info {
        padding: 35px 25px;
    }
    
    .contact-form-wrapper {
        padding: 35px;
    }
}

@media (max-width: 991.98px) {
    .contact-info {
        margin-bottom: 40px;
        padding: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .contact-info-title {
        font-size: 1.6rem;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .contact-method-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .contact-info {
        padding: 25px 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-info-title {
        font-size: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .contact-method-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .form-control {
        padding: 12px 15px;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .contact-info {
        padding: 20px 15px;
    }
    
    .contact-form-wrapper {
        padding: 20px 15px;
    }
    
    .contact-info-title {
        font-size: 1.4rem;
    }
    
    .contact-method {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .contact-method-content h4 {
        font-size: 1rem;
    }
    
    .contact-method-content p {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .form-check {
        align-items: flex-start;
    }
    
    .form-check-label {
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .contact-info {
        padding: 15px 10px;
    }
    
    .contact-form-wrapper {
        padding: 15px 10px;
    }
    
    .contact-method {
        padding: 12px;
    }
    
    .contact-method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Footer Section Styles */
.footer {
    background: linear-gradient(135deg, #1a1818 0%, var(--dark) 100%);
    color: var(--light);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}




.footer-logo img{
    height: 50px;
}


/* Footer Main */
.footer-main {
    margin-bottom: 40px;
}

/* Footer Widget */
.footer-widget {
    margin-bottom: 30px;
}

/* Footer Logo */
.footer-logo h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-logo span {
    color: var(--primary);
}

/* Footer Description */
.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--primary);
    margin-right: 12px;
    width: 20px;
    font-size: 1rem;
}

/* Footer Title */
.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--light);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-item {
    margin-bottom: 12px;
}

.footer-links-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links-link i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.footer-links-link:hover i {
    transform: rotate(90deg);
}

/* Newsletter */
.footer-newsletter {
    margin-bottom: 25px;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.newsletter-form {
    margin-bottom: 25px;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(252, 111, 6, 0.1);
}

.newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 15px;
    color: var(--light);
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: none;
}

.newsletter-btn {
    background: var(--primary);
    border: none;
    padding: 12px 20px;
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

/* Footer Social */
.footer-social {
    margin-top: 25px;
}

.footer-social-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(252, 111, 6, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 30px;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-copyright i {
    color: #e74c3c;
    margin: 0 5px;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--primary);
}

/* Fix for Colour Moon link */
.footer-bottom-links a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--light);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-logo h3 {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    .footer {
        padding: 50px 0 0;
    }
    
    /* .footer-widget {
        margin-bottom: 40px;
    } */
    
    .footer-logo h3 {
        font-size: 1.8rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 40px 0 0;
    }
    
    /* .footer-logo {
        text-align: center;
    }
     */
    /* .footer-description {
        text-align: center;
    }
     */
    /* .footer-contact {
        text-align: center;
    } */
    
    /* .footer-contact-item {
        justify-content: center;
    }
     */
    /* .footer-title {
        text-align: center;
    } */
    
    /* .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links-link {
        justify-content: center;
    }
    
    .footer-newsletter {
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    } */
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 30px 0 0;
    }
    
    .footer-logo h3 {
        font-size: 1.6rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-contact-item {
        font-size: 0.9rem;
    }
    
    .footer-links-link {
        font-size: 0.9rem;
    }
    
    .newsletter-description {
        font-size: 0.9rem;
    }
    
    .newsletter-input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .newsletter-btn {
        padding: 10px 15px;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .footer-logo h3 {
        font-size: 1.4rem;
    }
    
    .footer-social-icons {
        gap: 8px;
    }
    
    .footer-social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 10px 10px 0 0;
    }
    
    .newsletter-btn {
        border-radius: 0 0 10px 10px;
    }
}



/* App Screens Section */
.app-screens {
    background: #f8f9fa;
    padding: 80px 0;
}

.app-screens-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}



.app-screens-item {
    text-align: center;
    padding: 10px;
}

.app-screens-image {
    width: 200px;
    height: 400px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid rgb(35, 35, 35);
}

.app-screens-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-screens-label {
    margin-top: 15px;
}

.app-screens-label h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.app-screens-label p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

/* Pagination */
.app-screens-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    position: relative;
}

.app-screens-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    background: #ddd;
    border-radius: 2px;
    opacity: 1;
}

.app-screens-pagination .swiper-pagination-bullet-active {
    background: #fc6f06;
}

/* Navigation */
.app-screens-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.app-screens-button {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #666;
    pointer-events: all;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.app-screens-button:hover {
    background: #fc6f06;
    border-color: #fc6f06;
    color: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .app-screens-image {
        width: 180px;
        height: 360px;
    }
}

@media (max-width: 992px) {
    .app-screens-image {
        width: 150px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .app-screens {
        padding: 60px 0;
    }
    
    .app-screens-image {
        width: 120px;
        height: 240px;
    }
    
    .app-screens-label h4 {
        font-size: 0.9rem;
    }
    
    .app-screens-label p {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .app-screens-image {
        width: 100px;
        height: 200px;
    }
    
    .app-screens-button {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}




.bannerSwiper .swiper-pagination {
  bottom: 20px !important;
  text-align: center;
}

.bannerSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  width: 30px;
  height: 4px;
  opacity: 1;
  border-radius: 2px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.bannerSwiper .swiper-pagination-bullet-active {
  background: #ff9008;
  /* transform: scale(1.3); */
}



.footer-bottom-links a{
    color: var(--primary);
    text-decoration: none;
}
.footer-bottom-links a:hover{
    color: white !important;
    text-decoration: none;
}
















@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
















.inner-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #1a1818;
    margin-top: 80px;
  }
  .inner-banner .inner-title {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
  }
  .inner-banner .inner-title h3 {
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .inner-banner .inner-title ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .inner-banner .inner-title ul li {
    font-size: 18px;
    color: #1c1c25;
    display: inline-block;
    position: relative;
    margin-right: 0px;
    font-weight: 600;
  }
  .inner-banner .inner-title ul li i {
    font-size: 22px;
    top: 4px;
    position: relative;
    left: 10px;
  }
  .inner-banner .inner-title ul li:last-child {
    margin-right: 0;
  }
  .inner-banner .inner-title ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background-color: #98fbcc;
    display: none;
  }
  .inner-banner .inner-title ul li a {
    color: #1c1c25;
  }
  .inner-banner .inner-title ul li a:hover {
    color: #98fbcc;
  }
  .inner-banner .inner-line .line1 {
    position: absolute;
    left: 0;
    top: -70px;
    width: 35px;
    height: 170px;
    background-color: #98fbcc;
    border-radius: 50px;
    transform: rotate(-35deg);
  }
  .inner-banner .inner-line .line2 {
    position: absolute;
    right: 0;
    bottom: -70px;
    width: 35px;
    height: 170px;
    background-color: #aa6bd8;
    border-radius: 50px;
    transform: rotate(-35deg);
  }











       
.d-stone-header h1 {
  margin: 0;
}
.d-stone-container {
  max-width: 80%;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.d-stone-heading {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}
.d-stone-paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
}
.d-stone-list {
  margin: 15px 0;
  padding-left: 20px;
  list-style: none;
}
.d-stone-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px; 
}
.d-stone-list li::before {
  content: "â—‰"; 
  color:#1f2020; 
  position: absolute;
  left: 0;
  font-size: 1.2rem; 
  top: 0;
}
.d-stone-link {
  color:#1f2020;
  text-decoration: none;
}
.d-stone-link:hover {
  text-decoration: underline;
}



a{
    text-decoration: none;
}