/* 1. Basic Reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

/*===nav section ===*/
.fw-black {
  font-weight: 900;
}

#mainNav {
  background-color: #fff; 
  transition: 0.4s all ease-in-out;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


.logo-fin {
  color: #ffffff !important;
  font-weight: 900;
  transition: 0.3s;
}
.logo-tech {
  color: #000000 !important;
  font-weight: 900;
  transition: 0.3s;
}

.nav-link {
  color: #000000 !important; 
  font-weight: 700 !important;
  transition: 0.3s;
  text-decoration: none;
}

.nav-link:hover {
  color: #FF6600 !important; 
}

.btn-login-nav {
  background-color: #000000 !important;
  color: #ffffff !important;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
}

.nav-item .btn-login-nav :hover{
    background-color: #ff6600;
}

.nav-scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-scrolled .logo-fin {
  color: #000000 !important;
}
.nav-scrolled .logo-tech {
  color: #ff6600 !important;
}

.nav-scrolled .nav-link:hover {
  color: #ff6600 !important; 
}

.nav-scrolled .btn-login-nav {
  background-color: #ff6600 !important; 
  border-color: #ff6600 !important;
}


@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff !important; 
    padding: 25px;
    margin-top: 15px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }

  .nav-link {
    color: #000000 !important;
    border-bottom: 1px solid #eee;
    padding: 15px 0 !important;
    width: 100%;
    text-align: left;
  }

  .btn-login-nav {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    background-color: #ff6600 !important;
  }
}

.btn-custom-outline {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  transition: 0.3s;
}
.btn-custom-outline:hover {
  background: #ffffff;
  color: #000000 !important;
}

/* HERO SECTION */
#hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center; 
  padding-top: 100px; 
  padding-bottom: 80px; 
  background-color: #020617;
  z-index: 1;
}

.hero-contect a{
    color: #ffffff;
    text-decoration: none;
}


@media (max-width: 768px) {
    #hero-section {
        padding-top: 120px; 
        padding-bottom: 100px;
        height: auto; 
    }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, #000000, #111827, #0f172a);
  opacity: 0.9;
  z-index: -1;
}

.z-3 {
  z-index: 3;
}
.text-orange {
  color: #ff6600;
}
.hero-subtitle {
  color: #f97316;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.hero-text {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 500px;
}

.btn-orange-main {
  background-color: #ff6600;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 900;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(255, 102, 0, 0.3);
}
.btn-orange-main:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
}

.btn-custom-outline {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 900;
  transition: all 0.5s ease;
}
.btn-custom-outline:hover {
  background: #ffffff;
  color: #000000 !important;
}

.hero-img-wrapper {
  position: relative;
}

.hero-main-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 4 / 5; 
    object-fit: cover; 
    border-radius: 2.5rem;
    border: 8px solid rgba(255, 102, 0, 0.05); 
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transition: all 0.5s ease;
}


.hero-main-img:hover {
    transform: translateY(-10px) scale(1.05); 
    border-color: rgba(255, 102, 0, 0.4); 
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2); 
    cursor: pointer;
}

.hero-floating-card {
    position: absolute;
    bottom: -32px;
    left: 0;
    background: white;
    padding: 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid #f0f0f0;
    z-index: 10;
    min-width: 200px;
}

@media (min-width: 768px) {
    .hero-floating-card {
        left: -40px; 
    }
}

/* Mobile Fix */
@media (max-width: 576px) {
    .hero-main-img {
        max-width: 100%;
        aspect-ratio: 1/1; 
    }
    .hero-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}

.badge-icon-circle {
  background-color: #ff6600;
  padding: 0.75rem;
  border-radius: 9999px;
  color: white;
}

.badge-title {
  color: black;
  font-weight: 900;
  font-size: 1.5rem;
  margin: 0;
  line-height: 1;
}

.badge-subtitle {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
  font-weight: 700;
}

/*=== Services Section  ===*/
.services-section {
  padding: 100px 0;
  background: #ffffff;
  color: #000;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 900;
}

.section-title p {
  color: #555;
}

.services-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;   
  column-gap: 40px;
  margin-top: 50px;
}

.services-left {
  width: 50%;
  padding-right: 20px;
}

.service-scroll-container {
  max-height: 520px; 
  overflow-y: auto;
  padding-right: 15px;
  padding-left: 20px; 
  border-left: 2px solid #eeeeee; 
  scrollbar-width: thin;
  scrollbar-color: orange #f1f1f1;
}

/* Custom Scrollbar */
.service-scroll-container::-webkit-scrollbar {
  width: 6px;
}
.service-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.service-scroll-container::-webkit-scrollbar-thumb {
  background: orange; 
  border-radius: 10px;
}

.service-box {
  background: rgba(0,0,0,0.85);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: 0.3s;
  position: relative;
}


.service-box::before {
  content: "";
  position: absolute;
  left: -22px; 
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  transition: 0.3s;
}

.service-box h4 {
  color: orange;
  margin-bottom: 5px;
  font-weight: 700;
}

.service-box p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

.service-box:hover {
  transform: translateX(5px);
  background: rgba(0,0,0,0.75);
}

.service-box:hover::before {
  background: orange; 
  box-shadow: 0 0 10px orange;
}

.services-right {
  width: 50%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone {
  width: 370px;
  max-width: 100%;
  z-index: 1;
}

.icon {
  position: absolute;
  background:orange;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  width: 90px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
  cursor: pointer;
  z-index: 2;
}

.icon img {
  width: 40px;
  margin-bottom: 5px;
}

.icon p {
  margin-bottom: 0;
  font-size: 12px;
}

.icon:hover {
  background: orange;
  transform: translateY(-5px);
  color: #000;
}

.icon1 { top: 10%; right: 6%; }
.icon2 { top: 45%; left: 0; transform: translateY(-50%); }
.icon3 { bottom: 20%; right: 0; }
.icon4 { bottom: 5%; left: 10%; }

/* ================== RESPONSIVE ================== */
@media(max-width:768px){
  .services-row {
    flex-wrap: wrap; 
  }

  .services-left,
  .services-right {
    width: 100%;
  }

  .service-scroll-container {
    max-height: none; 
    overflow-y: visible;
    padding-right: 0;
    border-left: none; 
  }

  .icon {
    display: none; 
  }

  .phone {
    width: 260px;
    margin-top: 30px;
  }
}

/* --- ABOUT SECTION --- */
#about{
  margin-bottom: 100px;
}

.side-gradient-line {
    position: absolute;
    left: 12px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #FF6600 0%, #FF6600 50%, rgba(255, 102, 0, 0.05) 100%);
    border-radius: 10px;
    z-index: 1;
}

.about-box{
  padding-bottom: 40px;
}

.about-interactive-list {
    position: relative;
}

.about-topic-item {
    position: relative;
    cursor: pointer;
    padding-bottom: 15px;
    transition: all 0.4s ease;
}

.topic-num {
    font-weight: 800;
    font-size: 1rem;
    color: #ccc;
    transition: 0.3s;
}

.topic-title {
    font-weight: 800;
    font-size: 1.25rem;
    color: #888;
    transition: 0.3s;
}

.topic-desc {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 35px;
    opacity: 0;
}

.about-interactive-list {
    min-height: 550px; 
    display: flex;
    flex-direction: column;
}

.about-topic-item {
    flex-shrink: 0; 
}

.topic-desc p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #555;
}


.about-topic-item.active .topic-title,
.about-topic-item:hover .topic-title {
    color: #FF6600;
}

.about-topic-item.active .topic-num,
.about-topic-item:hover .topic-num {
    color: #000;
}

.about-topic-item.active .topic-desc {
    max-height: 250px;
    opacity: 1;
    margin-bottom: 20px;
}

.progress-line {
    position: absolute;
    bottom: 0;
    left: 35px;
    width: 0;
    height: 3px;
    background: #FF6600;
    transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-topic-item.active .progress-line {
    width: 50%;
}

.about-img-stack, .info-sidebar {
    position: relative;
    width: 100%;
}

.about-stack-img, .extra-info-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.about-stack-img.active, 
.extra-info-item.active {
  padding-left: 10px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    z-index: 99 !important;
}

.about-img-stack {
    position: relative;
    width: 100%;
    height: 400px; 
    margin: 0 auto;
}

.about-stack-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 1.5rem;
}


.info-sidebar p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    font-weight: 500;
}

/* Mobile responsive fix */
@media (max-width: 768px) {
    .about-img-stack { min-height: 300px; }
    .side-gradient-line { display: none; } 
}


/* --- WHY CHOOSE US SECTION --- */
.choose-us-section {
    background-color: #f0f7ff; 
    padding: 100px 0;
    margin-top: 50px;
    margin-bottom: 100px;
}

.choose-head{
  color: #ff6600;
}


.bg-bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.35;
    z-index: 1;
}
.bubble-1 { width: 350px; height: 350px; background: #c3b4ff; top: -100px; left: -150px; }
.bubble-2 { width: 300px; height: 300px; background: #94c7ff; top: 30%; right: -100px; }
.bubble-3 { width: 250px; height: 250px; background: #ffb4e1; bottom: -80px; left: 15%; }


.choose-card {
    background: #ffffff;
    border-radius: 3rem; 
    border: 2px solid transparent;
    padding: 3.5rem 2rem !important; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05); 
    position: relative;
    z-index: 5;
}

.choose-card:hover {
    transform: translateY(-8px);
    border-color: #FF6600; 
    box-shadow: 0 30px 60px rgba(255, 102, 0, 0.12);
}

.img-icon-style {
    width: 45px; 
    height: 45px;
    object-fit: contain;
    transition: transform 0.4s ease;
}


.choose-card:hover .img-icon-style {
    transform: scale(1.15);
}

.choose-icon-box {
    width: 85px;
    height: 85px;
    background: #fdfdfd;
    border-radius: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.choose-card:hover .choose-icon-box {
    background: #fff8f4; 
}

.img-icon-style {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: invert(48%) sepia(87%) saturate(2250%) hue-rotate(3deg) brightness(101%) contrast(105%);
}

.choose-card:hover .img-icon-style {
    transform: scale(1.1);
    filter: invert(48%) sepia(87%) saturate(3000%) hue-rotate(3deg) brightness(110%) contrast(110%);
}

.text-orange { color: #FF6600; }

/* Responsive tweaks */
@media (max-width: 991px) {
    .choose-card { padding: 2.5rem 1.5rem !important; }
}

@media (max-width: 768px) {
    .choose-us-section { padding: 60px 0; margin-top: 30px; }
    .bg-bubble { display: none; } 
    .choose-card { border-radius: 2rem; }
}


/* --- HOW IT WORKS Section --- */
.how-it-works {
    background: #f8faff;
    padding: 100px 0;
}

.glass-bg-circle {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 1;
}
.circle-1 { width: 400px; height: 400px; background: rgba(255, 102, 0, 0.15); top: -100px; right: -50px; }
.circle-2 { width: 350px; height: 350px; background: rgba(0, 123, 255, 0.1); bottom: -100px; left: -50px; }

.glass-card {
    background: rgba(255, 255, 255, 0.4); 
    -webkit-backdrop-filter: blur(15px); 
    backdrop-filter: blur(15px); 
    @supports not (backdrop-filter: blur(15px)) {
        background: rgba(255, 255, 255, 0.9); 
    }
    border: 1px solid rgba(255, 255, 255, 0.7); 
    border-radius: 40px; 
    transition: all 0.5s ease;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.glass-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.7);
    border-color: #FF6600;
    box-shadow: 0 25px 50px rgba(255, 102, 0, 0.1);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03); 
    transition: 0.3s;
}

.glass-card:hover .step-number {
    color: rgba(255, 102, 0, 0.1);
}

.glass-icon-box {
    width: 100px;
    height: 100px;
    background: #000;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.work-head{
  color: #ff6600;
}

.glass-img {
    width: 80px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.glass-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-card { margin-bottom: 20px; }
    .how-it-works { padding: 60px 0; }
}

/*=== expansion-section  === */
.expansion-section {
    background: #ffffff;
    padding: 120px 0;
    display: flex;
    align-items: center; 
}

.expansion-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.glow-bg-circle {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255,102,0,0.15) 0%, rgba(255,255,255,0) 70%);
    filter: blur(60px);
    z-index: 1;
}

.floating-phone {
    width: 750px; 
    max-width: 100%;
    height: auto;
    object-fit: contain;

    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.1));
    animation: floatingEffect 5s ease-in-out infinite;
}


.expansion-section .row {
    align-items: center;
    min-height: 500px;
}


.expansion-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 45px;
    padding: 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.expansion-item:hover {
    background: #fff9f5; 
    transform: translateX(10px);
}

.exp-icon-box {
    min-width: 75px;
    height: 75px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #f1f1f1;
}

.exp-icon-box img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.exp-info h4 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.exp-info p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.coming-soon-badge {
    position: absolute;
    top: 50px;
    right: 30px;
    background: #FF6600;
    color: white;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
    z-index: 10;
}

.pulse-dot {
    height: 10px;
    width: 10px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulseOrange 2s infinite;
}

@keyframes pulseOrange {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Responsive FIX */
@media (max-width: 991px) {
    .expansion-section { padding: 80px 0; }

    .floating-phone {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .expansion-item:hover {
        transform: none;
    }
}

/*== Trust-map-section ==*/
.trust-map-section {
    background: #fbfcfe;
    padding: 100px 0;
}

.map-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #FF6600;
    border-radius: 50%;
}

.map-dot span {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #FF6600;
    border-radius: 50%;
    animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(4); opacity: 0; }
}

.dot-jaipur { top: 40%; left: 35%; }
.dot-delhi { top: 32%; left: 42%; }
.dot-patna { top: 45%; left: 65%; }
.dot-mumbai { top: 65%; left: 30%; }
.bg-orange { background-color: #FF6600; }

/* ---  BENTO BRAND SECTION --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-auto-rows: 140px;
    gap: 20px;
    max-width: 800px; 
    margin: 0 auto;
}

.bento-item {
    background: #fcfcfc;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    grid-column: span 1 !important;
    grid-row: span 1 !important;
}

.bento-item img {
    max-width: 150px; 
    width: 100%;
    filter: grayscale(1);
    opacity: 0.7;
    transition: 0.3s;
}

.bento-item:hover {
    background: #ffffff;
    border-color: #FF6600;
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.08);
    transform: scale(1.05);
}

.bento-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.bento-item .badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #FF6600;
    color: white;
    font-size: 10px;
    padding: 5px 12px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}


/* --- CTA SECTION --- */
.bg-orange {
    background: linear-gradient(135deg, #FF6600 0%, #ff8c3a 100%);
}

.cta-box {
    box-shadow: 0 25px 50px rgba(255, 102, 0, 0.2);
    border: 5px solid rgba(255,255,255,0.1);
}

.btn-light {
    color: #FF6600;
}

.btn-light:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.fw-black { font-weight: 900; }



.footer-section {
  background: #0b1c3d;
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
}

.b2b-logo {
  width: 200px;
}

.company-name {
    color: rgb(204, 204, 204);
  font-size: 16px;
  font-weight: 400;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-right: 8px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff7a00;
  transform: translateY(-5px);
}


.footer-title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}


.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-menu a:hover {
  color: #ff7a00;
  padding-left: 6px;
}

.footer-text {
  font-size: 14px;
  color: #ccc;
}

.footer-email {
  color: #ff7a00;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

#scrollTopBtn {
  position: absolute;
  right: 25px;
  bottom: 25px;
  background: #ff7a00;
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

#scrollTopBtn:hover {
  background: #fff;
  color: #ff7a00;
  transform: translateY(-5px);
}


html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}



