/* =============================
   INDUSTRY HERO SECTION
=============================*/

.industry-section-hero{
    background:#0b0b0b url('../images/background-grid.png') center/cover no-repeat;
    position:relative;
    padding:90px 0;
    overflow:hidden;

}

/* CONTAINER */
.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* =============================
   LEFT SIDE
=============================*/

.hero-left{
    flex:1;
    color:#fff;
}

.hero-left h1{
    font-size:clamp(34px,5vw,52px);
    line-height:1.2;
    max-width:600px;
    margin-bottom:30px;
}

.hero-left h1 span{
    color:#FEC214;
    font-weight:700;
}

/* TAGS */
.hero-tags{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-bottom:35px;
}

.hero-tags span{
    background:#FEC214;
    color:#000;
    padding:12px 22px;
    border-radius:50px;
    width:fit-content;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.hero-tags span:hover{
    transform:translateX(8px);
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#FEC214;
    color:#000;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.btn-outline:hover{
    background:#FEC214;
    border-color:#FEC214;
    color:#000;
}


/* =============================
   RIGHT SIDE IMAGE
=============================*/

.hero-right{
    flex:1;
    position:relative;
    display:flex;
    justify-content:center;
}

.yellow-card{
    position:absolute;
    width:420px;
    height:420px;
    background:#FEC214;
    border-radius:30px;
    top:40px;
    right:40px;
    z-index:1;
}

.hero-image{
    position:relative;
    max-width:420px;
    z-index:2;
    animation:float 5s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}

.bird{
    position:absolute;
    z-index:3;
    animation:fly 6s ease-in-out infinite;
}

.bird-yellow{
    top:120px;
    right:45%;
    width:70px;
}

.bird-white{
    bottom:20px;
    left:30px;
    width:90px;
}

.bird-border{
    top:40px;
    right:120px;
    width:50px;
}

/* Animation */
@keyframes fly{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}


/* =============================
   TABLET
=============================*/

@media(max-width:1024px){

.hero-wrapper{
    flex-direction:column;
    text-align:center;
}

.hero-tags{
    align-items:center;
}

.yellow-card{
    right:auto;
    top:20px;
}

}


/* =============================
   MOBILE
=============================*/

@media(max-width:768px){

.industry-section-hero{
    padding:100px 0px;
}

.hero-left h1{
    font-size:30px;
}

.hero-image{
    max-width:380px;
}

.yellow-card{
    width:330px;
    height:330px;
}

.hero-buttons{
    justify-content:center;
}

}

/*client section*/

.brand-trust{
    padding:80px 0;
    background:#f8f9fb;
    text-align:center;
    overflow:hidden;
}

.clients-heading{
    font-size:34px;
    font-weight:600;
    margin-bottom:50px;
}

.clients-heading span{
    color:#FEC214;
}

/* MARQUEE AREA */
.logo-marquee{
    overflow:hidden;
    position:relative;
}

/* MOVING TRACK */
.logo-track{
    display:flex;
    gap:60px;
    width:max-content;
    animation:scroll 25s linear infinite;
}

/* LOGO CARD */
.logo{
    width:200px;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:14px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* SAME SIZE */
.logo img{
    max-width:130px;
    max-height:60px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.7;
    transition:.4s;
}

.logo:hover img{
    filter:grayscale(0);
    opacity:1;
}

/* SMOOTH INFINITE SCROLL */
@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* ========== 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);
    
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.clients-heading .highlight {
    background: var(--yellow);
    padding-inline: 0.5rem;
    display: contents;
}

/* 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-study-section {
  /*background: #f9fbfd;*/
  padding: 60px 20px;
  text-align: center;
}
.case-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

/* Tabs */
.case-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-study-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-study-card.show {
  opacity: 1;
  transform: translateY(0);
}
.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.case-study-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}
.case-study-card ul {
  list-style: none;
  padding: 0;
}
.case-study-card li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #555;
}
.case-study-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-study-card { padding: 20px; }
}
@media (max-width: 768px) {
  .tab-btn { margin: 6px 4px; padding: 10px 18px; font-size: 0.85rem; }
  .case-study-section {
    padding: 60px 0px;
    text-align: center;
}
}


/* 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:80px 20px;
    background:var(--black);
    color:var(--white);
}


/* HEADING */

.seo-heading{
    text-align:center;
    font-size:38px;
    font-weight:700;
    margin-bottom:50px;
}


/* ===============================
   MAIN LAYOUT
================================*/

.seo-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    /*grid-template-columns:1fr 1.4fr;*/
    gap:40px;
    align-items:center;
}


/* ===============================
   LEFT IMAGE
================================*/

.seo-image{
    width:100%;
}

.seo-image img{
    width: 100%;
    border-radius: var(--radius);
    display: block;
    object-fit: cover;
    height: 100%;
}


/* ===============================
   SERVICES GRID
================================*/

.seo-services{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}


/* ===============================
   SERVICE CARD
================================*/

.seo-card{
    background:#1b1b1b;
    border-radius:16px;
    padding:22px;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    height:100%;
}

.seo-card:hover{
    transform:translateY(-6px);
}


/* ICON + TITLE */

.seo-card h3{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
    margin-bottom:12px;
}

.seo-card h3 i{
    font-size:24px;
    color:#FEC214;
    background:rgba(254,194,20,.15);
    padding:8px;
    border-radius:8px;
}


/* TEXT */

.seo-card p{
    font-size:14px;
    line-height:1.6;
    color:#d6d6d6;
}


/* ===============================
   TABLET RESPONSIVE
================================*/

@media(max-width:1024px){

.seo-container{
    grid-template-columns:1fr;
    gap:35px;
}

.seo-image img{
    max-height:420px;
}

}


/* ===============================
   MOBILE RESPONSIVE
================================*/

@media(max-width:768px){

.service-section{
    padding:60px 15px;
}

.seo-heading{
    font-size:28px;
}

.seo-services{
    grid-template-columns:1fr;
}

.seo-card{
    padding:20px;
}

.seo-card h3{
    font-size:18px;
}

}


/* ===============================
   SMALL MOBILE
================================*/

@media(max-width:480px){

.seo-heading{
    font-size:24px;
}

.seo-image img{
    max-height:300px;
}

.seo-card p{
    font-size:14px;
}

}

/* Business section */

.business-section {
  padding: 4rem 0rem;
  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(2, 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;
    }
}

/*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); }
}


.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;
  }
}

/* ===== Download Section ===== */

.download-pdf-section {
    padding: 80px 0px;
    background: linear-gradient(135deg,#0f172a,#1e293b);
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
}

/* Box */
.download-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Heading */
.download-text h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.download-text h2 span {
    color: #fec214;
}

/* Paragraph */
.download-text p {
    color: #cbd5e1;
    font-size: 17px;
    max-width: 700px;
    margin: auto;
    margin-bottom: 35px;
}

/* ===== Button ===== */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(90deg,#757575,#fec214);
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

/* Hover Effect */
.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(37,99,235,0.5);
}

/* Arrow Animation */
.download-btn span {
    transition: 0.3s;
}

.download-btn:hover span {
    transform: translateX(6px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

    .download-box {
        padding: 40px 25px;
    }

    .download-text h2 {
        font-size: 26px;
    }

    .download-text p {
        font-size: 15px;
    }

    .download-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}




  
