:root {
  --yellow: #fec214;
  --muted: #fcfcfc;
  --text: #1f1f1f;
  --muted-text: #757575;
  --card-border: #e2e2e2;
  --tag-yellow: #c69200;
}

: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;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  width: 100%;
  overflow-x: clip;
  position: relative;
  scroll-behavior: smooth;
  /*overflow-x: hidden;*/
  font-family: "Poppins", sans-serif;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-regular.woff2") format("woff2"),
       url("../fonts/poppins-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-medium.woff2") format("woff2"),
       url("../fonts/poppins-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-bold.woff2") format("woff2"),
       url("../fonts/poppins-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =============================
   Navbar Base
============================= */
/* Header with Logo and Hidden Menu */
.db-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: #fff;
}

.db-navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* =============================
   Logo
============================= */
.db-logo img {
  max-width: 130px;
  height: auto;
  display: block;
}

/* =============================
   Book Call Button
============================= */
.db-book-call {
  padding: 10px 24px;
  background: #f0c330;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: none;
}

.db-book-call:hover {
  background: #d4af37;
}

.db-site-logo {
  height: 40px;
  width: auto;
}



/* =============================
   Menu Toggle (Hamburger)
============================= */
.db-menu-toggle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #d4af37;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: linear-gradient(45deg, #fec214, #000000f7);
  transition: 0.3s;
}

.db-menu-toggle span {
  height: 1.7px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: 0.3s ease;
}

.db-menu-toggle .line1 {
  width: 14px;   /* smallest */
  margin-left: 10px;
}

.db-menu-toggle .line2 {
  width: 22px;   /* medium */
}

.db-menu-toggle .line3 {
  width: 14px;   /* largest */
  margin-left: -10px;
}


/* Hero Section */
.db-hero-section {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.db-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.db-navoverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1500;
  display: none;
}

/* Sidebar */
.db-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 23rem;
  height: 100%;
  background: #000;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
  padding: 60px 20px;
  transition: right 0.4s ease;
  z-index: 1600;
}

.db-sidebar.open {
  right: 0;
}

/* Close Button */
.db-close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  background: #fec214;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.db-close-btn:hover {
  background: #ddd;
}

/* Sidebar Menu */
.db-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.db-menu-item {
  padding: 15px 0;
  font-size:22px;
  font-weight: 600;
  color: #fec214;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: color 0.3s;
}

.db-menu-item:hover {
  color: #fec214;
}

.menu-social{
    font-size:2rem;
    padding:1rem;
    text-align:center;
    
}

/* Submenu Panels */
.db-submenu-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 62rem;
  height: 100%;
  background: #f8f8f8;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  transition: left 0.5s ease;
  z-index: 1700; /* ðŸ‘ˆ Above sidebar now */
  overflow-y: auto;
}

.db-submenu-panel ul{
    list-style: none;
}
.db-submenu-panel ul li{
    font-size:16px;
    margin-bottom: 20px;
    color:#000;
}

.db-submenu-panel ul li:hover{
    color:#fec214;
}

.db-submenu-panel.active {
  left: 0;
}

.db-submenu-panel h3 {
  margin-bottom: 30px;
  font-size: 42px;
  color: #fec214;
}

/* Submenu Close */
.db-submenu-close {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 35px;
  cursor: pointer;
  cursor: pointer;
  color: #fec214;
  /*background: #fec214;*/
  border-radius: 50%;
  width: 34px;
  height: 34px;
  /*color: #000;*/
  z-index: 1005;
}

/* Multi-column layout */
.db-multi-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.db-multi-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
}

.db-multi-column li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.db-multi-column li strong {
  color: #fec214;
  font-size: 22px;
  /*border-bottom: 2px solid #007cc3;*/
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 5px;
}

.db-multi-column a{
    color:#000;
}

.infosys-services {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Each row */
.service-row {
    display: grid;
    grid-template-columns: 280px auto;
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
}

.service-row:last-child {
    border-bottom: none;
}

/* Left side (icon + title) */
.service-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-left i {
    font-size: 20px;
    color: #fec214;
}

.service-left span {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

/* Right side (multi columns) */
.service-right {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px 40px;
}

.service-right a {
    padding: 6px 0;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    /*border-bottom: 1px solid #eee;*/
}

.service-right a:hover {
    color: #fec214;
}

/* Main heading */
.service-title {
    font-size: 48px;
    color: #fec214;
    margin-bottom: 30px;
}


/* Mobile Fullscreen Submenu */
@media (max-width: 768px) {
    
    .service-row {
    display: block;
    }
    .db-header{
        padding: 9px 20px 9px 20px;
        
    }
    .db-sidebar {
        width:375px;
    }
    
  .db-submenu-panel {
    width: 100%;
    left: 100%;
    transition: left 0.4s ease;
  }

  .db-submenu-panel.active {
    left: 0;
  }

  .db-submenu-panel h3 {
    /*margin-top: 60px;*/
    font-size: 42px;
  }

  .db-multi-column {
    flex-direction: column;
    gap: 10px;
  }

  .db-multi-column ul {
    width: 100%;
  }
}



/* ===============================================================
                            Hero Section
======================================================= */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  /*z-index: 30000;*/
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*z-index: -1;*/
}

/* Buttons center me */
.btn-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn-consult {
  background: #fec214;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s ease;
}

.btn-consult:hover {
  background: #ffcf3a;
}

/* Hero content center alignment */
.hero-content {
  width: 100%;
  min-height: 60vh;
  background: linear-gradient(180deg, #56471c 0%, #212120 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
  max-width: 1100px;
}

.hero-content h1 span {
  color: #fec214;
  font-weight: 600;
}

/* Scroll smooth */
html {
  scroll-behavior: smooth;
}

/* Mobile ke liye optimize */ 
@media (max-width: 768px) { 
.hero { 
    height:auto; aspect-ratio: 16 / 9; 
    margin-top: 4rem; 
        
} 
.hero video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;  
    transform: none;  
    top: 0; 
    left: 0; 
        
    } 
    
}

/* Responsive */
@media (max-width: 576px) {
  .hero-content {
    padding: 50px 0;
    min-height: 30vh;
  }
  .hero-content h1 {
    font-size: 22px;
  }
  .btn-wrap {
    flex-direction: column;
  }
}


/* Comman section tag */

a {
  color: #fec214;          
  text-decoration: none;   
  transition: color 0.3s ease;
}

a:hover {
  color: #ffcf3a;          /* lighter yellow on hover */
  text-decoration: none;   
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px; /* responsive inner spacing */
}

.section-heading {
  position: relative;
  text-align: left;
  margin-bottom: 40px;
}

.headingshad{
    font-size: 2.5rem;
    color:#fec214;
    background-color: #fdf7e6;
    border-radius: 10px;
    padding: 5px;
    display: inline-block;   
    margin-bottom: 10px;     
}
.subtitle{
    display:block;   
    font-size: 1.8rem;
}

.subtitles{
    display: block;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.highlight{
    font-size:2rem;
    color:#fec214;
    display: block;   /* 👈 IMPORTANT */
    margin-top: 18px;  
    
}


/* Background big faded heading */
.section-heading .bg-title {
  font-size: 5rem;
  font-weight: 600;
  color: #000;
  opacity: 0.05;
  position: absolute;
  top: 50%;
  /* left: 50%; */
  transform: translate(-4%, -50%);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

/* Foreground main heading */
.section-heading .main-title {
  font-size: 3rem;
  font-weight: 500;
  color: #000;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-heading .bg-title{
        font-size:3rem;
    }
  .section-heading .main-title  {
    font-size: 22px;
  }
  .main-title::before {
    font-size: 60px;
  }
  .headingshad{
    font-size:1.8rem;
    color:#fec214;
    background-color: #fdf7e6;
    border-radius: 5px;
    padding: 5px;
    display: inline-block;   
    margin-bottom: 10px;     
}
.subtitle{
    display:block;   
    font-size: 22px;
}
.subtitles{
    display: block;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 9px;
    margin-left: 5px;
}

.highlight{
    font-size:22px;
    color:#fec214;
    display: block;   
    margin-top: 14px;  
    margin-bottom: 40px;
}
}

@media (max-width: 480px) {
  .main-title {
    font-size: 22px;
  }
  .main-title::before {
    font-size: 40px;
  }
}

/*About one section*/

.about-one {
  position: relative;
  padding: 80px 0px;
  text-align: center;
  background: #1F1F1F; /* dark background */
  overflow: hidden;
}

/* Left blurred glow */
.about-one::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(254, 194, 20, 0.32);
  border-radius: 50%;
  filter: blur(250px);
  top: 100px;
  left: -200px;
  z-index: 0;
}

/* Right blurred glow */
.about-one::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(254, 194, 20, 0.32);
  border-radius: 50%;
  filter: blur(250px);
  bottom: 100px;
  right: -200px;
  z-index: 0;
}

/* Big concentric background circles */
.about-one-bg-circles {
  position: absolute;
  top: -100px;     /* closer to corner */
  right: -100px;
  width: 600px;    /* smaller outer circle */
  height: 600px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  transform: none;
}

/* Outer ring */
.about-one-bg-circles::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(254, 194, 20, 0.04);
}

/* Middle ring */
.about-one-bg-circles::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: 100px;
  left: 100px;
  border-radius: 50%;
  background: rgba(254, 194, 20, 0.06);
}

/* Third ring */
.about-one-bg-circles .inner-ring {
  position: absolute;
  width: 250px;
  height: 250px;
  top: 175px;
  left: 175px;
  border-radius: 50%;
  background: rgba(254, 194, 20, 0.1);
}


@media (max-width: 768px) {
  .about-one-bg-circles {
    width: 400px;
    height: 400px;
    top: -80px;
    right: -80px;
  }
  .about-one-bg-circles::after {
    width: 250px;
    height: 250px;
    top: 75px;
    left: 75px;
  }
  .about-one-bg-circles .inner-ring {
    width: 150px;
    height: 150px;
    top: 125px;
    left: 125px;
  }
}

/* Heading in background */
.about-one-title-bg {
  font-size: 5rem;
  font-weight: 600;
  color: #FEC214;
  opacity: 0.1;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 1;
}

/* Main heading */
.about-one-title {
  font-size: 3rem;
  font-weight: 500;
  color: #FEC214;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.about-one-container {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.about-one-video {
  width: 60%;
  border-radius: 20px;
  display: block;
}

.about-one-text {
  max-width: 1000px;
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #BABABA;
}

.about-one-text span {
  font-weight: 600;
  color: #fff;
}

.about-one-text .highlight {
  color: #FEC214;
}

/* Scrolling marquee */
.about-one-marquee-wrapper {
  position: relative;
  width: 130%;
  height:50px;
  overflow: hidden;
  background: #FEC214;
  transform: rotate(-5deg) translateX(-180px);
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.about-one-marquee {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
}

.about-one-marquee span {
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #3D3D3D;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-one-dot {
  width: 12px;
  height: 12px;
  background: #1F1F1F;
  border-radius: 50%;
  display: inline-block;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .about-one-bg-circles {
    width: 900px;
    height: 900px;
  }
  .about-one-bg-circles::after {
    width: 600px;
    height: 600px;
    top: 150px;
    left: 150px;
  }
  .about-one-title-bg {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .about-one-title-bg {
    font-size: 4rem;
  }
  .about-one-title {
    font-size: 2rem;
  }
  .about-one-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .about-one-video {
    width: 90%;
  }
  .about-one-bg-circles {
    width: 600px;
    height: 600px;
  }
  .about-one-bg-circles::after {
    width: 400px;
    height: 400px;
    top: 100px;
    left: 100px;
  }
}


/*Apart Section*/

.apart-section {
  position: relative;
  padding: 80px 0px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
.section-title .title-bg {
  font-size: 5rem;
  font-weight: 600;
  color: #acacac;
  opacity: 0.08;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.section-title .title {
  font-size: 3rem;
  font-weight: 500;
  color: #1f1f1f;
  position: relative;
}

.apart-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

/* Hero Center */
.apart-hero {
  width: 100%;
  max-width: 450px;
  height:510px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(254, 194, 20, 0.15), rgba(255, 235, 59, 0.35));
  padding: 30px 30px 0px 30px;
}

.apart-hero-logo {
  position: absolute;
  top: 250px;   
  left: 50%;
  transform: translateX(-50%);
  width: 150px;  
  height: auto;
  z-index: 3;
}
.apart-hero-img{
    max-width: 100%;
    margin-top:87px;
    
}


/* Cards */
.apart-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.apart-card {
  background: #f9f9f9;
  border-radius: 24px;
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apart-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* Make icon and heading in a row */
.apart-card .top-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.apart-card .icon {
  width: 48px;
  height: 48px;
  background: #ffe9aa;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #8c6800;
}

.apart-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #3d3d3d;
  margin: 0; /* remove default margin */
}

.apart-card p {
  font-size: 14px;
  color: #757575;
  line-height: 1.6;
  margin: 0; /* remove default margin */
}

/* Responsive */
@media (max-width: 576px) {
  .apart-wrapper {
    grid-template-columns: 1fr;
  }
  .apart-hero {
    order: -1;
    margin: 0 auto 0px auto;
    height:377px;
  }
}
@media (max-width: 768px) {
.apart-hero-logo {
    top: 165px;   
 }
    
.apart-section {
    padding: 60px 0px;
 }
.section-title .title-bg {
    font-size: 50px;
 }
.section-title .title {
    font-size: 28px;
 }
.apart-card {
    padding: 20px;
 }
}


/*Clinets section */

.clients-section {
  position: relative;
  padding: 80px 0px;
  background-color: #fff;
  overflow: hidden;
}

.clients-background-title {
  position: absolute;
  /*top: 20px;*/
  left: 50px;
  font-size: 5rem;
  font-weight: 600;
  color: #acacac;
  opacity: 0.1;
  z-index: 0;
}

.clients-title {
  position: relative;
  font-size: 64px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 60px;
  padding-left: 140px;
  z-index: 1;
}

.clients-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1600px;
  margin: auto;
  z-index: 2;
}

.client-box {
  background: #ffffff;
  border: 1px solid rgba(254, 194, 20, 0.16);
  box-shadow: 0px 4px 20px rgba(197, 197, 197, 0.13);
  border-radius: 10px;
  width: 202px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: transform 0.3s ease, opacity 0.5s ease;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.client-box img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-box:hover img {
  transform: scale(1.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media screen and (max-width: 578px) {
    .clients-section {
        padding: 40px 0px;
    }
  .clients-title {
    font-size: 36px;
    padding-left: 20px;
    margin-bottom: 30px;
  }

  .clients-background-title {
    font-size: 72px;
    top: 10px;
  }

  .client-box {
    width: 45%;
    height: 100px;
  }
}

@media screen and (max-width: 480px) {
  .client-box {
    width: 45%;
  }
}

/* =========================
   Industries we lead
========================= */
.industries {
    width: 100%;
    margin: 50px auto;
    background: #f7f7f7;
    padding: 40px 50px;
    border-radius: 6px;
}

.industry-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 60px;
    margin-top: 50px;
}

.industry-item {
    display: flex;
    align-items: center;
    font-size: 22px;
    color: #111;
}

.check {
    width: 42px;
    height: 42px;
    border: 3px solid #ffb400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb400;
    font-size: 22px;
    margin-right: 15px;
    font-weight: bold;
}

/* =========================
   TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {

    .industry-list {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 30px 40px;
    }

    .industry-item {
        font-size: 20px;
    }

    .check {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}

/* =========================
   MOBILE (≤ 576px)
========================= */
@media (max-width: 576px) {

    .industries {
        padding: 30px 20px;
    }

    .industry-list {
        grid-template-columns: 1fr; /* single column */
        gap: 25px;
        margin-top: 35px;
    }

    .industry-item {
        font-size: 18px;
    }

    .check {
        width: 34px;
        height: 34px;
        font-size: 18px;
        margin-right: 12px;
    }
}

/*Case study Section*/

.case-slider {
  display: flex;
  gap: 30px;
}

.case-card {
  width: 100%;
  background: linear-gradient(96.39deg, rgba(255,255,255,0.05) 1%, rgba(105,105,105,0.05) 64.97%);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s ease;
}

.case-card .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px; /* earlier 80 — now perfect size */
  margin-bottom: 20px;
}
.case-card .logo img {
  max-height: 40px !important; 
  max-width: 100%;
  object-fit: contain;
}


.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.case-card h3 {
  font-size: 14px;
  color: #d2d2d2;
  font-weight: 600;
  margin-bottom: 40px;
}

.case-card h3 .highlight {
  font-size: 30px;
  font-weight: 700;
  color: #fec214;
}

.case-img-layer {
  position: relative;
  height: 220px;
}

.case-img-layer .layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  height: 180px;
  background: #2a2a2a;
  border-radius: 15px;
}

.case-img-layer .layer:first-child {
  top: -30px;
  opacity: 0.4;
  width: 90%;
}

.case-img-layer .layer:nth-child(2) {
  top: -15px;
  opacity: 0.7;
}

.case-img-layer .main-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 193px;
  border-radius: 15px;
  overflow: hidden;
}

.case-img-layer .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.case-card:hover .main-img img {
  transform: scale(1.05);
}

.btn-case {
  display: flex;
  justify-content: center;
}



/* About us Section */

.about-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem;
  overflow: hidden;
}

/* Large faded background text */
.about-section .bg-title {
  position: absolute;
  top: 40px;
  left: 5%;
  font-size: 128px;
  font-weight: 600;
  color: #acacac;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

/* LEFT SIDE */
.about-text {
  flex: 1;
  max-width: 50%;
  z-index: 2;
}

.about-text h2 {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #4f4f4f;
}

.about-text h3 {
  font-size: 32px;
  font-weight: 600;
  color: #4f4f4f;
  line-height: 1.4;
}

.highlight-bar {
  margin-top: 20px;
  width: 180px;
  height: 14px;
  background: #fec214;
  opacity: 0.7;
}

/* RIGHT SIDE IMAGE + BACKGROUND */
.about-image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.about-image .yellow-bg {
  position: absolute;
  top: 29px;
  left: 37%; /* starts mid-left */
  width: 100%; /* extend more than container */
  height: 106%;
  background: #fec214;
  z-index: 0;
}

.about-image img {
  position: relative;
  max-width: 100%;
  width: 600px;
  right: 6rem;
  height: auto;
  z-index: 1;
  transform: scale(1.3); /* 1.0 = normal, 1.1 = 10% bada */
  transform-origin: left; /* kahaan se zoom hoga */
}

/* Origami Birds */
.origami-left {
  position: absolute;
  left: 58%;
  top: 38%;
  width: 70px;
  z-index: 3;
}

.origami-right {
  position: absolute;
  right: 6%;
  top: 12px;
  width: 65px;
  opacity: 0.2;
  z-index: 1;
  filter: brightness(0) saturate(100%) invert(72%) sepia(93%) saturate(714%)
    hue-rotate(5deg) brightness(104%) contrast(101%);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
    margin-top: 3rem;
  }
  .about-text {
    max-width: 100%;
  }
  .about-text h2 {
    font-size: 48px;
  }
  .about-section .bg-title {
    font-size: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about-image {
    margin-top: 40px;
    justify-content: center;
  }
  .about-image .yellow-bg {
    left: 0;
    width: 100%;
    height: 100%;
  }
  .origami-left {
    display: none; /* hide on small screens */
  }
  .origami-right {
    right: 10%;
    top: 10%;
    width: 80px;
  }
}

/* Service Section */

.services-section {
  margin: 0rem 0rem 4rem;
}

.service-content .underline {
  display: block;
  width: 50px;
  height: 3px;
  background: #ffcc00;
  margin: 8px 0 16px 0;
  border-radius: 2px;
}

/* Pehla card by default expanded */
.service-card:first-child {
  flex: 0 0 280px;
  align-items: flex-start;
  padding: 20px;
}

.service-card:first-child::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(0px);
}

.service-card:first-child .label {
  display: none;
}

/* Jab koi bhi card hover ho Ã¢â€ â€™ pehla waala apne aap collapse ho */
.services-container:hover .service-card:first-child:not(:hover) {
  flex: 0 0 80px;
  align-items: flex-end;
  padding: 0;
}

.services-container:hover .service-card:first-child:not(:hover)::before {
  background: rgba(0, 0, 0, 0.55);
}

.services-container:hover .service-card:first-child:not(:hover) .label {
  display: block;
}

.services-container:hover
  .service-card:first-child:not(:hover)
  .service-content {
  display: none;
}

.service-card:first-child .service-content {
  display: block;
}
.services-container {
  display: flex;
  gap: 25px;
  overflow-x: clip;
  scrollbar-width: none;
  justify-content: center; /* Ã¢Å“â€¦ center align */
}

.services-container::-webkit-scrollbar {
  display: none;
}

 /*Individual Background Images */
.bg1 { background: darkgrey url("../images/search-engine-marketing.webp") center/cover no-repeat; }
.bg2 { background: darkgrey url("../images/content-marketing.webp") center/cover no-repeat; }
.bg3 { background: darkgrey url("../images/web-development.webp") center/cover no-repeat; }
.bg4 { background: darkgrey url("../images/social-media.webp") center/cover no-repeat; }
.bg5 { background: darkgrey url("../images/market-place.webp") center/cover no-repeat; }
.bg6 { background: darkgrey url("../images/public-relation.webp") center/cover no-repeat; }
.bg7 { background: darkgrey url("../images/branding.webp") center/cover no-repeat; }
.bg8 { background: darkgrey url("../images/modren-age-marketing.webp") center/cover no-repeat; }
.bg9 { background: darkgrey url("../images/influnser-marketing.webp") center/cover no-repeat; }

.service-card {
  flex: 0 0 80px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: flex-end; /* Ã¢Å“â€¦ align bottom */
  justify-content: center;
  padding: 0 15px;
}

.service-card .service-content {
  position: absolute;
  z-index: 2;
  display: none;
  text-align: left;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.service-card .label {
  position: absolute; /* center vertically */
  left: 10px; /* thoda andar rakho */
  transform: translateY(-50%) rotate(-90deg); /* rotate + center */
  transform-origin: left top; /* better rotation pivot */
  font-size: 1rem;
  white-space: nowrap;
  color: #fff;
  z-index: 2;
}

.service-card:hover .service-content {
  display: block; /* Ã¢Å“â€¦ only show on hover */
}

/* Expanded on hover */
.service-card:hover {
  flex: 0 0 280px;
  align-items: flex-start;
  padding: 20px;
}

.service-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(0px);
}

.service-card:hover .label {
  display: none;
}

.service-card .service-content {
  position: relative;
  z-index: 1;
  display: none;
}

.service-card:hover .service-content {
  display: block;
}

.service-content h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.service-content p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #ddd;
  margin: 0;
}

.highlight {
  color: #fcd34d;
  font-weight: 600;
}

/* Ã¢Å“â€¦ Mobile fix: first card always expanded */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column; /* stack vertically instead of horizontal scroll */
    align-items: center;
  }

  .service-card {
    flex: unset; /* remove fixed flex width */
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-bottom: 16px;
  }

  .service-card .label {
    display: none; /* hide rotated labels in mobile */
  }

  .service-card .service-content {
    display: block; /* always show content */
    position: relative;
    padding: 20px;
  }

  /* First card should be auto expanded like desktop */
  .service-card:first-child {
    width: 100%;
    max-width: 350px;
    padding: 20px;
  }
}

/* Client section */

.client-section {
  margin: 5rem auto;
}

.clients-slider {
  display: flex;
  gap: 30px;
  animation: scroll 30s linear infinite;
}

.client-card {
  flex: 0 0 auto;
  width: 220px;
  height: 120px;
  background: #fff;
  border: 1px solid rgba(254, 194, 20, 0.16);
  box-shadow: 0px 4px 20px rgba(197, 197, 197, 0.13);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card img {
  max-width: 150px;
  max-height: 70px;
  object-fit: contain;
}

.client-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.15);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .client-card {
    width: 180px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .clients-section h2 {
    font-size: 32px;
  }
  .client-card {
    width: 150px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .clients-section h2 {
    font-size: 26px;
  }
  .client-card {
    width: 120px;
    height: 80px;
  }
}

/* ========== Stats Section ========== */
.stats-section {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54)),
    url("../images/1347.webp") center/cover no-repeat;
  padding: 8rem 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;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.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);
}

/* Animation keyframe */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .stats-section { 
      padding: 4rem 1rem; 
      
  }
}



/* Section Blog */

.blogs-section {
  margin: 5rem auto;
}


.section-heading {
  text-align: left;
  margin-bottom: 40px;
  position: relative;
}

.bg-title {
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 120px;
  font-weight: 700;
  color: #acacac;
  opacity: 0.08;
}

.main-title {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  z-index: 2;
  padding-top: 12px;
}


.blog-card {
    width: auto !important;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  padding-bottom: 30px;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}


.blog-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: #fec214;
  border-radius: 20px 0 0 20px;
}


.blog-image img {
  width: 90%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}


.blog-content {
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tag {
  display: inline-block;
  margin-top:20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #c69200;
  background: rgba(254,194,20,0.12);
  border: 1px solid rgba(254,194,20,0.3);
  border-radius: 50px;
}

.blog-content .title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #3d3d3d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-content .excerpt {
  font-size: 0.7rem;
  color: #757575;
  line-height: 1.3;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.author {
  font-size: 14px;
  color: #757575;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  text-decoration: none;
  color: #c69200;
  font-weight: 600;
}

.read-more .btn-circle {
  display: inline-flex;
  width: 28px;
  height: 28px;
  background: #fec214;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
}
@media (max-width: 768px) {
  .blogs-section {
    margin: 0rem auto;
    }
  .title{
      font-size:0.85rem;
  }
}




/* Testimonial section */

.testimonial-section {
  margin: 5rem auto;
}



/* Testimonial card styling */
.testimonial-card {
  min-height: 230px;
  background-color: #fff8e6;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 10px;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  display: grid;
  gap: 1rem;
}

/* FIX: Make avatar 100% exact size */
.testimonial-card .avatar {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  max-width: 50px !important;
  max-height: 50px !important;
  border-radius: 50%;
  object-fit: cover;
}


.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.15);
}

.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;
}

.info span {
  font-size: 0.875rem;
  color: #555;
}

.review {
  font-size: 0.95rem;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-section {
        margin: 4rem auto;
    }

  .testimonial-card {
    padding: 2rem;
  }

  .review {
    font-size: 0.875rem;
  }
}


/*Contact info for Home page */

.contact-info-section {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 32px 10% 5rem;
  position: relative;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 300px;
}

/* Background Title */
.contact-left .bg-title {
  font-size: 5rem;
  font-weight: 600;
  color: #000;
  opacity: 0.05;
  position: absolute;
  top: 0px;
  left: 110px;
}

.contact-left .title {
  font-size: 3rem;
  font-weight: 500;
  color: #1f1f1f;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-left .subtitle {
  font-size: 1rem;
  color: #3d3d3d;
  /*margin-bottom: 40px;*/
  max-width: 600px;
}

.contact-form{
    margin-top:2rem;
}

.contact-form .input-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #4f4f4f;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fec214;
}
.consult-area{
  font-size: 1rem;
  color:#7a7373;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
}

.contact-form textarea {
  min-height: 80px;
}

.btn-consult {
  background: #fec214;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 500;
  color: #2a2a2a;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.btn-consult:hover {
  background: #ffda4d;
  transform: scale(1.05);
}

/* Right Side */
.contact-right {
  flex: 1;
  position: relative;
  padding: 50px;
  height: 50%;
  border-radius: 12px;
  color: #fff;
  /*overflow: hidden;*/
  background-color: black;
  margin-top:10rem;
  z-index: 0;
}

/* Yellow background behind with black overlay */
.contact-right::before {
  content: "";
  position: absolute;
  max-width: 71%;
  inset: 0;
  background: #fec214;
  /*border-radius: 12px;*/
  transform: translate(158px, -192px); 
  z-index: -2;
}

.contact-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: black;
  border-radius: 12px;
  z-index: -1;
}

.contact-right .info-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-right .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.contact-right .info-list li {
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-right .social {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
}

.contact-right .social a {
  /*color: #efefef;*/
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact-right .social a:hover {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-form {
        padding:0;
        margin-top: 25px;
    }
  .contact-info-section {
    padding: 60px 5%;
  }

  .contact-left .title {
    font-size: 48px;
  }

  .contact-right .info-title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .contact-left .bg-title {
    font-size: 80px;
  }

  .contact-left .title {
    font-size: 36px;
  }

  .contact-right {
    padding: 30px;
  }

  .contact-right .info-list li {
    font-size: 16px;
  }
}

/* FAQ Section */
/* Section */
.faq-section {
  padding: 5rem 1rem;
  background: #f7f7f7;
}

.faq-wrapper {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* FAQ Item */
.faq-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  overflow: hidden;
  border-left: 5px solid #f6c926;
}

/* Question */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #222;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: bold;
  transition: 0.3s ease;
}

/* Rotate icon on open */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Answer Area */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-right: 0.4rem;
  transition: max-height .5s ease, opacity .4s ease, padding .3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-top: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-question {
    font-size: 1rem;
  }
}


/* -----------------------------------------------------------------------------
                        Contact us page
---------------------------------------------------------- */

.contact {
  padding-top:8rem;
  background: url("../images/team-bg.webp") center/cover no-repeat;
  background-color:#fff9e8;
  width: 100%;
}

.contact h1{
    color:#FEC214;
    font-size:3rem;
    letter-spacing:2px;
}

.contact-section {
  display: flex;
  padding:30px 0 30px 0;
  gap:40px;
}

.contact-info {
  align-content: center;
  width: 60%;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin: 1rem 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: 1.5rem;
}

.map {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  height: 15rem;
  border: 0;
}

/* Form */
/* Form Box */
.consult-form {
  width: 40%;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  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 {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.consult-form .consult-area,
.consult-form button {
  border-radius: 50px;
  font-size: 0.875rem;
  padding: 1rem 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);
}

/* Responsive */
@media (max-width: 56rem) {
  /* ~900px */
  .contact-section {
    display: block;
  }
}

@media (max-width: 768px) {
  /* ~600px */
  .contact-info {
    width: 100%;
  }
  .consult-form {
    width: 100%;
    margin-top: 30px;
  }
  .contact h1{
      
    font-size: 1.65rem;
    }
  .contact-info h2 {
    font-size: 1.5rem;
  }

  .contact-form h3 {
    font-size: 1.1rem;
  }
}

/* Section news-clients */
.news-clients {
  background: #fff;
  padding: 40px 0;
}

.ncsection {
  display: flex;
  gap: 40px;
}

.news-card {
  width:60%;
  background: #fff;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    
}

.clients-card{
  width:40%;
  background: #fff;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Headings */
.news-card .title {
  font-size: 22px;
  font-weight: 700;
  color: #f5b301; /* yellow */
  margin-bottom: 15px;
}

.news-card .subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.news-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.news-card .date {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  display: block;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.clients-card .title {
  font-size: 22px;
  font-weight: 700;
  color: #f5b301; /* yellow */
  margin-bottom: 15px;
}

.clients-card .subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.clients-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.clients-grid  img {
  width: 130px;
  height: auto;
  object-fit: contain;
}
.contact-client-box{
background: #ffffff;
    border: 1px solid rgba(254, 194, 20, 0.16);
    box-shadow: 0px 4px 20px rgba(197, 197, 197, 0.13);
    border-radius: 10px;
    width: 160px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease, opacity 0.5s ease;
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}



/* Responsive */
@media (max-width: 768px) {
    .ncsection {
        display:block;
    }
  .news-card {
    width:100%;
    padding: 20px;
    margin-bottom: 40px;
  }
  .clients-card {
      width:100%;
      padding: 25px;
  }
  .contact-client-box{
    width:100%;
  }
  
  .contact-client-box {
        width: 100%;
    }
}

@media (max-width: 480px) {
  .clients-grid {
    gap: 10px;
  }
  .card .title {
    font-size: 20px;
  }
  .news-card .subtitle {
    font-size: 15px;
  }
  .clients-grid img {
    width: 100px;
  }
}

/* Footer Section */

footer {
  background: #fafafa;
  color: #4f4f4f;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 4rem 1rem 4rem;
}

/* Logo + tagline + social */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
  /*max-width: 300px;*/
}

.footer-brand img {
  width: 120px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 21px;
  color: #4f4f4f;
}

.social {
  display: flex;
  gap: 20px;
}

.social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  border-radius: 50%;
  color: #9a9a9a;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social a:hover {
  background: #fec214;
  color: #111;
}

/* Links grid */
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  font-size: 14px;
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
  /*font-size: 1rem;*/
    /*margin-bottom: 15px;*/
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links ul li i {
  font-size: 20px;
  /*padding-right: 2px;*/
  color: #fec214;
}

.footer-links ul li a {
  text-decoration: none;
  color: #626262;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fec214;
}

/* Bottom bar */
.footer-bottom {
  background: #1f1f1f;
  color: #fff;
  font-size: 12px;
  padding: 15px 20px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Desktop tweaks */
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4rem 0rem 4rem;
    /*gap:150px;*/
  }

  .footer-brand {
    flex: 1;
  }

  .footer-links {
    flex: 2;
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* QR Box Container */
.footer-qr-wrapper {
    /*margin-top: 20px;*/
    /*text-align: center;*/
}

/* QR Image (Auto Resizable) */
.footer-qr-wrapper .footer-qr-img {
    width: 160px;
    height: 170px;
    margin-top:10px;
    background: #fff;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.footer-qr-img:hover {
    transform: scale(1.05);
}

.qr-text {
    font-size: 12px;
    color: #555;
    margin-top: 8px;
}

/* 🔥 Mobile Responsive (767px and below) */
@media (max-width: 767px) {
    .footer-qr-wrapper {
        width: 100%;
    }

   .footer-qr-wrapper .footer-qr-img {
        width: 60%;
        height: Auto;
    }

    .qr-text {
        font-size: 11px;
    }
}

/* 🔥 Extra Small Screens (480px) */
@media (max-width: 480px) {
    .footer-qr-img {
        width: 80px;
        height: 80px;
    }
}


/* 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);
}

/* Who We are */

.who-we-are {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* Background Wave */
.who-we-are::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("industry-3 (1).png") no-repeat center/cover;
  opacity: 0.3;
  z-index: -1;
}

/* Left Content */
.who-text {
  flex: 1;
}

.who-text h2 {
  font-size: 56px;
  font-weight: 600;
  color: #3d3d3d;
  margin-bottom: 20px;
  position: relative;
}

.who-text h2::before {
  content: "Who We Are";
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 96px;
  font-weight: 600;
  color: #acacac;
  opacity: 0.1;
  z-index: -1;
}

.who-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.who-text p strong {
  font-weight: 600;
}

/* Right Content (Image + Shape) */
.who-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .yellow-bg {
  position: absolute;
  width: 80%;
  height: 90%;
  background: #fec214;
  border-radius: 160px 160px 160px 10px;
  z-index: 1;
} */

.who-image img {
  max-width: 100%;
}

/* Floating Circles */
.circle {
  position: absolute;
  border-radius: 50%;
  background: #fec214;
  z-index: 0;
}

.circle.white {
  background: #fff;
  border: 2px solid #fec214;
}

.circle.small {
  width: 20px;
  height: 20px;
  top: 20%;
  right: 10%;
}
.circle.medium {
  width: 40px;
  height: 40px;
  bottom: 10%;
  left: 15%;
}
.circle.large {
  width: 55px;
  height: 55px;
  top: 5%;
  right: 15%;
}

/* Responsive */
@media (max-width: 992px) {
  .who-we-are {
    flex-direction: column;
    text-align: center;
  }

  .who-text h2::before {
    font-size: 60px;
    top: -30px;
  }

}

/* About Mission Vision */
.mission-vision {
  padding: 80px 0px;
  background: url("../images/about-bg.png") center/cover no-repeat;
  position: relative;
  z-index: 1;
}

.mission-vision::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  position: relative;
  z-index: 1; /* keep above overlay */
}

/* Card styles */
.card {
  flex: 1 1 350px;
  min-height: 400px;
  padding: 40px;
  border-radius: 40px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(109, 109, 109, 0.15) 100%
  );
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.card h3 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fec214;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.card h4 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #ffffff; 
  position: relative;
  z-index: 1;
}

.card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff; 
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .cards-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .card {
    min-height: auto;
    padding: 30px;
  }

  .card::before {
    font-size: 60px;
  }

  .card h3 {
    font-size: 40px;
  }

  .card h4 {
    font-size: 24px;
  }
}

/* ===========================
   Modern About Section
=========================== */
.about-modern {
  position: relative;
  /* padding: 100px 0; */
  overflow: hidden;
  background: #000; /* black base */
  z-index: 1;
}

/* Flex Container */
.about-modern-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* Left Content */
.about-modern-content {
  flex: 1;
  color: #fff;
}

.about-modern-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fec214;
  margin-bottom: 20px;
}

.about-modern-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #fff;
}

.about-modern-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
}

.about-modern-content strong {
  color: #fec214;
}

/* Button */
.about-modern-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: #fec214;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-modern-btn:hover {
  background: #ff4848;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Right Image with Yellow Background */
.about-modern-image {
  flex: 1;
  position: relative;
}

.about-modern-image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -60px; 
  right: -100px; 
  /* right: -50px; */
  width: 100%;
  height: 100%;
  background: #fec214;
  border-bottom-left-radius: 200px;
  z-index: -1;
}

.about-modern-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Glowing Ornament */
.about-modern-ornament {
  position: absolute;
  left: -150px;
  top: 40%;
  width: 400px;
  height: 400px;
  background: #fec214;
  filter: blur(150px);
  opacity: 0.5;
  z-index: 0;
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 992px) {
  .about-modern {
    padding: 5rem 0;
  }
  .about-modern-container {
    flex-direction: column;
    text-align: center;
  }

  .about-modern-content h2 {
    font-size: 40px;
  }

  .about-modern-image::before {
    border-radius: 50px;
    height:84%;
    right: 0;
  }
}

/* about-why */

.about-why {
    
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.about-why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(254, 194, 20, 0.3) 0%, rgba(254, 194, 20, 0.3) 100%);
  z-index: -1;
  transform: skewY(-3deg);
}

.section-heading {
  text-align: left;
  margin-bottom: 60px;
}

.section-heading .label {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  display: block;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: 3rem;
    font-weight: 600;
    color: #0c2239;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align:left;
}

.section-heading p {
  font-size: 18px;
  color: #17012C;
  opacity: 0.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.why-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0px 20px 60px rgba(226, 222, 219, 0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-icon{
    display:flex;
    align-items: center;
    gap: 6px;
}

.why-card.yellow-bg {
  background: #fec214;
  color: #fff;
}

.why-card h3 {
  font-weight: 600;
  font-size: 20px;
  color: inherit;
}

.why-card p {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.8;
  color: inherit;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon.yellow {
  background: #fec214;
  color: #fff;
}

.icon.white {
  background: #fff;
  color: #fec214;
}

/* Responsive */
@media (max-width: 768px) {
    .section-heading {
    margin-bottom: 30px;
    }
  .section-heading h2 {
    font-size: 2.5rem;
  }
  .why-card {
    padding: 24px;
  }
}

/* Stats Section */
.section-about-stats {
  position: relative;
  padding: 80px 0px;
  background: linear-gradient(180deg, rgba(254, 194, 20, 0.2) 0%, rgba(254, 194, 20, 0) 80%);
  overflow: hidden;
}

.section-about-stats .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-about-stats .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #17012C;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-about-stats .section-title::before {
  content: "Our Track Record";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 96px;
  font-weight: 600;
  color: #ACACAC;
  opacity: 0.1;
  white-space: nowrap;
  z-index: -1;
}

.about-stats-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 cards in a row */
  gap: 20px;
  justify-items: center;
}

.about-stats-card {
  background: #fff;
  width:100%;
  border: 1px solid #D2D2D2;
  border-radius: 24px;
  box-shadow: 0px 20px 60px rgba(226, 222, 219, 0.5);
  padding: 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stats-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.1);
}

.about-stats-card h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #FEC214;
  margin: 0;
}

.about-stats-card p {
  font-size: 15px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #17012C;
  opacity: 0.9;
  margin: 0;
}

@media (max-width: 678px) {
  .about-stats-cards {
    grid-template-columns: repeat(1, 1fr); /* 5 cards in a row */
  }
  .about-stats-card {
    min-width: 100%; /* prevents shrinking too small */
  }
}

/* Responsive */
@media (max-width: 992px) {
  .section-about-stats .section-title {
    font-size: 32px;
  }

  .section-about-stats .section-title::before {
    font-size: 72px;
  }
}

@media (max-width: 600px) {
  

  .section-about-stats .section-title {
    font-size: 26px;
  }

  .section-about-stats .section-title::before {
    font-size: 48px;
    top: -20px;
  }

  .about-stats-card h3 {
    font-size: 36px;
  }
}

/* =============================
   Service Hero Section
============================= */
.service-hero {
  position: relative;
  background: url("../images/service-bg.webp") center/cover no-repeat;
  padding: 80px 0;
  overflow: hidden;
  z-index: 1;
}

/* Container layout â€” uses global .container */
.service-hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* =============================
   Floating Icons
============================= */
.floating-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  animation: float 6s ease-in-out infinite;
  opacity: 0.9;
  z-index: 1;
}

.icon1 { top: 70%; left: 55%; width: 40px; height: 40px; animation-delay: 0s;} 
.icon2 { top: 45%; left: 56%; width: 55px; height: 55px; animation-delay: 2s; } 
.icon3 { top: 15%; right: 42%; animation-delay: 4s; } 
.icon4 { bottom: 0%; left: -50%; width: 50%; height: 40%; animation-delay: 1s;} 
.icon5 { bottom: 55%; right: -50%; width: 50%; height: 40%; animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* =============================
   Left Content
============================= */
.service-hero-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.service-hero-content h1 {
  font-size: 4.5rem;
  color: #FEC214;
  font-weight: 700;
  line-height: 1.2;
}

.service-hero-content h2 {
  font-size: 1.8rem;
  color: #333;
  margin: 15px 0;
  font-weight: 500;
}

.service-hero-content p {
  font-size: 0.95rem;
  color: #444;
  max-width: 520px;
  line-height: 1.6;
}

/* =============================
   Right Form
============================= */
.service-hero-form {
  flex: 1 1 40%;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-width: 450px;
}

.service-hero-form h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.service-hero-form h3 span {
  color: #FEC214;
}

.service-hero-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s;
}

.service-hero-form input:focus {
  border-color: #FEC214;
  box-shadow: 0 0 6px rgba(254,194,20,0.5);
}

.service-hero-form button {
  width: 100%;
  padding: 14px;
  background: #FEC214;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.service-hero-form button:hover {
  background: #e3aa00;
}

/* =============================
   Responsive Design
============================= */
@media (max-width: 992px) {
  .service-hero .container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .service-hero-content p {
    margin: 0 auto;
  }

  .service-hero-form {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .service-hero-content h1 {
    font-size: 2.5rem;
  }

  .service-hero-content h2 {
    font-size: 1.2rem;
  }

  .floating-icon {
    width: 45px;
    height: 45px;
    display: none;
  }
}


/* -----------------------------------------------------------------------------
              Quick Wins Section Styling
------------------------------------------------------------ */
.quick-wins {
  padding: 80px 0px;
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quick-wins .section-heading {
  margin-bottom: 60px;
  position: relative;
  text-align:center;
}

.quick-wins .bg-title {
  font-size: 6rem;
  font-weight: 700;
  color: #acacac;
  opacity: 0.1;
  line-height: 1;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: -20px;
  z-index: 0;
}

.quick-wins .title {
  font-size: 3.5rem;
  font-weight: 600;
  color: #3d3d3d;
  position: relative;
  z-index: 1;
}

/* Inline Stats */
.stats-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
}

.stat {
  border: 2px solid #fec214;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 1rem;
  color: #4e4e4e;
  background: #fff;
  font-weight: 400;
}

.stat strong {
  color: #fec214;
  font-weight: 700;
  margin-right: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .bg-title {
    font-size: 3rem;
    top: -10px;
    display:none;
  }
  .quick-wins .title {
  font-size: 2.5rem;
  }
  .stat {
    font-size: 0.95rem;
  }
  .stats-inline {
      display:grid;
      justify-content: normal;
  }
}


/*------------------------------------------------------------------------------
                    Service Highlights
------------------------------------------------------*/

.service-highlights {
  background: #101010;
  padding: 80px 0px;
  color: #fff;
  position: relative;
}

.section-heading {
  margin-bottom: 60px;
  position: relative;
  text-align: left;
}

.service-highlights .bg-title {
  font-size: 7rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.05;
  line-height: 1;
  position: absolute;
  width: 100%;
  left: 0;
  top: 28px;
  z-index: 0;
}

.service-highlights .title {
  font-size: 3.5rem;
  font-weight: 600;
  color: #fec214;
  position: relative;
  z-index: 1;
}

.service-highlights-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.service-highlights-image {
  flex: 1 1 40%;
  text-align: center;
}

.service-highlights-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}

.service-highlights-list {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-highlights-card {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s ease;
}

.service-highlights-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

.service-highlights-card .icon {
  font-size: 1.6rem;
  color: #fec214;
  margin-right: 16px;
  min-width: 36px;
}

.service-highlights-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.service-highlights-card p {
  font-size: 0.75rem;
  color: #bfbfbf;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .section-heading {
        margin-bottom: 30px;
    }
    .service-highlights .title {
        font-size:2.5rem;
    }
  .service-highlights-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .service-highlights-image img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .bg-title {
    font-size: 3rem;
  }
  .title {
    font-size: 0.85rem;
  }
  .service-highlights-card {
    padding: 15px;
  }
  .service-highlights-card h3 {
    font-size: 1.1rem;
  }
}

/*Process Section*/


.process-section { 
  text-align: center;
  padding: 60px 20px;
}

.process-section h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #0c2239;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align:left;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.step {
  flex: 1 1 200px;
  max-width: 220px;
  position: relative;
  text-align: center;
}

.step-circle {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 35px 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.step-circle:hover {
  transform: translateY(-5px);
  z-index:-1;
}
.step-number {
  background: #ffb703;
  color: #fff;
  font-weight: bold;
  font-size: 25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  top: -42px; /* default for odd steps */
}

.step:nth-child(even) .step-number {
  top: auto;       /* reset */
  bottom: -42px;   /* move below for even steps */
}



.step-icon {
  font-size: 32px;
  color: #555;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.step p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* âœ… Arrow only for odd steps (1,3,5) */
.step:nth-child(odd):not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48%;
  right: -95px;  /* adjust spacing */
  transform: translateY(-50%);
  width: 155px;
  height: 270px;
  background: url("../icons/Vector 5.png") center/contain no-repeat;
  z-index: -1;
}

/* âœ… Arrow only for even steps (2,4) */
.step:nth-child(even):not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48%;
  right: -95px;  /* adjust spacing */
  transform: translateY(-50%);
  width: 155px;
  height: 270px;
  background: url("../icons/Vector 6.png") center/contain no-repeat;
  z-index: -1;
}

/* Tablet & small screens */
@media (max-width: 768px) {
  .process-section h2 {
    font-size: 2.5rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    margin: -50px auto 10px;
    display: block;
    position: static;
    transform: none;
    z-index: auto;
    top: auto;
    bottom: auto;
  }

  .step-circle {
    padding: 25px 15px;
  }

  .step-icon {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .step h3 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.85rem;
  }

  /* Steps 2 per row */
  .process-steps {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .step {
    flex: 1 1 calc(50% - 10px); /* two per row with small gap */
    max-width: none;
    margin-bottom: 20px;
  }

  .step::after {
    display: none; /* hide arrows on mobile */
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .step {
    flex: 1 1 100%; /* single column on very small screens */
  }

  .step-circle {
    padding: 20px 10px;
  }

  .step-icon {
    font-size: 24px;
  }

  .step h3 {
    font-size: 0.95rem;
  }

  .step p {
    font-size: 0.8rem;
  }
}


/*-----------------------------------------
            Done Scrolling Section
/*----------------------------------------*/

.done-scrolling-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 8%;
  background:  url("../images/service-bg.webp") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.done-scrolling-content{
    text-align:center;
}

.done-scrolling-content h2 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  padding: 25px;
}

.done-scrolling-content span {
  font-size: 3rem;
  color: #FEC214;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.done-scrolling-content button {
  width: 30%;
  padding: 10px;
  background: #FEC214;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  color: white;
}

@media (max-width: 768px) {
    .done-scrolling-content h2,
.done-scrolling-content span {
  font-size: 1.1rem;
  padding:0;
  margin-bottom:10px;
}
    
  .done-scrolling-content button {
  width: 80%;
  }
}

/*Faq Section with secrvice page*/

.faq-wrapper {
      max-width: 1200px;
      margin: 0 auto;
    }
    .faq-grid-box {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .faq-item-card {
      background: #fff;
      border-radius: 12px;
      /*padding: 20px;*/
      /*box-shadow: 0 4px 12px rgba(0,0,0,0.06);*/
      /*border: 1px solid #eee;*/
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      background-color:#fff9e7;
    }

    .faq-item-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .faq-item-question {
      background: #fef3c7;
      display: inline-block;
      font-weight: 500;
      font-size: 1.1rem;
      padding: 15px;
      border-radius: 15px;
      /*margin-bottom: 12px;*/
      width: 100%;
    }

    .faq-item-answer {
      font-size: 0.75rem;
      line-height: 1.6;
      color: #444;
      padding: 20px;
    }
@media (max-width: 768px) {
    .faq-grid-box {
    display: block;
    }
    .faq-item-card {
        margin-bottom:20px;
    }   
}

/*---------------------------------
-------------Team Page -----------
------------------------------------*/

/* Team Section */
.team-section {
  position: relative;
  background: url('../images/team-bg.webp') no-repeat center/cover;
  padding: 80px 0px;
}

.team-title {
  font-size: 56px;
  font-weight: 600;
  color: #3d3d3d;
  margin-bottom: 20px;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease;
}

.team-member {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease;
}

.team-member.reverse {
  flex-direction: row-reverse;
}

.team-img img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: zoomIn 1.2s ease;
}

.team-img img:hover {
  transform: scale(1.08);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
}

.newteamceo-icons {
  position: absolute;
  font-size: 45px;
  bottom: 30%;
  left: 21%;
  display: flex;
  gap: 12px;
  transition: all 0.5s ease;
}
.team-text {
  flex: 1;
}

.team-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-text h3 span {
  font-weight: 400;
  font-size: 18px;
  color: #666;
}

.team-text p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #4f4f4f;
  text-align: justify;
}

.team-divider {
  height: 2px;
  background: #f9a825;
  width: 40%;
  margin: 40px auto;
}


/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .team-member,
  .team-member.reverse {
    flex-direction: column;
    text-align: center;
    gap:30px;
  }
  
.newteamceo-icons {
  bottom: 65%;
  left: 70%;
}
  
  .team-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
  }
}

/*------------------------------------------------------------------------------
Blog Page 
---------------------------------------------------------*/

.blog-section{
    padding: 8rem 0px;
    
}

    /* Section Header */
    .blog-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .blog-header span {
      background: #fff4cc;
      color: #f9a825;
      font-size: 20px;
      font-weight: 400;
      padding: 6px 14px;
      border-radius: 10px;
      display: inline-block;
      margin-bottom: 24px;
    }
    
    .blog-header h1 {
      font-size: 38px;
      font-weight: 700;
    }

    .blog-header h2 {
      font-size: 32px;
      font-weight: 700;
    }

     /* Search */
    .search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 30px auto;
    max-width: 600px;
    width: 100%;
}

.search-box input {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #eee;
    border-right: none;
    border-radius: 8px 0px 0px 8px;
    outline: none;
    transition: 0.3s ease;
    background: #fff;
}

.search-box input:focus {
    border-color: #ed7a21;
    box-shadow: 0 0 0 3px rgba(237,122,33,0.15);
}

.search-box button {
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ed7a21, #ff9a3c);
    color: #fff;
    border-radius: 0px 8px 8px 0px;
    font-weight: 600;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(237,122,33,0.35);
}

.search-box button:active {
    transform: scale(0.97);
}

    /* Filters */
    .filters {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      border-bottom: 1px solid #eee;
      padding-bottom: 20px;
      margin-bottom: 30px;
    }

    .filter-tabs {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .filter-tabs button {
      border: none;
      background: none;
      font-size: 14px;
      font-weight: 500;
      color: #666;
      padding: 6px 12px;
      cursor: pointer;
      border-radius: 20px;
      transition: 0.3s;
    }

    .filter-tabs button.active,
    .filter-tabs button:hover {
      background: #f9a825;
      color: #fff;
    }
    
    .filter-sort{
    width: 30%;
    display: grid;
  }

    .filter-sort select {
      padding: 6px 12px;
      border-radius: 8px;
      border: 1px solid #ddd;
      font-size: 15px;
    }

    /* Blog Grid */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .blog-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 12px;
      overflow: hidden;
      transition: 0.3s;
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-card-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-meta {
      font-size: 13px;
      color: #f9a825;
      font-weight: 600;
      margin-bottom: 8px;
    }
    
.blog-card-content h3 {
  font-size: 0.8rem;
  margin: 15px 0 5px;
  line-height: 20px;
  letter-spacing:0.2px;
  color: #183B56;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card-content p {
  margin-bottom: 20px;
    margin-top: 10px;
    font-weight: 400;
    font-size: 0.8rem;
    color: #5A7184;
    line-height: 20px;
    display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

    /*.blog-card-content h3 {*/
    /*  font-size: 0.9rem;*/
    /*  font-weight: 500;*/
    /*  margin-bottom: 10px;*/
    /*  color: #222;*/
    /*}*/

    
    .read-more {
      text-decoration: none;
      background: #f9a825;
      color: #fff;
      font-size: 14px;
      padding: 10px 16px;
      border-radius: 8px;
      display: inline-block;
      font-weight: 500;
      align-self: flex-start;
      transition: 0.3s;
    }

    .read-more:hover {
      background: #d18e00;
    }

    /* Newsletter Box */
    .newsletter-card {
      background: #fff8e6;
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      border: 1px solid #ffd580;
    }

    .newsletter-card h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .newsletter-card p {
      font-size: 14px;
      margin-bottom: 20px;
      color: #555;
    }

    .newsletter-card input {
      width: 100%;
      padding: 10px;
      border-radius: 8px;
      border: 1px solid #ddd;
      margin-bottom: 15px;
      font-size: 15px;
    }

    .newsletter-card button {
      width: 100%;
      padding: 10px;
      border-radius: 8px;
      border: none;
      background: #f9a825;
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    .newsletter-card button:hover {
      background: #d18e00;
    }

    
    
/* Responsive */
@media (max-width: 768px) {
    
  .blog-section {
    margin-top:4rem;
  }
  .blog-section h1 {
    font-size: 1rem;
  }
  .filter-sort{
    margin-top: 1rem;
    width: 100%;
    display: grid;
  }
  .filter-sort select {
      padding: 10px 10px;
  }
}
    
/*------------------------------------------------------------------------------
Blog Details page
---------------------------------------------------------*/

.blog-hero {
  background: url("../blog-images/bg-blog-detail.png") no-repeat bottom center;
  background-size: cover;
  background: #ffc928;
  opacity:2;
  position: relative;
  padding: 150px 0px; 
  overflow: hidden;
  text-align:center;
  height:70%;
  width:100%;
}

/* Wave background */
.blog-hero::after {
  content: "";
  position: absolute;
  bottom: -118px;
  left: 0;
  width: 100%;
  height: 220px;
  background: url("../blog-images/wave.svg") no-repeat bottom center;
  background-size: cover;
  /*z-index: -1;*/
}

.blog-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  max-width: 900px;
  margin: 25px auto;
  line-height: 3rem;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 2; /* make sure text is above wave */
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero {
    height: auto;
    padding: 80px 20px 40px;
  }
  .blog-hero h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

/*Blog Details page*/

.blog-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Sidebar */
.blog-sidebar {
  /*flex: 0 0 60px;*/
  /*display: flex;*/
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.blog-sidebar a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border-radius: 50%;
  transition: 0.3s ease;
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.blog-sidebar a:hover {
  background: #fec214;
  color: #fff;
  transform: scale(1.1);
}

/* Blog Content */
.blog-main {
  /*flex: 1;*/
  /*min-width: 0;*/
}

.blog-content img {
  max-width: 100%;
  border-radius: 12px;
  /*margin: 25px 0;*/
}

.blog-content h2 {
  font-size: 1.8rem;
  font-weight:700;
  margin: 15px 0 15px;
  line-height: 36px;
  letter-spacing:0.2px;
  color: #183B56;
}

.blog-content h3 {
  font-size: 1.3rem;
  /*margin: 25px 0 15px;*/
  line-height: 20px;
  letter-spacing:0.2px;
  color: #183B56;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-content p {
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 400;
    font-size: 0.8rem;
    color: #5A7184;
    line-height: 20px;
    text-align:justify;
    
}

.blog-content ul {
  margin: 0px 0 0px 20px;
  padding: 0;
}

.blog-content ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}

/* Post Header */
.post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: #fafafa;
  border-radius: 10px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-info img {
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

.username {
  font-weight: bold;
  font-size: 1rem;
}

.verified {
  color: #6c757d;
  font-size: 0.85em;
}

.published-date {
  color: #6c757d;
  font-size: 0.9em;
}

/* ===== Sidebar Box Styling ===== */
.sidebar-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sidebar-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #183B56;
  font-weight: 600;
}

/* ===== Search Bar ===== */
.sidebar-search {
  display: flex;
}

.sidebar-search input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px 0 0 6px;
  outline: none;
  font-size: 14px;
}

.sidebar-search input:focus {
  border-color: #fec214;
}

.sidebar-search button {
  background: #fec214;
  border: none;
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.sidebar-search button:hover {
  background: #e0ad10;
}

/* ===== Recent Posts FIXED ===== */
.recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts li {
  margin-bottom: 14px;
  clear: both;
}
.recent-posts li {
  overflow: hidden;
}

.recent-posts p {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.recent-posts li a {
  display: contents;
  text-decoration: none;
  color: #5A7184;
  font-size: 12px;
  line-height: 1.2;
  word-break: break-word;
  white-space: normal;
  
}

.recent-posts li a:hover {
  color: #fec214;
}

/* ===== Social Icons Sidebar ===== */
.social-vertical {
  display: block;   
}

.social-vertical h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #183B56;
  font-weight: 600;
}

/* Icons row */
.social-vertical a {
  width: 40px;
  height: 40px;
  background: #f4f4f4;
  display: inline-flex;   
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #333;
  font-size: 18px;
  text-decoration: none;
  margin-right: 12px;     
  transition: all 0.3s ease;
}

/* Hover Effect */
.social-vertical a:hover {
  background: #fec214;
  color: #fff;
  transform: scale(1.1);
}




/* Comments */
.comments-title {
    font-size: 2.1rem;
    margin: 25px 0 15px;
    color: #183B56;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 48px;
}

.comment {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.comment img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.comment-body {
  background: #f9fafc;
  padding: 12px 15px;
  border-radius: 10px;
  width: 100%;
}

.comment-user {
  font-weight: bold;
  font-size: 0.95em;
  margin-bottom: 5px;
}

.comment-date {
  font-weight: normal;
  color: #999;
  font-size: 0.85em;
  margin-left: 8px;
}

.comment-text {
  font-size: 0.95em;
  color: #333;
  line-height: 1.5;
}

/* Comment Form */
.comment-form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 15px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  /*background: #fafafa;*/
  border-radius: 10px;
  flex-wrap: wrap;
}

.comment-form img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.comment-form input {
  flex: 1;
  padding: 12px 15px;
  /*border-radius: 20px;*/
  border: none;
  font-size: 1em;
  outline: none;
  transition: border 0.2s ease;
}

.comment-form input:focus {
  border-color: #007bff;
}

.comment-form button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.comment-form button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .blog-container {
    flex-direction: column;
  }

  .blog-sidebar {
    flex-direction: column;
    justify-content: center;
    position: static;
  }
}

@media (max-width: 600px) {
  .post-header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: left;
  }

  .comment-form {
    flex-direction: column;
    align-items: stretch;
  }

  .comment-form input,
  .comment-form button {
    width: 100%;
  }
}



/*pagination section*/

.pagination {
    margin-top: 20px;
}

.pagination a {
    color: #333;
    text-decoration: none;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ccc;
    margin-right: 5px;
    border-radius: 5px;
}

.pagination a:hover {
    background-color: #f5f5f5;
}

.pagination .active {
    background-color: #f9a825;
    color: #fff;
    border: 1px solid #f9a825;
}

.blog-meta-wrap {
  display: flex;
  justify-content: space-between; /* Date on left, writer on right */
  align-items: center;
  width: 100%;
}

.blog-meta {
  font-size: 14px;
  color: #555;
}

.post-by {
  font-size: 14px;
}

.post-by a {
  color: #333;
  text-decoration: none;
}

.post-by a:hover {
  text-decoration: underline;
}


/* CTA Section */
    .cta-section {
      position: relative;
      background: #ffc928;
      text-align: center;
      padding: 80px 20px;
      overflow: hidden;
      z-index: -1;
    }

    /* Top curve */
    /*.cta-section::before {*/
    /*  content: "";*/
    /*  position: absolute;*/
    /*  top: -1px;*/
    /*  left: 0;*/
    /*  width: 100%;*/
    /*  height: 80px;*/
    /*  background: url("../blog-images/wave-bottom.svg") no-repeat top center;*/
    /*  background-size: cover;*/
    /*}*/

    /* Bottom curve */
    /*.cta-section::after {*/
    /*  content: "";*/
    /*  position: absolute;*/
    /*  bottom: -1px;*/
    /*  left: 0;*/
    /*  width: 100%;*/
    /*  height: 80px;*/
    /*  background: url("../blog-images/wave.svg") no-repeat bottom center;*/
    /*  background-size: cover;*/
    /*}*/

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-content h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 30px;
      line-height: 1.4;
    }

    .cta-form {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .cta-form input[type="email"] {
      padding: 15px;
      border-radius: 8px;
      border: none;
      outline: none;
      flex: 1;
      min-width: 250px;
      font-size: 1rem;
    }

    .cta-form button {
      padding: 15px 25px;
      border: none;
      border-radius: 8px;
      background: #0056ff;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .cta-form button:hover {
      background: #003bb5;
    }

    .cta-note {
      font-size: 0.9rem;
      color: #111;
      opacity: 0.85;
    }

    /* Responsive */
    @media (min-width: 768px) {
      .cta-content h2 {
        font-size: 2.5rem;
      }
    }

/*------------------------------------------------------------------------------
Case Studies page
------------------------------------------------------------------------*/


.case-studies{
    margin: 4rem 0rem 0rem;
}

.case-studies-section{
    padding: 8rem 0px;
    background: url("../images/team-bg.webp") no-repeat bottom center;
    background-size: cover;
}

    /* Section Header */
    .case-studies-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .case-studies-header span {
      background: #fff4cc;
      color: #f9a825;
      font-size: 14px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 12px;
    }
    
    .case-studies-header h1 {
    font-size: 40px;
    font-weight: 700;
    /*line-height:140px;*/
}

    .case-studies-header h2 {
      font-size: 32px;
      font-weight: 700;
    }

    /* Search */
    .case-studies-search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 30px auto;
    max-width: 600px;
    width: 100%;
}

.case-studies-search-box input {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #eee;
    border-right: none;
    border-radius: 8px 0px 0px 8px;
    outline: none;
    transition: 0.3s ease;
    background: #fff;
}

.case-studies-search-box input:focus {
    border-color: #ed7a21;
    box-shadow: 0 0 0 3px rgba(237,122,33,0.15);
}

.case-studies-search-box button {
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ed7a21, #ff9a3c);
    color: #fff;
    border-radius: 0px 8px 8px 0px;
    font-weight: 600;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
}

.case-studies-search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(237,122,33,0.35);
}

.case-studies-search-box button:active {
    transform: scale(0.97);
}

    
    

    /* Filters */
    .case-studies-filters {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      border-bottom: 1px solid #eee;
      padding-bottom: 20px;
      margin-bottom: 30px;
    }

    .case-studies-filter-tabs {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .case-studies-filter-tabs button {
      border: none;
      background: none;
      font-size: 14px;
      font-weight: 500;
      color: #666;
      padding: 6px 12px;
      cursor: pointer;
      border-radius: 20px;
      transition: 0.3s;
    }

    .case-studies-filter-tabs button.active,
    .case-studies-filter-tabs button:hover {
      background: #000000;
      color: #fff;
    }

    .case-studies-filter-sort select {
      padding: 6px 12px;
      border-radius: 8px;
      border: 1px solid #ddd;
      font-size: 15px;
    }

    /* Blog Grid */
    .case-studies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .case-studies-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 12px;
      overflow: hidden;
      transition: 0.3s;
      display: flex;
      flex-direction: column;
    }

    .case-studies-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .case-studies-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 10px;
    }

    .case-studies-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .case-studies-meta {
      font-size: 13px;
      color: #f9a825;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .case-studies-content h3 {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 10px;
      color: #f9a825;
    }

    .case-studies-content p {
      flex: 1;
      font-size: 15px;
      color: #555;
      margin-bottom: 15px;
    }

    .read-more {
      text-decoration: none;
      background: #f9a825;
      color: #fff;
      font-size: 14px;
      padding: 10px 16px;
      border-radius: 8px;
      display: inline-block;
      font-weight: 500;
      align-self: flex-start;
      transition: 0.3s;
    }

    .read-more:hover {
      background: #d18e00;
    }

    /* Newsletter Box */
    .newsletter-card {
      background: #fff8e6;
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      border: 1px solid #ffd580;
    }

    .newsletter-card h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .newsletter-card p {
      font-size: 14px;
      margin-bottom: 20px;
      color: #555;
    }

    .newsletter-card input {
      width: 100%;
      padding: 10px;
      border-radius: 8px;
      border: 1px solid #ddd;
      margin-bottom: 15px;
      font-size: 15px;
    }

    .newsletter-card button {
      width: 100%;
      padding: 10px;
      border-radius: 8px;
      border: none;
      background: #f9a825;
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    .newsletter-card button:hover {
      background: #d18e00;
    }

    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
    }

    .pagination button {
      border: 1px solid #ddd;
      background: #fff;
      color: #333;
      padding: 8px 14px;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
    }

    .pagination button.active,
    .pagination button:hover {
      background: #f9a825;
      color: #fff;
      border-color: #f9a825;
    }
/* Responsive */
    @media (max-width: 768px) {
      .case-studies-filter-tabs {
        gap: 0;
      }
    }
    
/*--------------------------------------------------------------------------
    Case Details Page
----------------------------------------------------------------*/
    
.case-study-details {
  font-family: 'Poppins', sans-serif;
  padding: 80px 0px;
  background: #fff;
  color: #222;
}

/* Hero Section */
.case-study-details .hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.case-study-details .hero-text {
  flex: 1;
  min-width: 300px;
  animation: fadeInLeft 1s ease;
}
.case-study-details .hero-text h1 {
  font-size: 3.3rem;
  font-weight:600;
}
.case-study-details .hero-text p {
  margin-bottom: 20px;
  color: #555;
}
.hero-btns {
  display: flex;
  gap: 15px;
}
.btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  background: none;
}
.btn.primary {
  background: #ffb703;
  color: #fff;
}
.btn.primary:hover {
  background: #fb8500;
}
.btn.secondary {
  border: 2px solid #ffb703;
  color: #ffb703;
}
.btn.secondary:hover {
  background: #ffb703;
  color: #fff;
}
.hero-img img {
  width: 540px;
  height:450px;
  border-radius: 20px;
  animation: zoomIn 1s ease;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin: 60px 0;
  flex-wrap: wrap;
}
.stat-box {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  padding: 20px;
  border-radius: 15px;
  background: #f9f9f9;
  transition: transform 0.3s;
}
.stat-box:hover {
  transform: translateY(-8px);
}

/* About Client */
.about-client {
  display: flex;
  gap: 30px;
  align-items: center;
  /*flex-wrap: wrap;*/
  margin-bottom: 50px;
}
.client-img img {
  max-width: 540px;
  height:700px;
  border-radius: 20px;
}

.client-text h2 {
  font-size: 1.8rem;
  font-weight:700;
  margin: 15px 0 15px;
  line-height: 36px;
  letter-spacing:0.2px;
  color: #183B56;
}

.client-text h3 {
  color: #ffb703;
  font-size: 1.3rem;
  /*margin: 25px 0 15px;*/
  line-height: 20px;
  letter-spacing:0.2px;
  color: #183B56;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-text p {
  margin-bottom: 20px;
    margin-top: 10px;
    font-weight: 400;
    font-size: 1rem;
    color: #5A7184;
    line-height: 25px;
    
}

.client-text ul {
  margin: 0px 0 0px 20px;
  padding: 0;
}

.client-text ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}
/*.client-text h3 {*/
/*  color: #ffb703;*/
/*  margin-bottom: 10px;*/
/*}*/

/* Objective + Solution */
.objective-solution {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.objective, .solution {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background: #fefae0;
  border-radius: 15px;
  transition: 0.3s;
}
.objective:hover, .solution:hover {
  transform: translateY(-6px);
}

/* Challenges */
.challenges {
  margin-bottom: 50px;
}
.challenges h3 {
  margin-bottom: 15px;
}
.challenges ul {
  list-style: disc;
  padding-left: 20px;
  color: #444;
}

/* Metrics */
.metrics {
  margin-bottom: 60px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.metric-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}
.metric-card:hover {
  transform: scale(1.05);
}

/* Services */
.services {
  margin-bottom: 50px;
}
.services ul {
  list-style: none;
  padding: 0;
}
.services li {
  background: #fefae0;
  margin: 10px 0;
  padding: 12px;
  border-radius: 12px;
}

/* Conclusion */
.conclusion {
  padding: 30px;
  background: #f9f9f9;
  border-radius: 15px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; }
  .hero-img img { margin-top: 20px; }
  .objective-solution { flex-direction: column; }
  .about-client { flex-direction: column; text-align: center; }
}

/*------------------------------------------------------------------------------
                Public Service page
-------------------------------------------------------------------------*/

.megahoran { top: 50%; left: 50%; width: 80px; height: 180px; animation-delay: 0s;}
.layer1{ top: 48%; right: -10%; width: 75px; height: 75px; animation-delay: 2s; }
.object { top: 10%; width: 8%; height: 20%; right: 40%; animation-delay: 4s; }
.mic { bottom: 0%; right: -4%; width: 4%; height: 22%; animation-delay: 1s; }
.news { bottom: 70%; right: -7%; width: 7%; height: 15%; animation-delay: 1s; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}


.pr-services-section {
  background-color: #101010;
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.pr-services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.pr-services-header h2 {
    
  font-size: 3.5rem;
  color: #ffb81c;
    font-weight: 600;
    color: #fec214;
    position: relative;
    z-index: 1;
}

.corner-logo {
  width: 60px;
  height: auto;
}

.pr-services-content {
  display: flex;
  align-items: stretch; /* equal height */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.image-box {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-box img {
  width: 100%;
  max-width: 100%;
  border-radius: 25px;
  /*object-fit: cover;*/
  height: 100%;
}

.services-list {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* --- PR Service Card --- */
.pr-service-card {
  background: #1a1a1a;
  padding: 20px 25px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1rem;
}

.pr-service-card .text h3{
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.pr-service-card i {
  font-size: 1.6rem;
  color: #ffb81c;
}

.pr-service-card h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #fff;
}

.pr-service-card p {
  margin: 0;
  color: #bfbfbf;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    
    .pr-services-header h2 {
    
  font-size: 2.5rem;
    }
  .pr-services-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-box img {
    max-width: 100%;
    height: auto;
  }

  .services-list {
    height: auto;
    width: 100%;
  }

  .pr-service-card {
    text-align: left;
    justify-content: flex-start;
  }
}


/*------------------------------------------------------------------------------
                PPC ROI Calculator
----------------------------------------------------------------------- */

.ppc-calculator {
  padding: 8rem 2rem;
  background: url("../images/team-bg.webp") center/cover no-repeat;
  background-color:#fff9e8;
  width: 100%;
}

.ppc-calculator .container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.header {
  text-align: center;
}

.header h2 {
  font-size: 3.5rem;
  color: #FEC214;
  margin-bottom: 10px;
}

.header p {
  font-size: 1rem;
  color: #555;
}

/* Calculator */
.calculator {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #ffb703;
  outline: none;
}

/* Button */
.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/*button {*/
/*  background-color: #ffb703;*/
/*  color: #fff;*/
/*  border: none;*/
/*  padding: 12px 30px;*/
/*  border-radius: 8px;*/
/*  font-size: 1.1rem;*/
/*  cursor: pointer;*/
/*  transition: background 0.3s;*/
/*}*/

/*button:hover {*/
/*  background-color: #e6a500;*/
/*}*/

/* Results */
#results {
  margin-top: 30px;
  font-size: 1.1rem;
  color: #222;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .ppc-calculator{
        padding: 80px 0px;
}
  .calculator-grid {
    grid-template-columns: 1fr;
  }
}


/*------------------------------------------------------------------------------
                SEO ROI Calculator
----------------------------------------------------------------------- */

.seo-roi-calculator {
    padding: 8rem 2rem;
    background: url("../images/team-bg.webp") center/cover no-repeat;
    background-color:#fff9e8;
    width: 100%;
}

.seo-roi-calculator .container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.header {
  text-align: center;
}

.header h2 {
  font-size: 3.5rem;
  color: #FEC214;
  margin-bottom: 10px;
}

.header p {
  font-size: 1rem;
  color: #555;
}

/* Calculator */
.calculator {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 100%;
}

.input-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 45%;
}

.input-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.input-group input {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-color: #ffb703;
  outline: none;
}

/* Button */
.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/*button {*/
/*  background-color: #ffb703;*/
/*  color: #fff;*/
/*  border: none;*/
/*  padding: 12px 30px;*/
/*  border-radius: 8px;*/
/*  font-size: 1.1rem;*/
/*  cursor: pointer;*/
/*  transition: background 0.3s;*/
/*}*/

/*button:hover {*/
/*  background-color: #e6a500;*/
/*}*/

/* Result */
#result {
  margin-top: 30px;
  font-size: 1.1rem;
  color: #222;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
.seo-roi-calculator{
        padding: 80px 0px;
}
  .calculator-grid {
    flex-direction: column;
  }
}

/* ====== Term & Condition Section ====== */
.terms-section {
  padding: 80px 20px;
  background-color: #fafafa;
  color: #222;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
}

.terms-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.terms-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.terms-header h1 {
  font-size: 2rem;
  color: #111;
}

.terms-header p {
  font-size: 1rem;
  max-width: 750px;
  color: #555;
}

.terms-content {
  display: grid;
  gap: 2rem;
}

.terms-content article h2 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 0.6rem;
  position: relative;
}

.terms-content article h2::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #ffb703;
  bottom: -6px;
  left: 0;
  border-radius: 2px;
}

.terms-content p,
.terms-content li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.6rem;
}

.terms-content ul {
  list-style: disc inside;
  padding-left: 10px;
}

.terms-content a {
  color: #ffb703;
  text-decoration: none;
}

.terms-content a:hover {
  text-decoration: underline;
}

/* ====== Responsive Design ====== */
@media (max-width: 768px) {
  .terms-header h1 {
    font-size: 1.6rem;
  }

  .terms-content article h2 {
    font-size: 1.2rem;
  }

  .terms-section {
    padding: 50px 15px;
  }
}


/* ====== Privacy Policy Section ====== */
.privacy-section {
  background: #fafafa;
  color: #222;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
}

.privacy-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.privacy-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-header h1 {
  font-size: 2rem;
  color: #111;
}

.privacy-header p {
  color: #555;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content {
  display: grid;
  gap: 2rem;
}

.privacy-content article {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.privacy-content article:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.privacy-content h2 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 0.5rem;
  position: relative;
}

.privacy-content h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #ffb703;
  margin-top: 6px;
  border-radius: 2px;
}

.privacy-content p {
  color: #555;
  font-size: 1rem;
  margin-top: 0.6rem;
}

.privacy-content ul {
  margin-top: 0.6rem;
  padding-left: 20px;
}

.privacy-content li {
  margin-bottom: 0.4rem;
  color: #555;
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 50px 15px;
  }

  .privacy-header h1 {
    font-size: 1.6rem;
  }

  .privacy-content article {
    padding: 20px;
  }

  .privacy-content h2 {
    font-size: 1.2rem;
  }
}

/* ================================
   New Modern Team Section
================================= */

/* MAIN GRID */
.newteam-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 80px;
  /*align-items: start;*/
  justify-content: center;       /* center align full grid */
    justify-items: center;         /* center align each item */
}

@media (max-width: 1024px) {
  .newteam-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .newteam-grid {
    grid-template-columns: repeat(2, 1fr);
    gap:25px
  }
}

/* CARD */
.newteam-card {
  text-align: center;
}

/* IMAGE WRAPPER */
.newteam-img {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
}

/* GHOST IMAGE */
.team-ghost {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*opacity: 0.35;*/
  filter: grayscale(100%);
}

/* REAL IMAGE */
.team-real {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.3s ease;
}

/* HOVER REAL IMAGE */
.newteam-img:hover .team-real {
  opacity: 1;
}

.newteam-img:hover .team-ghost {
  opacity: 0;
}

/* LINKEDIN ICON */
.newteam-icons {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.3s ease;
}

.newteam-icons a {
  color: #0A66C2;
  font-size: 28px;
}

/* HOVER SHOW ICON */
.newteam-img:hover .newteam-icons {
  opacity: 1;
}

/* TEXT */
.team-name {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

.team-role {
  font-size: 13px;
  color: #777;
  margin: 0;
}


/* Thank You Section */
.thank_you {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  text-align: center;
  padding: 2rem;
  color: #222;
}

.thank_you h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fec214;
  margin-bottom: 1.5rem;
}

.thank_you p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

.thank_you strong {
  color: #000;
  font-size: 1.3rem;
  font-weight: 600;
}

.thank_btn {
  display: inline-block;
  margin-top: 2rem;
  background-color: #fec214;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.thank_btn:hover {
  background-color: #fec214;
  color:#ffffff;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 600px) {
  .thank_container {
    padding: 2rem 1.5rem;
  }
  .thank_container h1 {
    font-size: 1.6rem;
  }
  .thank_container p {
    font-size: 0.95rem;
  }
}


#scrollTopBtn {
    position: fixed;
    bottom: 55px;
    right: 35px;
    width: 56px;
    height: 53px;
    border-radius: 50%;
    background: #fec214;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

/* Arrow Icon */
#scrollTopBtn i {
    font-size: 22px;
    color: #000;
    position: absolute;
    z-index: 2;
}

/* Circle progress (thin stroke) */
.progress-ring__circle {
    stroke: #000;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 0.15s ease-out;
    stroke-width: 2; /* thinner */
}

/* ---------- Responsive Fix ---------- */

@media (max-width: 600px) {
    #scrollTopBtn {
        display:none;
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    #scrollTopBtn i {
        font-size: 18px;
    }

    .progress-ring {
        width: 50px;
        height: 50px;
    }

    .progress-ring__circle {
        r: 22; /* smaller radius for mobile */
    }
}


/* WhatsApp floating button */

.whatsApp {
    display:none;
  position: fixed;
  right: 35px;            /* distance from right edge */
  bottom: 125px;           /* distance from bottom edge */
  width: 62px;
  height: 62px;
  display: inline-block;
  border-radius: 50%;
}

.whatsApp .whts01 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  vertical-align: middle;
}

.whatsApp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}


.whatsApp:focus {
  outline: 3px solid rgba(37,211,102,0.25);
  outline-offset: 4px;
}


.whatsApp::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.35);
  animation: whatsPulse 2.6s infinite;
  opacity: 0.55;
}

@keyframes whatsPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.35); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0.06); }
  100% { box-shadow: 0 0 0 24px rgba(37,211,102,0); opacity: 0; }
}


@media (max-width: 600px) {
  .whatsApp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  .whatsApp::after { width: 52px; height: 52px; }
}

 /*hide on mobile entirely (uncomment if you want) */

@media (max-width: 768px) {
  .whatsApp {
    display: none !important;
  }
}

/*Three sticky buttons*/
/* Initially hide */
.sticky-contact {
    position: fixed;
    right: -120px;   /* hide outside screen */
    bottom: 180px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    transition: right 0.4s ease;
}

.sticky-contact img{
        width:30px;
        height:30px;
    }

/* When active (after scroll) */
.sticky-contact.show {
    right: 0;
}


.sc-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 8px;
    border-radius: 0px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.sc-btn span {
    display: none;
}

.sc-btn:hover span {
    color:#000000;
}


.whatsapp { background: #ffffff; }
.call { background: #ffffff; }
.chat { background: #ffffff; }

/* Mobile View */
@media(max-width:768px){
    .sticky-contact {
        flex-direction: row;
        /*bottom: 0;*/
        right: 0;
        width: 100%;
        justify-content: space-around;
        /*padding: 10px 0;*/
        /*background: #111;*/
        gap:0px;
        bottom: -80px;   /* hide below screen */
        transition: bottom 0.4s ease;
    }
    
    .sticky-contact img{
        width:40px;
        height:40px;
    }

    .sticky-contact.show {
        bottom: 0;
    
    }
    
    
    .sc-btn {
        width: 34%;
        border-radius: 0px;
        flex-direction: column;
        font-size: 14px;
        padding: 8px 10px;
        gap:6px;
    }
    .sc-btn span {
        display: block;
    }
}

/* =====================================================
   INDUSTRY COMMON CSS (For All Industry Pages)
   Use body class like:
===================================================== */


/* ================= HERO SECTION ================= */
.bfsi {
    background: url("../images/industry/bfsi-banner.webp") no-repeat center center/cover;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.education {
    background: url("../images/industry/education-banner.jpg") no-repeat center center/cover;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.health {
    background: url("../images/industry/health-banner.jpg") no-repeat center center/cover;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

/* Dark overlay for readability */
.industry-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 40%, rgba(0, 25, 50, 0.85) 80%);
    opacity: 1; /* keep 1 because opacity already handled in rgba */
}


.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 750px;
}

.industry-hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight:700;
}

.industry-hero h1 span {
    color: #ffc107;
}

.industry-hero p {
    font-size: 17px;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons a:hover {
    color:000;
}

.btn-primary {
    background: #ffc107;
    color: #000;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
}

.btn-outline {
    border: 2px solid #fff;
    padding: 12px 22px;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
}

.industry-intro {
    padding: 70px 0;
    background: #ffffff;
}

.industry-intro .container {
    
    margin: 0 auto;
    text-align: center;
}

.industry-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Subtle section separator line */
.industry-intro::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #ffc107;
    margin: 40px auto 0;
    border-radius: 5px;
}

.industry-importance {
    padding: 80px 0;
    background: #f4f7fb;
}



.industry-importance h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #0b1c2d;
}

.industry-importance p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.industry-challenges-modern {
    padding: 60px 0;
    background: linear-gradient(180deg,#ffffff,#f4f9ff);
}

.industry-challenges-modern h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #0c2239;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align:left;
}

.industry-challenges-modern p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.healthcare-challenges {
    background: #f4f6f9;
    padding: 80px 0;
}


/* Responsive */
@media (max-width: 768px) {
    .industry-challenges-modern h2 {
    font-size: 26px;
    }
}



.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: #0c2239;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align:left;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.challenge-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.challenge-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    transition: 0.3s ease;
}

.challenge-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    color: #ffc107;
}

.challenge-list li:hover {
    transform: translateX(5px);
    color: #000;
}

.section-description {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .section-subtitle,
    .section-description,
    .challenge-list li {
        font-size: 15px;
    }
}


/* Feature Rows */
.challenge-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

.point {
    background: #ffffff;
    padding: 18px 25px 18px 55px;
    border-radius: 50px;
    font-size: 16px;
    text-align: left;
    line-height: 1.6;
    position: relative;
    box-shadow: 0 5px 18px rgba(0, 60, 120, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e6eef7;
}

/* Check Circle */
.point::before {
    content: "✔";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fec214;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s;
}

/* Hover Effect */
.point:hover {
    background: #333333;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 60, 120, 0.15);
}

.point:hover::before {
    background: #ffc107;
    color: #000;
}

.bottom-note {
    margin-top: 35px;
    font-weight: 500;
}
@media(max-width:768px){
    .point {
        font-size: 15px;
        border-radius: 20px;
        padding-left: 50px;
    }
}

.industry-services {
    padding: 90px 0;
    background: #ffffff;
}

.industry-services .container {
    max-width: 1200px;
    margin: auto;
}

.industry-services h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #0c2239;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align:left;
}

.industry-services > .container > p {
   
    margin: 0 auto 15px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 50px;
}

/* Service Card */
.service-box {
    background: #f8fbff;
    border-radius: 14px;
    padding: 35px;
    border: 1px solid #e6eef7;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Accent top border */
.service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #FEC317;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 60, 120, 0.12);
    background: #ffffff;
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1b3b5f;
}

.service-box p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 12px;
}

.industry-benefits {
    padding: 90px 0;
    background: #f5f9ff;
}

.benefits-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-content h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #0c2239;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align:left;
}

.benefits-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Benefit Tags */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 25px;
}

.benefits-grid span {
    background: #ffc107;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.benefits-grid span:hover {
    background: #333333;
}

/* Bottom paragraph spacing */
.bottom-text {
    margin-top: 10px;
}

/* Image Styling */
.benefits-image img {
    width: 100%;
    border-radius: 12px;
    /*box-shadow: 0 10px 35px rgba(0,0,0,0.08);*/
}



@media(max-width:768px){
    .industry-hero { min-height: 420px;}
    .industry-hero h1{font-size:2rem;}
    .hero-inner{padding: 6rem 1rem 2rem;}
    .hero-text { max-width:100%; }
    .hero-buttons { justify-content:center; }
}

@media(max-width:768px){
    .industry-intro {
        padding: 50px 20px;
    }
    .industry-intro p {
        font-size: 15px;
    }
    .industry-services h2 {
    font-size: 2rem;
    }
    .benefits-content h2 {
    font-size: 2rem;
    }
}

@media(max-width:992px){
    .industry-importance .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    
}
@media(max-width:992px){
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:992px){
    .benefits-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-grid {
        justify-content: center;
    }
}



