/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Base Styles */
:root {
    --primary: #FFC400;
    --secondary: #010537 ;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #f1f3f5;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
}
.logo   {
    height: 40px;
}

/* Banner Bottom Tiles */
#banner-bottom.banner-tiles {
  margin-top: -20px;
}

.banner-tiles .tile {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.banner-tiles .tile-2 {
  background: var(--primary);
  color: #111;
}

.banner-tiles .tile-2 p {
  color: #222;
}

.banner-tiles .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
}

.banner-tiles .tile-2 .icon-circle {
  background: rgba(0, 0, 0, 0.08);
  color: #111;
}

.banner-tiles .tile-img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 14px;
}

.banner-tiles .tile-img-center {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.banner-tiles .tile-img-phones {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  #banner-bottom.banner-tiles { margin-top: 0; }
}

body {
     font-family: "Plus Jakarta Sans", sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
  background: #FFC400;
background: linear-gradient(162deg, rgba(255, 196, 0, 1) 0%, rgb(177, 141, 24) 100%);
    border-color: var(--primary) !important;
    /* padding: 0.5rem 1rem; */
    font-weight: 400;
    transition: all 0.3s ease;
    color: #000;
    font-size: 16px;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
      background: #171717;
    z-index: 1000;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: #171717;
}

.navbar.scrolled {
  
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight:4500;
    padding: 0.5rem 1.5rem !important;
    position: relative;
    color: #fff;
    font-size: 15px;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Hero Section */
.hero-section {
    padding: 7rem 0 5rem;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-section h1 {
    font-size: 60px;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -1px;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0.7;
}

/* Features Section */
.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(78, 84, 200, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.card-header {
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 10px 10px 0 0 !important;
}

/* How It Works */
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.step-number:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(78, 84, 200, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

/* Testimonials */
.testimonial-card {
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    position: relative;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:before {
    content: '"\201C"';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 15px;
    line-height: 1;
}

.testimonial-card .text-warning {
    color: #ffc107 !important;
}

/* Contact Form */
.form-control, .form-select {
    padding: 0.8rem 1rem;
    border: 1px solid #e1e5ee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(78, 84, 200, 0.25);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.343);
}

footer h5, footer h6 {
    color: white;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

footer a:hover {
    color: white;
    padding-left: 5px;
}

.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%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    padding-left: 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding: 6rem 0 4rem;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-number:after {
        width: 60px;
        height: 60px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Card Hover Effects */
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Badge Styles */
.badge {
    padding: 0.5em 0.8em;
    font-weight: 500;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Button Styles */
.btn {
    border-radius: 50px;
    font-weight: 500;
    padding: 0.6rem 1.8rem;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 0.8rem 2rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
  
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    padding: 0px;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}
img{
    max-width: 100%;
}

* Margin */
.m-0 { margin: 0; }
.m-5 { margin: 5px; }
.m-10 { margin: 10px; }
.m-15 { margin: 15px; }
.m-20 { margin: 20px; }
.m-25 { margin: 25px; }
.m-50 { margin: 50px; }
.m-75 { margin: 75px; }
.m-100 { margin: 100px; }

/* Padding */
.p-0 { padding: 0; }
.p-5 { padding: 5px; }
.p-10 { padding: 10px; }
.p-15 { padding: 15px; }
.p-20 { padding: 20px; }
.p-25 { padding: 25px; }
.p-50 { padding: 50px; }
.p-75 { padding: 75px; }
.p-100 { padding: 100px; }


.pt-50 { padding-top: 50px; }
.pt-60 { padding-top: 60px; }
.pt-75 { padding-top: 75px; }
.pt-100 { padding-top: 100px; }

.pb-50 { padding-bottom: 50px; }
.pb-60 { padding-bottom: 60px; }
.pb-75 { padding-bottom: 75px; }
.pb-100 { padding-bottom: 100px; }  

/* Directional Margin */
.mt-10 { margin-top: 10px; }
.mb-10 { margin-bottom: 10px; }
.ml-10 { margin-left: 10px; }
.mr-10 { margin-right: 10px; }

/* Directional Padding */
.pt-10 { padding-top: 10px; }
.pb-10 { padding-bottom: 10px; }
.pl-10 { padding-left: 10px; }
.pr-10 { padding-right: 10px; }


/* Border Radius */
.br-0 { border-radius: 0; }
.br-5 { border-radius: 5px; }
.br-10 { border-radius: 10px; }
.br-15 { border-radius: 15px; }
.br-20 { border-radius: 20px; }
.br-25 { border-radius: 25px; }
.br-50 { border-radius: 50px; }
.br-75 { border-radius: 75px; }
.br-100 { border-radius: 100px; }

/* Font Sizes */
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-md { font-size: 16px; }
.text-lg { font-size: 20px; }
.text-xl { font-size: 24px; }
.text-2xl { font-size: 28px; }
.text-3xl { font-size: 32px; }
.text-4xl { font-size: 36px; }
.text-5xl { font-size: 40px; }
.text-6xl { font-size: 44px; }
.text-7xl { font-size: 48px; }
.text-8xl { font-size: 52px; }
.text-9xl { font-size: 56px; }



/* Colors */

  .text-primary { color: var(--primary) !important; }
  .text-secondary { color: var(--secondary) !important; }
  .bg-primary { background-color: var(--primary) !important; }
  .bg-secondary { background-color: var(--secondary) !important; }

a{
    text-decoration: none;
}


.btn-main {
    /* Container styling for the overall shape and border */
    display: inline-flex;
    align-items: center;
    padding: 10px 10px 10px 25px; /* Adjust padding for the look. Left is wider for the text. */
   
    border-radius: 50px; /* Highly rounded corners */
    background-color: var(--primary);
    text-decoration: none; /* Remove underline from the link */
    color: #fff; /* Text color */
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s; /* Smooth transition on hover */
    /* Optional: Add a slight shadow to make it pop */
    
  }

  
  .btn-main .link-icon {
    /* Styling for the circular red icon area */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px; /* Width and height for a perfect circle */
    height: 35px;
    border-radius: 50%; /* Makes it a circle */
    background-color: #fff; /* Bright red color */
    color: var(--primary); /* White arrow color */
    font-size: 20px; /* Size of the arrow */
    line-height: 1; /* Ensures the arrow is perfectly centered vertically */
    font-weight: normal;
  }
  
.btn-white{
    display: inline-flex;
    align-items: center;
    padding: 10px 10px 10px 25px;
   
    border-radius: 50px; 
    background-color: #fff;
    text-decoration: none; 
    color: var(--primary); 
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s; 
}
    
.btn-white .link-icon {
    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px; 
    height: 35px;
    border-radius: 50%; 
    background-color: var(--primary); 
    color: #fff;
    font-size: 20px; 
    line-height: 1;
    font-weight: normal;
  }
.about-app{
    background: #fff;
    margin-top: -180px;
    z-index:10;
    min-height: 300px;
    border-radius:80px 80px 0 0;
    position: relative;
}
.address-list{
    border-bottom: 1px solid rgba(255, 255, 255, 0.343);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .about-app{
        margin-top: -100px;
        border-radius:40px 40px 0 0;
    }
}