:root {
    --primary: #f97316;
    --dark: #0f172a;
    --text: #475569;
    --bg: #f8fafc;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Inter, sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
}
html.menu-open,
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
}


.container {
    width: min(1200px, 92%);
    margin: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.header .container {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-toggle{

display:none;

position: relative;

z-index: 1100;

width:46px;

height:46px;

padding:0;

background:none;

border:none;

cursor:pointer;

}

.menu-toggle span{

display:block;

height:2px;

background:#0f172a;

margin:7px 0;

transition:.3s;

}

.menu-toggle.active span:nth-child(1){
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity: 0;
}

.menu-toggle.active span:nth-child(3){
    transform: translateY(-9px) rotate(-45deg);
}

.logo {
    font-size: 30px;
    font-weight: 900;
    text-decoration: none;
    color: var(--dark);
}

.logo span {
    color: var(--primary);
}

.site-nav {
    display: flex;
    gap: 35px;
    width: auto;
    max-width: 100%;
}

.site-nav .nav-list {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
}
section{

position:relative;

}

section::after{

content:"";

position:absolute;

left:50%;

bottom:0;

width:120px;

height:1px;

background:#ececec;

transform:translateX(-50%);

}

@media (max-width: 768px) {
    section::after {
        display: none;
    }
}

.header-buttons {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
	position: relative;
	overflow: hidden;
}


.btn::before {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.btn:hover::before {
  left: 120%;
}


.btn:hover {
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 2px solid var(--dark);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: var(--dark);
}

/* Hero Section */
.hero {
    padding: 170px 0 120px;
    background: white;
}

/* Hero background effect */
.hero::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.15),
    transparent 70%
  );
  top: -250px;
  right: -250px;
  filter: blur(50px);
  pointer-events: none;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 3.75rem);
    line-height: 1.05;
    margin-bottom: 25px;
    max-width: 12ch;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    background: #fff3e8;
    border-radius: 30px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
}

.hero p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image img {
    width: 100%;
}

/* Tracking Section */
.tracking {
    margin-top: -40px;
}

.tracking-box {
    background: var(--dark);
    padding: 35px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.tracking-box > div {
    flex: 0 0 auto;
    max-width: 360px;
    min-width: 0;
}

.tracking-box form {
    flex: 1 1 420px;
    min-width: 0;
    width: auto;
}

.tracking h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.tracking p {
    opacity: .8;
}

.tracking form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: auto;
}

.tracking-box form {
    flex: 1 1 420px;
    min-width: 0;
    width: auto;
}

.tracking input {
    flex: 1 1 220px;
    min-width: 0;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
}

.tracking button {
    flex: 0 0 auto;
    padding: 16px 35px;
    border: none;
    background: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
}

/* Trust Section */
.trust {
    padding: 90px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.trust-grid div {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.trust h2 {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 10px;
}

.trust span {
    color: var(--text);
    font-weight: 600;
}
/*====================================================
  SERVICES
=====================================================*/

.services {
    padding: 120px 0;
    background: #ffffff;
}

/* Decorative background for services section */
.services::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(15, 23, 42, 0.05),
    transparent
  );
  left: -250px;
  bottom: -200px;
}


.section-header {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #fff3e8;
    color: var(--primary);
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.section-header p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #e5e7eb;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: .35s;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, .10);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
}

.service-card a {
    text-decoration: none;
    font-weight: 700;
    color: var(--primary);
}

/* Featured Card */
.featured {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.featured p {
    color: rgba(255, 255, 255, .85);
}

.featured .service-icon {
    background: rgba(255, 255, 255, .15);
}

.featured a {
    color: white;
}
/*====================================================

WHY US

====================================================*/

.why-us{

padding:120px 0;

background:#f8fafc;

}

.why-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:stretch;

}

.why-left h2{

font-size:52px;

line-height:1.1;

margin:20px 0;

}

.why-left>p{

font-size:18px;

color:var(--text);

line-height:1.9;

margin-bottom:50px;

}

.why-stats{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.why-stats div{

background:white;

padding:30px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.why-stats h3{

font-size:48px;

color:var(--primary);

margin-bottom:10px;

font-weight:800;

}

.why-stats span{

font-weight:600;

color:var(--text);

}

.features-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.feature-card{

background:white;

padding:35px;

border-radius:20px;

transition:.3s;

border:1px solid #ececec;

}

.feature-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.feature-icon{

width:60px;

height:60px;

display:flex;

justify-content:center;

align-items:center;

background:#fff4ea;

border-radius:16px;

font-size:28px;

margin-bottom:20px;

}

.feature-card h4{

font-size:22px;

margin-bottom:15px;

}

.feature-card p{

color:var(--text);

line-height:1.7;

}
/*====================================================
  PROCESS
=====================================================*/

.process {
    padding: 120px 0;
    background: #ffffff;
}

.process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 70px;
}

.process-line {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 70px;
    height: 3px;
    background: #e5e7eb;
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    border: 1px solid #ececec;
    transition: .35s;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 25px;
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #fff4ea;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    margin-bottom: 25px;
    transition: .35s;
}

.process-card:hover .step-icon {
    transform: rotate(8deg) scale(1.08);
    background: var(--primary);
    color: white;
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

/*====================================================
  PROCESS - ANIMATION
=====================================================*/

.process-card {
    opacity: 0;
    transform: translateY(40px);
    transition: .7s ease;
}

.process-card.show {
    opacity: 1;
    transform: translateY(0);
}

/*====================================================
  COVERAGE
=====================================================*/

.coverage {
    padding: 120px 0;
    background: #f8fafc;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.coverage-content h2 {
    font-size: 52px;
    line-height: 1.1;
    margin: 20px 0;
}

.coverage-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 40px;
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.coverage-list div {
    background: white;
    padding: 18px 20px;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
}

.coverage-list div:hover {
    transform: translateX(8px);
}

.map-card {
    position: relative;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.map-card img {
    width: 100%;
    display: block;
}

.city {
    position: absolute;
    padding: 8px 14px;
    background: var(--primary);
    color: white;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

/* City Positions */
.city-delhi {
    top: 23%;
    left: 35%;
}

.city-mumbai {
    top: 40%;
    left: 20%;
}

.city-bangalore {
    top: 62%;
    left: 30%;
}

.city-chennai {
    top: 67%;
    left: 55%;
}

.city-kolkata {
    top: 38%;
    left: 65%;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(249, 115, 22, .5);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 25px rgba(249, 115, 22, .45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(249, 115, 22, .5);
    }
}

/*====================================================
  TESTIMONIALS
=====================================================*/

.testimonials {
    padding: 120px 0;
    background: white;
    overflow: hidden;
}

/* Company Logos */
.company-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin: 60px 0 80px;
    opacity: .65;
}

.company-strip img {
    height: 45px;
    filter: grayscale(100%);
    transition: .3s;
}

.company-strip img:hover {
    filter: none;
    opacity: 1;
}

/* Slider */
.testimonial-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}
.testimonial-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform .5s ease;
    flex-wrap: nowrap;
}

.testimonial-card {
    flex: 0 0 clamp(280px, 85vw, 380px);
    min-width: clamp(280px, 85vw, 380px);
    scroll-snap-align: start;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #ececec;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .05);
}

.stars {
    font-size: 26px;
    color: #FDBA12;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text);
}

/* Client Info */
.client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client strong {
    display: block;
    font-size: 18px;
}

.client span {
    color: #64748b;
    font-size: 15px;
}

/*====================================================
  FAQ
=====================================================*/

.faq {
    padding: 120px 0;
    background: #f8fafc;
}

.faq-wrapper {
    max-width: 900px;
    margin: 70px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.faq-question {
    width: 100%;
    padding: 28px 30px;
    border: none;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: .35s;
    line-height: 1.8;
    color: var(--text);
}

.faq-item.active .faq-answer {
    max-height: 220px;
    padding: 0 30px 30px;
}

.icon {
    font-size: 28px;
    font-weight: 700;
    transition: .3s;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

/*====================================================
  CTA
=====================================================*/

.cta {
    padding-bottom: 120px;
    background: #f8fafc;
}

.cta-box {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 30px;
    padding: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -100px;
    top: -100px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.cta h2 {
    font-size: 52px;
    margin: 20px 0;
}

.cta p {
    font-size: 20px;
    opacity: .9;
    max-width: 600px;
}

.light {
    background: rgba(255, 255, 255, .15);
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    background: white;
    color: #ea580c;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    transition: .3s;
}

.btn-white:hover {
    transform: translateY(-3px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border: 2px solid white;
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
}

/*==============================
  CONTACT
==============================*/
.contact {
    padding: 120px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #fff3e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    height: 58px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

/*==============================
  FOOTER
==============================*/
footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

footer h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

footer span {
    color: var(--primary);
}

footer p {
    opacity: .75;
    line-height: 1.8;
}

footer h4 {
    margin-bottom: 20px;
}

footer a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 12px;
}

.newsletter {
    display: flex;
    margin-top: 20px;
}

.newsletter input {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 12px 0 0 12px;
}

.newsletter button {
    padding: 14px 24px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    color: #94a3b8;
}

/*==============================
  FLOATING BUTTONS
==============================*/
.back-top,
.whatsapp,
.call-btn {
    position: fixed;
    right: 25px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    z-index: 999;
    transition: .3s;
}

.back-top {
    bottom: 170px;
    background: #0f172a;
}

.whatsapp {
    bottom: 100px;
    background: #22c55e;
}

.call-btn {
    bottom: 30px;
    background: var(--primary);
}

.back-top:hover,
.whatsapp:hover,
.call-btn:hover {
    transform: translateY(-5px);
}
