/* ========== Reset & Root ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: "Poppins", sans-serif;*/
}

:root {
    --max-width: 1200px;

    --white: #fff;
    --black: #000;
    --gray: #757575;
    --dark: #222;
    --light: #f9f9f9;

    --yellow: #FEC214;
    --yellow-dark: #e0a800;

    --radius: 1rem;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: 0.3s ease;
}

body {
    overflow-x: hidden;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

/* -------- Montserrat -------- */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-cyrillic-400-normal.woff2") format("woff2"),
       url("../fonts/montserrat-cyrillic-400-normal.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-cyrillic-600-normal.woff2") format("woff2"),
       url("../fonts/montserrat-cyrillic-600-normal.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-cyrillic-700-normal.woff2") format("woff2"),
       url("../fonts/montserrat-cyrillic-700-normal.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* -------- Roboto -------- */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-cyrillic-400-normal.woff2") format("woff2"),
       url("../fonts/roboto-cyrillic-400-normal.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-cyrillic-500-normal.woff2") format("woff2"),
       url("../fonts/roboto-cyrillic-500-normal.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-cyrillic-700-normal.woff2") format("woff2"),
       url("../fonts/roboto-cyrillic-700-normal.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===============================
   Font Usage Examples
   =============================== */

/* Headings (Montserrat Bold by default) */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "Roboto", sans-serif;
  font-weight: 700;
}

/* Body text (Roboto Regular by default) */
body, p, li, span {
  font-family: "Roboto", "Montserrat", sans-serif;
  font-weight: 400;
}

img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

/* ========== Layout ========== */
.container {
    max-width: var(--max-width);
    width: 100%;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

@media (max-width: 767px) {

    .container,
    .hero-text,
    .consult-form {
        grid-template-columns: 1fr;
    }
}

/* ========== Header ========== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    z-index: 1000;
    max-width: 1200px;
    margin-inline: auto;
}

.logo {
    display: grid;
    place-items: center;
    max-width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color var(--transition);
}

nav ul li a:hover {
    color: var(--yellow);
}

.cta-btn {
    background: var(--yellow);
    color: var(--dark);
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
}

.cta-btn:hover {
    background: var(--yellow-dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
}

@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 100%;
        inset-inline: 0;
        background: var(--white);
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: var(--shadow);
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    
}

/* ========== Hero Section ========== */
.hero-section {
    background: url('../images/background-grid.png') center/cover no-repeat;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    animation: fadeIn 1.2s ease-in-out;
}

/* Entrance Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-text {
    color: var(--white);
    display: grid;
    gap: 2rem;
    padding: 1rem;
    position: relative;
    animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero-text h1 {
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-text h1 span {
    color: var(--yellow);
    font-weight: 700;
    animation: textGlow 2s infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 5px var(--yellow); }
    to { text-shadow: 0 0 20px var(--yellow); }
}

.hero-text p {
    font-size: 1rem;
}

/* ✅ Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--yellow);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px) scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--dark);
    transform: translateY(-3px) scale(1.05);
}

/* Floating Images */
.float-img-yellow,
.float-img-white,
.float-img-border {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}
.float-img-yellow {
    bottom: -4rem;
    right: 6rem;
    width: 80px;
}

.float-img-border {
    width: 50px;
    bottom: 1rem;
    right: 1.5rem;
    transform: rotateY(180deg);
}

.float-img-white {
    bottom: 0;
    left: 0;
    width: 10rem;
}

/* Form Box */
.consult-form {
    max-width: 80%; 
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.consult-form h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

.consult-form p {
    margin: 0 0.5rem 1.5rem;
    color: var(--gray);
}

.consult-form p span {
    color: var(--yellow);
}

.consult-form span {
    color: var(--dark);
    font-weight: 600;
}

.consult-form form {
    /*max-width:75%;*/
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.consult-form .consult-area,
.consult-form button {
    border-radius: 50px;
    font-size: 0.875rem;
    padding: 0.575rem 1rem;
    border: none;
}

.consult-form .consult-area {
    background: #f0f0f0;
    color: var(--gray);
}

.consult-form button {
    background: var(--yellow);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.consult-form button:hover {
    background: var(--yellow-dark);
}

.fly-bird-form {
    position: absolute;
    top: -3rem;
    right: -5rem;
    width: 4dvw;
}

/* ========== Stats Section ========== */
.stats-section {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54)),
        url("../images/1347.jpg") center/cover no-repeat;
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-container {
    max-width: var(--max-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
}

/* Cards */
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

/* Delay for staggered effect */
.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }
.stat-card:nth-child(4) { animation-delay: 0.8s; }

.stat-card h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
}

.stat-card p {
    font-size: 1.25rem;
    font-weight: 600;
}

.stat-card.yellow {
    background: var(--yellow);
    color: var(--dark);
    display: flex;
    align-items: center;
}

/* Animation keyframe */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ========== Clients Section ========== */
.clients-section {
    padding: 4rem 1rem;
    text-align: center;
    overflow: hidden;
}

/* Container with fixed max-width */
.clients-section .clients-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.clients-heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.clients-heading .highlight {
    background: var(--yellow);
    padding-inline: 0.5rem;
}

/* Logos wrapper */
.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 34px; 
    
}

/* Logos styling */

.clients-logos img {
    max-width: 120px;
    object-fit: contain;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.8s;
    transition: transform 0.3s ease;
}

/* Hover effect */
.clients-logos img:hover {
    transform: scale(1.15) rotate(2deg);
}

/* FadeUp Animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}


/*Case Studies Section*/

.case-studies {
  /*background: #f9fbfd;*/
  padding: 60px 20px;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

/* Tabs */
.filter-tabs {
  margin-bottom: 35px;
}
.tab-btn {
  background: var(--yellow);
  border: none;
  padding: 12px 25px;
  margin: 0 8px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255,65,108,0.3);
}
.tab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255,65,108,0.45);
}
.tab-btn.active {
  background: linear-gradient(135deg, #111, #333);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Case Card */
.case-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 25px;
  text-align: left;
  margin: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  border-left: 10px solid var(--yellow-dark);
}
.case-card.show {
  opacity: 1;
  transform: translateY(0);
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.case-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}
.case-card ul {
  list-style: none;
  padding: 0;
}
.case-card li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #555;
}
.case-card span {
  font-weight: 700;
  color: #e63946;
}

/* Slick Dots Custom */
.slick-dots {
  margin-top: 20px;
}
.slick-dots li button:before {
  font-size: 12px;
  color: #bbb;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  color: #ff416c;
  font-size: 14px;
}

/* Slick Arrows */
.slick-prev:before,
.slick-next:before {
  color: #111;
  font-size: 28px;
}

/* Responsive */
@media (max-width: 992px) {
  .case-card { padding: 20px; }
}
@media (max-width: 768px) {
  .tab-btn { margin: 6px 4px; padding: 10px 18px; font-size: 0.85rem; }
}


/* results-section */

.results-section {
  background: #b1b1b1;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #222;
}

/* Stats Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  background-size: cover;   /* pura image dikhega */
  background-position: center;
  background-repeat: no-repeat; 
}

/* Individual Background Images */
/*.bg1 { background-image: url("../images/progress.webp"); background-color: darkgrey;}*/
/*.bg2 { background-image: url("../images/growth.svg"); background-color: darkgrey; }*/
/*.bg3 { background-image: url("../images/plant1.webp"); background-color: darkgrey; }*/
/*.bg4 { background-image: url("../images/online-analysis.webp"); background-color: darkgrey; }*/
/*.bg5 { background-image: url("images/bg5.jpg"); }*/
/*.bg6 { background-image: url("images/bg6.jpg"); }*/

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.highlight {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.green { color: #28a745; }
.orange { color: #ff9800; }
.purple { color: #8e44ad; }
.blue { color: #007bff; }
.red { color: #e74c3c; }
.teal { color: #009688; }

.stat-box p {
  font-size: 1rem;
  color: var(--dark);
  /*margin: 0 0 15px 0;*/
}

/* Icon Styling */
.stat-icon {
  width: 60px;
  height: auto;
  object-fit: contain;
  margin-top: auto;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Service section */

.service-section {
    padding: 4rem 1rem;
    margin-inline: auto;
    background-color: var(--black);
    color: var(--light);
}

.seo-heading {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.seo-container {
    display: grid;
    grid-template-columns: 34% 65%;
    gap: 1rem;
    align-items: center;
    max-width: var(--max-width);
    margin-inline: auto;
    height: 100%;
    width: 100%;
}
.seo-image {
    height: 100%;
}

.seo-image img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
    object-fit: cover;
    height: 100%;
}

.seo-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.seo-card {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 0.75rem 1.1rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.seo-card img{
    width: 1.5rem;
}

.seo-card:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.068);
}

.seo-card h3 {
    color:var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seo-card p {
    color:var(--white);
}

/* Responsive tweaks */
@media (max-width: 62rem) {

    /* ~992px */
    .seo-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 37.5rem) {

    /* ~600px */
    .seo-heading {
        font-size: 1.75rem;
    }
}

/* Business section */

.business-section {
  padding: 4rem 1rem;
  margin-inline: auto;
  text-align: center;
  background: radial-gradient(circle, #fff9e7 0%, #ffffff 100%);
}

.business-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #222;
}

/* Tabs */
.business-tabs {
  margin-bottom: 2rem;
}
/*.tab-btn {*/
/*  background: #f6f6f6;*/
/*  border: 1px solid #ddd;*/
/*  padding: 0.6rem 1.2rem;*/
/*  border-radius: 25px;*/
/*  margin: 0 0.3rem;*/
/*  font-size: 0.95rem;*/
/*  font-weight: 600;*/
/*  cursor: pointer;*/
/*  transition: all 0.3s ease;*/
/*}*/
/*.tab-btn.active,*/
/*.tab-btn:hover {*/
/*  background: #ff541e;*/
/*  color: #fff;*/
/*  border-color: #ff541e;*/
/*}*/

/* Card */
.business-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem 1.5rem;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
  margin: 0 10px; /* equal gap in slider */
}
.business-card:hover {
  transform: translateY(-6px);
}
.business-card th {
  color: #ff541e;
}

.business-badge {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  font-size: 1.5rem;
}

.business-logo {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.business-logo img {
  max-height: 3rem;
  width: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th {
  text-align: left;
  font-weight: 600;
  padding-bottom: 0.5rem;
}
td {
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
  color: #444;
}
td:first-child {
  font-weight: 600;
  color: #666;
}

/* Slick Dots */
.slick-dots {
  bottom: -40px;
}
.slick-dots li button:before {
  font-size: 12px;
  color: #ccc;
}
.slick-dots li.slick-active button:before {
  color: #ff541e;
}

/* Responsive */
@media (max-width: 768px) {
  .business-heading {
    font-size: 1.6rem;
  }
}


/* Elevating Performance */

.elevating-services {
    max-width: var(--max-width);
    margin: 4rem auto;
}

.title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.grid-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.grid-items {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
}

.card h2 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.95rem;
    color: #555;
}

.icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.yellow {
    background-color: #fff8e6;
}

.light {
    background-color: #f9f9fb;
}

.image-section {
    text-align: center;
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    /* background: var(--yellow); */
    /* width: 473px; */
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .grid-content {
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }

    .title {
        font-size: 2.25rem;
    }
}

/* Section pillars*/

.container-pillars {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.pillars {
  background: #000; /* black background */
  color: #fff;
  padding: 4rem 1rem;
  text-align: center;
  font-family: "Segoe UI", Roboto, sans-serif;
}

/* Heading */
.pillars-heading {
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
}

/* Grid Layout */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-box {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 1.5rem 1.5rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: left;
}
.pillar-box img{
    width: 1.5rem;
}

.pillar-box:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.068);
}

/* Animate boxes */
.pillar-box:nth-child(1) { animation-delay: 0.2s; }
.pillar-box:nth-child(2) { animation-delay: 0.4s; }
.pillar-box:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Headings inside box */
.pillar-box h3 {
  
  margin-bottom: 0.75rem;
  color: var(--white); /* highlight color */
}

/* Paragraph text */
.pillar-box p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--white);
}

/* Responsive */
@media (max-width: 980px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}


/* why-section */

/* Container */
.container-why {
  max-width: 1200px;
  margin: 0 auto;
  
}

/* Section */
.why-section {
  background: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
  font-family: "Segoe UI", Roboto, sans-serif;
}

/* Heading */
.why-heading {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #111;
  position: relative;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Box */
.why-box {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Box Heading */
.why-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #333;
  text-align: left;
}

/* Paragraph */
.why-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  text-align: left;
}

/* Responsive */
@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* Testimonial section */

.testimonial-section {
    max-width: var(--max-width);
    margin: 4rem auto;

}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.testimonial-slider {
    padding: 1rem 0;
}


.testimonial-card {
    min-height: 230px!important;
    background-color: #fff8e6;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 0 0.5rem;
    box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    gap: 1rem;
}


.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
}
/*.testimonial-card.yellow {*/
/*    background-color: var(--white);*/
/*}*/

.testimonial-card.light {
    background-color: #fff8e6;
}

.profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info span {
    font-size: 0.875rem;
    color: #555;
}

.review {
    font-size: 0.95rem;
    color: #333;
    margin-top: 0.5rem;
}

/* Slick Dots Customization */
.slick-dots li button:before {
    color: #fcd768;
}

.slick-dots li.slick-active button:before {
    color: #ffc107;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }

    .review {
        font-size: 0.875rem;
    }
}

/* Contact us */

.contact{
    background: url("../images/contact-bg.webp") center/cover no-repeat;
    width: 100%;
    height: 100%;
    padding: 2rem 0;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 75rem;
    /* 1200px */
    margin: 4rem auto;
    align-items: start;
}

.contact-info{
    align-content: center;
    /* place-items: initial; */
    height: 100%;
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.contact-info p a {
    color: inherit;
    text-decoration: none;
}

.contact-info img{
    width: 2rem;
}

.map {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map iframe {
    width: 100%;
    height: 15rem;
    border: 0;
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    background: #f9f9f9;
    transition: border 0.3s ease, background 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--yellow);
    background: #fff;
}

.contact-form button {
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius);
    background: linear-gradient(90deg, var(--yellow), #f9a800);
    color: var(--black);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 56rem) {

    /* ~900px */
    .contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 37.5rem) {

    /* ~600px */
    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.1rem;
    }
    .contact{
        padding: 0rem 0;
    }
}

/* ========== Footer ========== */
footer {
    background: var(--black);
    color: var(--white);
    padding: 1.5rem 1rem;
}

.footer-container {
    max-width: var(--max-width);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 2rem;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--white);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gray);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* FAQ Section */
.faq-section {
  background: #f9f9f9;
  padding: 4rem 1rem;
  font-family: "Segoe UI", Roboto, sans-serif;
}

/* Container */
.container-faq {
  max-width: 900px;
  margin: 0 auto;
}

/* Heading */
.faq-heading {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #111;
}

/* FAQ Items */
.faq-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  background: #f8d86b;
  border: none;
  outline: none;
  text-align: left;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-question:hover {
  background: #f6c926;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  background: #fff;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* enough for content */
  opacity: 1;
  padding: 1rem 1.2rem;
}

/* CTA Section */
.faq-cta {
  text-align: center;
  margin-top: 3rem;
  background: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 14px;
}

.faq-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #f8d86b;
}

.faq-cta p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.faq-btn {
  display: inline-block;
  background: #f8d86b;
  color: #111;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.faq-btn:hover {
  background: #f6c926;
}

/* Responsive */
@media (max-width: 620px) {
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-cta {
    padding: 1.5rem;
  }
}


/*location section*/

.secion-locations {
  padding: 80px 20px;
  background: #f9fafc;
}

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #25373f;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.location-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.location-card img {
  width: 40px;
  height: auto;
  margin-bottom: 15px;
}

.location-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 8px;
}

.location-info p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* Hover Effects */
.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.location-card:hover::before {
  opacity: 1;
}

.location-card:hover {
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.location-card:hover h3,
.location-card:hover p {
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Backgrounds with hover */
.location-card.dubai { background-image: url(../images/dubaibg.png); cover }
.location-card.dubai:hover { background-image: url(../images/dubaibg02.jpg); }

.location-card.noida { background-image: url(../images/noidabg.png); cover }
.location-card.noida:hover { background-image: url(../images/noidabg01.jpg); }

.location-card.australia { background-image: url(../images/austrliabg.png); }
.location-card.australia:hover { background-image: url(../images/austliabg01.jpg); }

/*.location-card.noida::before {*/
/*  background-image: url("../images/noidabg01.jpg");*/
/*}*/
/*.location-card.dubai::before {*/
/*  background-image: url("../images/dubaibg02.jpg");*/
/*}*/
/*.location-card.australia::before {*/
/*  background-image: url("../images/austliabg01.jpg");*/
/*}*/

/* Mobile Tweaks */
@media (max-width: 600px) {
  .location-card {
    padding: 20px;
    min-height: 200px;
  }
  .location-info h3 {
    font-size: 16px;
  }
  .location-info p {
    font-size: 13px;
  }
}


/*Popup Overlay */

.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  animation: fadeIn 0.5s ease;
}

/* Heading */
.popup-content h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #333;
}

/* Inputs */
.consult-area, .submit-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

/* Button */
.submit-btn {
  background: linear-gradient(135deg,#ff416c,#ff4b2b);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn:hover {
  background: linear-gradient(135deg,#ff4b2b,#ff416c);
  transform: translateY(-2px);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}
.close-btn:hover { color: #ff416c; }

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}




/* Floating Buttons */
.whatsapp-btn,
.scroll-top {
    position: fixed;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 1000;
}

.whatsapp-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    background: #25d366;
    color: var(--white);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.scroll-top {
    bottom: 5rem;
    right: 1.25rem;
    background: var(--yellow);
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    pointer-events: none;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-0.3rem);
}


.g-recaptcha {
  transform: scale(0.9);   /* resize (0.9 = 90% size, 1.2 = 120%) */
  display: flex;           /* center it */
  justify-content: center; 
}

/*Thank You Section*/

.thankyou-section {
  background-color:var(--black);
  color: #fff;
  padding: 80px 20px;
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.thankyou-container {
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 25px;
}

.thankyou-icon {
  font-size: 4rem;
  animation: popIn 0.6s ease forwards;
}

.thankyou-content h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.thankyou-content h3 {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
}

.thankyou-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  background: #fff;
  color: var(--yellow);
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.thankyou-btn:hover {
  background: #222;
  color: #fff;
}

/* Animation for icon */
@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .thankyou-content h4 {
    font-size: 1.5rem;
  }
  .thankyou-content h3 {
    font-size: 1.1rem;
  }
  .thankyou-icon {
    font-size: 3rem;
  }
  .thankyou-btn {
    font-size: 0.95rem;
    padding: 12px 28px;
  }
}


/*Mobile responsive css*/

@media (max-width:600px) {
  .hero-section {
    height: 100%;
  }

  .container {
    margin: 1rem auto;
    gap: 0;
  }

  .hero-actions a {
    display: block;
    width: 100%;
    text-align: center;
    z-index: 1;
  }

  .float-img-border {
    width: 40px;
    top: 2rem;
    right: 1rem;
  }

  .float-img-yellow {
    top: 5.5rem;
    right: 3.7rem;
    width: 50px;
  }

  .consult-form {
    max-width: 100%;
  }

  .fly-bird-form {
    position: absolute;
    bottom: 1.5rem;
    right: 4rem;
    width: 8dvw;
  }

  .seo-services {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 0rem;
    place-items: center;
  }
  .contact-info{
      padding:2rem;
  }
}