:root {
    --primary-blue: #00AFF5;
    --dark-text: #054752;
    --gray-light: #708C91;
    --border-color: #EDEDED;
}
    @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600&display=swap');
body {
 
    font-family: 'Inter', sans-serif; /* Use a clean sans-serif */
    color: var(--dark-text);
}
*{
  
    box-sizing: border-box;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 40px;

}

.nav-links{
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-icon{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #000;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

body{
    padding-top: 90px;
}

/* Navbar */
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 40px;
    
}

.navbar.scrolled{
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid gray;
}

/* optional */
body{
    margin: 0;
    padding-top: 90px; /* navbar height space */
    background-color: #fff;
}
.navlogo img {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 800;
    height: 80px;
    width: 80px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.outline-btn {
    border: 2px solid #0071eb;
    background: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    color:#0066d4;
}
.hero p{
    color:white !important;
}

/* Hero Section */
.hero {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 100px; /* Extra bottom padding for floating bar */
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color:#001536;
   
}
.hero-content p{
  color:#001536;
}

.hero-image img {
   width: 612px;
  height: 420px;
    border-radius: 24px;
    object-fit: cover;
}

/* Search Bar */
.search-container {
    max-width: 1160px;
    margin: -60px auto 0; /* Pulls the bar up over the hero */
    padding: 0 20px;
}

.search-bar {
    background: white;
    display: flex;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px;
    border-right: 1px solid var(--border-color);
    gap: 12px;
}

.input-group input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
}

.dot {
    width: 10px;
    height: 10px;
    border: 2px solid var(--gray-light);
    border-radius: 50%;
}
.search-icon i{
  color:#0066d4;

}
.icon-btn{
  background: none;
  border: none;
}
/* .profile-icon{
  color:#0071eb;
} */
.profile-icon{
    width:45px;
    height:45px;
    background:#e9f2ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.profile-icon i{
    font-size:25px;
    color:#1976d2;
}
.search-btn {
    background: #0066d4;
    color: white;
    border: none;
    padding: 0 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #0096d1;
}

.checkbox-area {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}



/* Mobile View Media Query (Screen size up to 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    /* Hide hero image on mobile to match your screenshot */
    .hero-image {
        display: none;
    }

    .hero {
        padding: 20px 20px 40px;
        text-align: left;
        margin-top:60px;
    }

    .hero-content h1 {
        font-size: 32px; /* Smaller heading for mobile */
        margin-bottom: 20px;
    }

    /* Stack Search Bar Vertically */
    .search-container {
        margin-top: 0; /* Reset negative margin */
    }

    .search-bar {
        flex-direction: column; /* Stacks the input groups */
        border-radius: 16px;
        border: 2px solid #00AFF5; /* Blue border as seen in mobile view */
    }

    .input-group {
        width: 100%;
        border-right: none; /* Remove horizontal dividers */
        border-bottom: 1px solid #EDEDED; /* Add vertical dividers */
        padding: 18px 20px;
    }

    /* Layout for Date/Return (Two columns in the middle) */
    .input-group:nth-child(3), 
    .input-group:nth-child(4) {
        display: inline-flex;
        width: 100% !important;
        float: left;
        border-right: 1px solid #EDEDED;
    }

    .input-group:nth-child(4) {
        border-right: none;
    }

    /* Reset float clearing for the next element */
    .input-group:nth-child(5) {
        clear: both;
        border-bottom: none;
    }

    .search-btn {
        width: 100%;
        padding: 20px;
        border-radius: 0 0 14px 14px; /* Round only the bottom corners */
    }
    
    .checkbox-area {
        padding: 10px 0;
    }
}

/* Container holds the items in a row */
.features-container {
  display: flex;
  justify-content: space-between; /* Spreads items evenly */
  gap: 40px;                     /* Space between columns */
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;                /* Centers the section on page */
  font-family: sans-serif;
  margin-top:20px;
}

.feature-item {
  flex: 1;                       /* Ensures all columns take equal width */
}

/* Icon circular background */
.icon-wrapper {
  background-color: #f0f5f9;     /* Light blue/grey tint */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-wrapper img {
  width: 24px;
  height: 24px;
}

/* Typography */
/* h3 {
  font-size: 20px;
  color: #054752;                
  margin-bottom: 12px;
  font-weight: 700;
} */

p {
  font-size: 16px;
  color: #708c91;                /* Muted grey-blue text */
  line-height: 1.5;
}

/* Responsive: Stack columns on mobile */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
  }
}


:root {
  --primary-color: #1a202c;
  --accent-color: #e69b67;
  --text-gray: #4a5568;
}

.mission-section {
  padding: 40px 5%;
  font-family: 'Inter', sans-serif;
}

.mission-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text Content Styling */
.mission-section .content-side {
  flex: 1;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #fbd38d;
  border-radius: 20px;
  color: #c05621;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.mission-section h1 {
  font-size: 48px;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 30px;
}

.highlight {
  color: var(--accent-color);
}

.mission-section p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 18px;
  margin-bottom: 20px;
}

/* Image Layout Styling */
.image-side {
  flex: 1;
  display: flex;
  align-items: flex-end; /* Aligns them at the bottom */
  position: relative;
}

.mission-section .card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mission-section .card img {
  width: 100%;
  display: block;
}

.card-1 {
  width: 320px;
  z-index: 2;
}

.card-2 {
  width: 300px;
  margin-left: 6px; /* Creates the overlap */
  margin-bottom: 40px; /* Lifts the second image higher */
  z-index: 1;
}



@media (max-width: 900px) {
  .mission-section .container {
    flex-direction: column;
    text-align: center;
  }

  .image-side {
    justify-content: center;
  }
}

@media (max-width: 600px) {

  .mission-section {
    padding: 50px 15px;
  }

  .content-side h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .content-side p {
    font-size: 14px;
  }

  .image-side {
    flex-direction: column;
    gap: 15px;
  }

  .card {
    width: 100%;
  }
}


:root {
  --bg-dark: #0f172a;
  --card-bg: #1e293b;
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --accent-color: #f59e0b; /* The orange/gold color */
}


.features-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
}

.section-header .mcd {
  color: var(--accent-color);
}

.features-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap; /* Makes it responsive on mobile */
}

.feature-card {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 24px;
  flex: 1;
  min-width: 300px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  background: rgba(255, 255, 255, 0.03);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon {
  font-size: 1.5rem;
  /* If using SVGs, color them with var(--accent-color) */
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 600;
  color:white;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 2.2rem;
  }
}

.badge1{
    display: inline-block;
  padding: 6px 16px;
  border: 1px solid #fbd38d;
  border-radius: 20px;
  color: #c05621;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 24px;
}


:root {
  --text-dark: #1e293b;
  --text-light: #64748b;
  --accent-gold: #d97706; /* The brownish-gold color in the text */
  --badge-bg: #fff7ed;
  --badge-text: #f59e0b;
}

.gallery-section {
  background-color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

/* Header & Badge */
.badge {
  display: inline-block;
  background-color: var(--badge-bg);
  color: var(--badge-text);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid #ffedd5;
}

.section-header h1 {
  font-size: 3.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.section-header h1 span {
  color: var(--accent-gold);
}

.section-header p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius:20px; /* Very soft rounded corners */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid gray;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill the space without stretching */
  transition: transform 0.4s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section-header h1 {
    font-size: 2.5rem;
  }
}


/* Responsive for Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .quote-box {
    border-radius: 15px;
    border-left: none;
    border-top: 4px solid var(--primary-gold);
  }
}
:root {
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --accent-gold: #d97706;
  --badge-bg: #fff7ed;
  --badge-text: #f59e0b;
}

.leadership-section {
  background-color: #ffffff;
  /*padding: 80px 20px;*/
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Badge Styling */
.badge {
  display: inline-block;
  background-color: var(--badge-bg);
  color: var(--badge-text);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  border: 1px solid #ffedd5;
  text-transform: uppercase;
}

/* Header Styling */
.section-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive font sizing */
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-header h1 span {
  color: var(--accent-gold);
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Featured Image Styling */
.leadership-content {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.feature-image {
  width: 100%;
  max-width: 1000px;
  border-radius: 40px; /* Large rounded corners as seen in the image */
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   MOBILE RESPONSIVE CSS
========================= */

@media (max-width: 992px) {

  .features-grid {
    gap: 20px;
  }

  .feature-card {
    padding: 30px;
    min-width: 260px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h1 {
    font-size: 2.5rem;
  }
}


@media (max-width: 768px) {

  .features-section .container {
    padding: 0 15px;
  }

  .features-grid {
    flex-direction: column;
    gap: 20px;
  }

  .feature-card {
    width: 100%;
    min-width: 100%;
    padding: 25px;
    border-radius: 18px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .icon-box {
    width: 45px;
    height: 45px;
    margin-bottom: 18px;
  }

  .icon {
    font-size: 1.3rem;
  }
}


@media (max-width: 480px) {

  .features-section .container {
    padding: 0 12px;
  }

  .section-header h1 {
    font-size: 1.7rem;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .icon {
    font-size: 1.2rem;
  }
}
  .feature-image {
    border-radius: 24px;
  }
  
  

  

body {
    margin: 0;
    overflow-x: hidden; /* ✅ prevents unwanted scroll */
}
    :root {
  --primary-gold: #e6b47b; /* The light gold/tan color in the image */
  --text-dark: #1a1a1a;
  --text-gray: #555;
  --bg-light: #fdfdfd;
}


.profile-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
}

/* Image Styles */
.profile-image-wrapper {
  position: relative;
  flex: 1;
}

.main-img {
  width: 100%;
  border-radius: 40px; /* Highly rounded corners */
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: block;
}

.badges {
  position: absolute;
  top: 23px;
  left: 20px;
  background: white;
  padding: 5px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Content Styles */
.profile-content {
  flex: 1.5;
}

.quote-icon {
  font-size: 80px;
  color: #fff5eb; /* Very pale orange/tan */
  line-height: 1;
  margin-bottom: -20px;
  font-family: serif;
}

.name {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin: 0;
}

.designation {
  color: var(--primary-gold);
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 0.9rem;
  margin: 10px 0 30px 0;
}

.quote-box {
  border-left: 4px solid var(--primary-gold);
  background: #f9f9f9;
  padding: 20px 30px;
  border-radius: 0 15px 15px 0;
  margin-bottom: 30px;
}

.quote-box p {
  font-style: italic;
  font-size: 1.2rem;
  margin: 0;
  color: #333;
}

.description {
  line-height: 1.8;
  color: var(--text-gray);
  font-size: 16px;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .quote-box {
    border-radius: 15px;
    border-left: none;
    border-top: 4px solid var(--primary-gold);
  }
}

.founder-section{
    max-width:1400px;
    margin:auto;
    position:relative;
}

.quote-icon{
    position:absolute;
    top:-40px;
    left:50%;
    transform:translateX(-50%);
    font-size:120px;
    color:#ece5df;
    font-weight:700;
    line-height:1;
}

.founder-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:60px;
    align-items:center;
}

.founder-content h1{
    font-size: 2.5rem;
    font-weight:800;
    color:#081633;
    text-align:center;
    line-height:1.1;
}

.designation{
    text-align:center;
    color:#d48a45;
    font-size:28px;
    letter-spacing:4px;
    font-weight:700;
    margin-top:10px;
    margin-bottom:50px;
}

.quote-box{
    background:#fff;
    border-radius:22px;
    padding:40px;
    position:relative;
    margin-bottom:40px;
    box-shadow:0 2px 8px rgba(0,0,0,0.06);
}

.quote-box::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:6px;
    height:100%;
    background:#d48a45;
    border-radius:0 22px 22px 0;
}

.quote-box p{
    font-size:26px;
    color:#18335f;
    text-align:center;
    font-style:italic;
    font-weight:400;
}

.description{
    font-size:16px;
    line-height:1.9;
    color:#344767;
    text-align:center;
    padding:0 10px;
}

.founder-image{
    position:relative;
}

.founder-image img{
    width:100%;
    border-radius:40px;
    display:block;
    object-fit:cover;
    border:4px solid #fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.badged{
    position:absolute;
    top:20px;
    right:20px;
    background:#fff;
    padding:5px 15px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    font-weight:600;
    color:#111827;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.badge span{
    color:#d48a45;
    font-size:20px;
}

@media(max-width:992px){

    .founder-grid{
        grid-template-columns:1fr;
    }

    .founder-content h1{
        font-size:42px;
    }

    .quote-box p{
        font-size:20px;
    }

    .description{
        font-size:16px;
    }

    .designation{
        font-size:22px;
    }
}

@media(max-width:576px){

    body{
        padding:40px 15px;
    }

    .founder-content h1{
        font-size:34px;
    }

    .quote-box{
        padding:25px;
    }

    .quote-box p{
        font-size:18px;
    }

    .description{
        font-size:16px;
        line-height:1.8;
    }

    .badge{
        padding:10px 18px;
        font-size:15px;
    }
}

/* SECTION */
.story-section {
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

/* HEADING */
.story-section h1 {
    font-size: 36px;
    margin-bottom: 40px;
}

.story-section h1 span {
    color: #2b6ef3;
}

/* CONTAINER */
.story-section .container {
    max-width: 1200px;
    margin: auto;
}

/* IMAGE GRID */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 images per row */
    gap: 15px;
}

/* IMAGE STYLE */
.image-grid img {
    width: 100%;
    height: auto;
    /*object-fit: cover;*/
    border-radius: 15px;
    transition: 0.3s;
}

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

/* RESPONSIVE */
@media(max-width: 900px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
    }
}

@media(max-width: 500px) {
    .image-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 per row */
    }

    .story-section h1 {
        font-size: 26px;
    }
}
/* ✅ 1. Smart Section ला पूर्ण रुंदी द्या */
.smartsection {
    background-color: #0b0e14;
    width: 100vw;          /* full screen width */
    margin-left: calc(-50vw + 50%); /* remove side gap */
    padding: 40px 0;
}

/* ✅ 2. Smart Choice Container ला मध्यभागी ठेवा */
.smartchoice {
    width: 100%;
    max-width: none;   /* ❌ remove 1100px */
    padding: 0 30px;   /* optional spacing */
}
/* ✅ 3. Cascade Wrapper ला व्यवस्थित जागा द्या */

        .smartchoice h1 {
            font-size: 2.2rem;
            margin-bottom: 60px;
            font-weight: 700;
            text-align: center;
            color: var(--accent-gold);
        }

        /* Labels Section */
        .header-labels {
            display: flex;
            justify-content: space-around;
            width: 80%;
            margin: 0 auto 40px auto;
        }

        .label {
            padding: 8px 24px;
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .label.traditional { background: #25282c; color: #a0a0a0; }
        .label.premium { background: #e68a49; color: #000; }

        /* Timeline Main Wrapper */
        .cascade-wrapper {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Center Vertical Line */
        .cascade-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, #2d3139, #e68a49, #2d3139);
            left: 50%;
            transform: translateX(-50%);
        }

        .smartchoice .row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-bottom: 30px;
            position: relative;
        }

        /* Left and Right Side Content */
        .smartchoice .side {
            width: 50%;
            display: flex;
            align-items: center;
            font-size: 1.05rem;
            opacity: 0.8;
        }

        .smartchoice .left-side { justify-content: flex-end; text-align: right; color: #cbd5e1; }
        .smartchoice .right-side { justify-content: flex-start; text-align: left; color: #ffffff; font-weight: 600; }

        /* Center Hexagon Point */
        .node {
            width: 24px;
            height: 24px;
            background: #e68a49;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            z-index: 2;
            box-shadow: 0 0 15px rgba(230, 138, 73, 0.6);
            transition: transform 0.3s ease;
        }

        /* Circle Icons */
        .icon-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px dashed rgba(255, 255, 255, 0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 10px;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.05);
        }

        .premium-icon {
            background: linear-gradient(135deg, #e68a49 0%, #8c522a 100%);
            border: none;
            box-shadow: 0 0 20px rgba(230, 138, 73, 0.3);
        }

        /* Specific styles for the Image Layout */
        .dotted-line {
            width: 40px;
            height: 1px;
            border-bottom: 2px dotted yellow;
            margin: 0 10px;
        }

        /* Simple Animation */
        .smartchoice .row:hover .node {
            transform: scale(1.3);
            filter: brightness(1.2);
        }

        .smartchoice .row:hover .right-side {
            color: #ff9d5c;
        }
    
    

.footer-top-wrap {
    /*background-color: #f4f5f8;*/
    overflow: hidden
}

.not-found-404 .footer-top-wrap {
    background-color: #222
}

.footer-top .footer-call {
    display: flex;
    align-items: center;
    gap: 20px
}

.footer-top .brand {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    grid-gap: 20px;
    position: relative;
    padding: 30px 70px 30px 0;
    z-index: 2
}

.footer-top .brand p {
    position: relative;
    padding-left: 20px
}

.footer-top .brand p:before {
    background-color: #444;
    width: 2px;
    height: 100%;
    content: '';
    position: absolute;
    left: -10px;
    top: 0
}

.footer-top .brand:before,
.footer-top .brand:after {
    background-color: #222;
    background-image: url(../images/img-texture.png);
    background-repeat: repeat;
    background-size: cover;
    content: "";
    width: 150%;
    height: 100%;
    position: absolute;
    right: 150px;
    bottom: -1px;
    z-index: -1
}

.footer-top .brand:before {
    width: 200px;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
    right: 0
}

.footer-top .footer-call {
    padding: 32px 0;
    position: relative;
    z-index: 1
}

.footer-top .footer-call:before {
    background-color: #f90;
    background-image: repeating-linear-gradient(45deg, #f7a20f 0, #f7a20f 2px, transparent 0, transparent 50%);
    background-size: 10px 10px;
    content: '';
    width: 5000px;
    height: 100%;
    position: absolute;
    left: -85px;
    bottom: 0;
    z-index: -1
}

.footer-call i {
    font-size: 45px;
    color: #fff
}

.footer-call p span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #fafafa;
    margin-bottom: 5px
}

.footer-call p a {
    color: #222;
    font-size: 32px;
    font-weight: 700;
    line-height: 1
}

.footer-top .brand p,
.footer-top .footer-call p {
    color: #ccc;
    margin: 0
}

.footer-mid-wrap {
    background-color: #222;
    background-image: url(images/img-texture.png);
    background-repeat: repeat;
    background-size: cover;
    padding: 80px 0 140px;
    position: relative;
    z-index: 1
}

.footer-mid-wrap:before {
    background-image: url(images/img-city-skiline.png);
    /* background-image: url(../images2/pune-city.png); */
    background-size: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    /* background-repeat: repeat; */
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden
}

.running-taxi {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    bottom: 0;
    z-index: 2
}

.running-taxi .taxi {
    background-image: url(images/img-truck-1.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    height: 40px;
    right: 0;
    bottom: 0;
    animation: running-anim 20s linear infinite
}

.running-taxi .taxi-2 {
    background-image: url(images/img-truck-2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    height: 40px;
    right: 30%;
    bottom: 0;
    animation: running-anim 30s linear infinite
}

.running-taxi .taxi-3 {
    background-image: url(images/img-truck-3.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 100px;
    height: 100px;
    right: 70%;
    bottom: 0;
    animation: running-anim-left 35s linear infinite
}

.running-taxi .car-with-driver {
    background-image: url(images/img-car-with-driver.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    /*height: 40px;*/
    right: 0;
    bottom: 0;
    animation: running-anim 20s linear infinite
}

.running-taxi .bike-moving {
    background-image: url(images/img-car-with-driver.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 110px;
    height: 40px;
    right: 30%;
    bottom: 0;
    animation: running-anim 30s linear infinite
}

.running-taxi .auto-rickshaw {
    background-image: url(images/img-taxi.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 60px;
    height: 60px;
    right: 70%;
    bottom: 0;
    animation: running-anim-left 35s linear infinite
}

.footer-item .widget-title h3 {
    color: #fff
}

.footer-links li:not(:last-of-type) {
    margin-bottom: 10px
}

.footer-contact li:not(:last-of-type) {
    margin-bottom: 15px
}

.footer-links li a,
.footer-contact li {
    color: #ccc
}

.footer-contact li span {
    display: block;
    color: #f90;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase
}

.footer-links li a:hover {
    color: #f90
}

@media(min-width:992px) {
    .footer-list {
        margin-left: 15px
    }
}

.subscribe-form .form-control {
    background-color: #fff;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    border-radius: 0;
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    box-shadow: none
}

.subscribe-form .submit {
    background-color: #f90;
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0 100%);
    padding: 0 35px 0 30px;
    height: 45px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.2px;
    color: #222;
    line-height: 45px;
    text-align: center
}

.subscribe-form .submit:hover {
    background-color: #ffab2e
}

#subscribe-result {
    display: none
}

#subscribe-result.subs-result {
    display: block;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #ccc;
    padding: 10px;
    margin-top: 15px
}

.subscription-error {
    color: red
}

@-moz-keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@-webkit-keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@keyframes running-anim {
    0% {
        right: -30%
    }

    100% {
        right: 100%
    }
}

@-moz-keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

@-webkit-keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

@keyframes running-anim-left {
    0% {
        left: -30%
    }

    100% {
        left: 100%
    }
}

.copyright-wrap {
    background-color: #222;
    background-image: url(images/img-texture.png);
    background-repeat: repeat;
    background-size: cover;
    border-top: 1px solid #333;
    padding: 20px 0;
    /*text-align: center;*/
    position: relative;
    z-index: 1
}

.copyright-wrap p {
    color: #ccc;
    margin: 0
}

@media(max-width:992px) {
    .footer-top .footer-call:before {
        left: -200px
    }
}



.cta-section {
    padding: 40px 10px;
    width: 100%;
    margin-top:1px;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-card {
    /* Gradient Background: उजव्या बाजूला गडद छटा */
    background: linear-gradient(135deg, #e6a873 0%, #c8834a 100%);
    border-radius: 40px; /* गोलाकार कोपरे */
    padding:10px;
    text-align: center;
    color: white;
}

.cta-card h1 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* मोबाईलसाठी उपयुक्त */
}

.btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-white {
    background-color: white;
    color: #0b0e14;
}

.btn-dark {
    background-color: #0b0e14;
    color: white;
}

/* मोबाईल व्ह्यूसाठी ॲडजस्टमेंट */
@media (max-width: 768px) {
    .cta-card h1 {
        font-size: 28px;
    }
    .cta-card {
        padding: 40px 20px;
        border-radius: 25px;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}