
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
line-height:1.6;
color:#111;
}

/* CONTAINER */

.container{
width:90%;
max-width:1200px;
margin:auto;
}






/* Glossy gray background */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #d3d3d3, #a9a9a9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  /* Animated loader container */
  .loader {
    display: flex;
    gap: 15px;
  }

  /* Individual bars */
  .loader span {
    display: block;
    width: 15px;
    height: 60px;
    background: navy;
    border-radius: 10px;
    animation: bounce 1s infinite ease-in-out;
  }

  .loader span:nth-child(2) {
    animation-delay: 0.2s;
    background: black;
  }
  .loader span:nth-child(3) {
    animation-delay: 0.4s;
    background: gray;
  }
  .loader span:nth-child(4) {
    animation-delay: 0.6s;
    background: white;
  }

  /* Bounce animation */
  @keyframes bounce {
    0%, 100% {
      transform: scaleY(0.4);
      opacity: 0.6;
    }
    50% {
      transform: scaleY(1);
      opacity: 1;
    }
  }



/* =========================
   TOP BAR
========================= */
.topbar {
  background:  #164580 ;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  font-size: 14px;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar i {
  margin-right: 8px;
  color: #fff;
}

.topbar a:hover {
  color: #fff;
  transition: 0.3s;
}

/* Hide Topbar on Mobile */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}



/* NAVBAR */
/* =========================
   NAVBAR BASE
========================= */

.logo img {
  width: 100px;
  height: 40px;
  object-fit: contain;
}






.bf-navbar{
  background:#fff;
  padding:15px 20px;
  position:sticky;
  top:0;
  z-index:999;
}

.bf-nav-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.bf-logo{
  color:#000;
  font-size:22px;
  font-weight:600;
}

/* =========================
   MENU
========================= */
.bf-nav-menu{
  list-style:none;
  display:flex;
  gap:30px;
}

.bf-nav-menu li{
  position:relative;
}

.bf-nav-menu a{
  color:#000;
  text-decoration:none;
  padding:8px 0;
  display:block;
  transition:0.3s;
}

.bf-nav-menu a:hover{
  color:#aaa;
}

/* =========================
   DROPDOWN MAIN
========================= */
.bf-dropdown-menu{
  position:absolute;
  top:100%; /* FIX GAP */
  left:0;
  background:#fff;
  min-width:220px;
  border-radius:8px;
  padding:8px 0;
  box-shadow:0 10px 30px rgba(0,0,0,0.6);

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.25s ease;
}

/* SHOW MAIN */
.bf-dropdown:hover .bf-dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* =========================
   SUB MENU
========================= */
.bf-sub-menu{
  position:absolute;
  top:0;
  left:100%;
  background:#000;
  min-width:200px;
  border-radius:8px;
  padding:8px 0;

  opacity:0;
  visibility:hidden;
  transform:translateX(10px);
  transition:0.25s ease;
}

/* SHOW SUB */
.bf-sub-dropdown:hover .bf-sub-menu{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}

/* =========================
   MENU ITEMS
========================= */
.bf-dropdown-menu a,
.bf-sub-menu a{
  padding:10px 18px;
  display:block;
}

.bf-dropdown-menu a:hover,
.bf-sub-menu a:hover{
  background:#222;
}

/* =========================
   HOVER FIX (NO FLICKER)
========================= */
.bf-dropdown-menu::before{
  content:"";
  position:absolute;
  top:-10px;
  left:0;
  width:100%;
  height:10px;
}

/* =========================
   MOBILE
========================= */
.bf-menu-toggle{
  display:none;
  font-size:24px;
  color:#000;
  cursor:pointer;
}

@media(max-width:768px){

  .bf-menu-toggle{
    display:block;
  }

  .bf-nav-menu{
    position:absolute;
    top:60px;
    right:0;
    background:#fff;
    width:240px;
    flex-direction:column;
    padding:20px;
    display:none;
  }

  .bf-nav-menu.active{
    display:flex;
  }

  /* RESET DROPDOWN */
  .bf-dropdown-menu,
  .bf-sub-menu{
    position:static;
    transform:none;
    opacity:1;
    visibility:visible;
    display:none;
    box-shadow:none;
    padding-left:10px;
  }

  .bf-dropdown.active .bf-dropdown-menu{
    display:block;
  }

  .bf-sub-dropdown.active .bf-sub-menu{
    display:block;
  }
}








/* ========================= */
/* HERO */
/* ========================= */

/* HERO SECTION */
.hero{
  width: 100%;
  min-height: 100vh;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 100px 8%;

  background:linear-gradient(135deg, #000000, #0f2027, #203a43);
  position: relative;
  overflow: hidden;
  gap: 60px;
}

/* BLUR EFFECTS */
.hero-blur{
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}

.blur-one{
  width: 300px;
  height: 300px;
  background: #2563eb;
  top: -80px;
  left: -80px;
}

.blur-two{
  width: 350px;
  height: 350px;
  background: #3b82f6;
  bottom: -100px;
  right: -100px;
}

/* LEFT CONTENT */
.hero-content{
  flex: 1;
  position: relative;
  z-index: 2;
}

/* TAG */
.hero-tag{
  display: inline-block;

  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);

  padding: 10px 20px;
  border-radius: 50px;

  color: #93c5fd;
  font-size: 14px;
  margin-bottom: 25px;

  backdrop-filter: blur(10px);
}

/* HEADING */
.hero-content h1{
  font-size: 64px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 700;
}

/* PARAGRAPH */
.hero-content p{
  font-size: 18px;
  line-height: 1.8;
  color: #cbd5e1;

  max-width: 650px;
  margin-bottom: 40px;
}

/* BUTTONS */
.hero-buttons{
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

/* PRIMARY BUTTON */
.btn-primary{
  background:linear-gradient(135deg, #000000, #164580, #000000);
  color: #fff;

  text-decoration: none;
  padding: 16px 34px;

  border-radius: 10px;
  font-weight: 600;

  transition: 0.3s;
}

.btn-primary:hover{
  background: #1d4ed8;
  transform: translateY(-3px);
}

/* SECONDARY BUTTON */
.btn-secondary{
  border: 1px solid rgba(255,255,255,0.2);

  color: #fff;
  text-decoration: none;

  padding: 16px 34px;
  border-radius: 10px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-secondary:hover{
  background: rgba(255,255,255,0.08);
}

/* STATS */
.hero-stats{
  display: flex;
  gap: 40px;
}

.stat-box h2{
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 5px;
}

.stat-box span{
  color: #94a3b8;
  font-size: 15px;
}

/* RIGHT IMAGE */
.hero-image{
  flex: 1;
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center;
}

.hero-image img{
  width: 100%;
  max-width: 650px;

  animation: float 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float{

  0%{
    transform: translateY(0px);
  }

  50%{
    transform: translateY(-15px);
  }

  100%{
    transform: translateY(0px);
  }

}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px){

  .hero{
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
  }

  .hero-content p{
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons{
    justify-content: center;
  }

  .hero-stats{
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-content h1{
    font-size: 52px;
  }

  .hero-image img{
    max-width: 500px;
  }

}

@media (max-width: 768px){

  .hero{
    padding: 120px 5%;
  }

  .hero-content h1{
    font-size: 40px;
  }

  .hero-content p{
    font-size: 16px;
  }

  .hero-buttons{
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary{
    width: 100%;
    max-width: 280px;
  }

  .hero-image img{
    max-width: 100%;
  }

}

@media (max-width: 480px){

  .hero-content h1{
    font-size: 32px;
  }

  .hero-tag{
    font-size: 12px;
  }

  .stat-box h2{
    font-size: 28px;
  }

}














/* BUTTONS */

.btn-primary{
background:#fff;
color:#000;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.btn-outline{
border:1px solid #fff;
color:#fff;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
}

.btn-dark{
background:#000;
color:#fff;
padding:10px 20px;
border:none;
margin-top:15px;
}

.btn-outline-1{
background:#000;
color:#fff;
padding:15px 20px;
border:1px solid white;
margin-top:15px;
text-decoration: none;
border-radius: 5px;
}


/* TRUSTED */

/* TRUSTED SECTION */

.trusted{
padding:20px 20px;
background: none;
text-align:center;
}

.trusted h2{
margin-bottom:40px;
font-size:28px;
}

.trusted-logos{
display:flex;
justify-content:center;
align-items:center;
gap:60px;
flex-wrap:wrap;
animation:slide 10s linear infinite;
}

.trusted-logos img{
width:90px;
opacity:0.7;
transition:0.3s;
}

.trusted-logos img:hover{
opacity:1;
transform:scale(1.1);
}

/* ABOUT */

.about{
padding:80px 0;
}
.about .btn-dark{
    text-decoration: none;
    border-radius: 4px;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about img{
width:100%;
max-width:350px;
height: auto;
}

.about p{
  text-align: left;
}
/* SERVICES */
#services{
  padding:80px 0;
  background-color: #f9fafb;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:40px;
}

.card{
  padding:30px 25px;
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s ease-in-out;
  border:1px solid transparent;
  height:100%;
}

.card-link{
  text-decoration:none;
  color:inherit;
  display:block;
}

.service-icon{
  width:55px;
  height:55px;
  background:linear-gradient(135deg,#000,#615f5f);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  margin-bottom:18px;
  color:white;
  font-size:22px;
  transition:0.3s ease-in-out;
}

.card h3{
  margin-bottom:10px;
  font-size:18px;
  font-weight:600;
  color:#111827;
}

.card p{
  font-size:14px;
  color:#6b7280;
  line-height:1.6;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
  border-color:#000;
}

.card:hover .service-icon{
  transform:scale(1.15) rotate(3deg);
}











/* =========================
   IMAGE + CONTENT SECTION
========================= */
.image-content-section {
  background: #fff;
  padding: 80px 0;
}

.image-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Image Box */
.image-box img {
  width: 100%;
  border-radius: 200px;
  object-fit: cover;
  
  transition: 0.3s ease;
}

.image-box img:hover {
  transform: scale(1.02);
}

/* Content Box */
.content-box h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}

.content-box p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn-prim{
  background:linear-gradient(135deg, #000000, #164580, #000000);
  color: #fff;

  text-decoration: none;
  padding: 16px 34px;

  border-radius: 10px;
  font-weight: 600;

  transition: 0.3s;
}

.btn-prim:hover{
  background: #1d4ed8;
  transform: translateY(-3px);
}
/* Responsive */
@media (max-width: 1024px) {
  .content-box h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .image-content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .content-box h2 {
    font-size: 28px;
  }

  .content-box .btn {
    display: inline-block;
  }
}





/* =========================
   SECTION COMMON
========================= */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
}

.section-title p {
  margin-top: 10px;
  color: #64748b;
  font-size: 16px;
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
  padding: 90px 0;
  background: linear-gradient(120deg, #f8fafc, #ffffff);
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* =========================
   LEFT SIDE CONTENT
========================= */
.about-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #164580;
  background: rgba(2, 132, 199, 0.08);
  padding: 8px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.about-heading {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #0f172a;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 25px;
  max-width: 560px;
}

/* Bullet Points */
.about-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.about-list li {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-list i {
  width: 36px;
  height: 36px;
  background: rgba(2, 132, 199, 0.12);
  color: #164580;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 14px;
  background:linear-gradient(135deg, #000000, #1e3453, #000000) ;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #0369a1;
  transform: translateY(-3px);
}

/* =========================
   RIGHT SIDE STATS GRID
========================= */
.about-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-7px);
  border-color: #38bdf8;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* Icon */
.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(2, 132, 199, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.stat-icon i {
  font-size: 18px;
  color: #0284c7;
}

.stat-card h3 {
  font-size: 30px;
  font-weight: 900;
  color: #0f172a;
}

.stat-card p {
  margin-top: 6px;
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

/* =========================
   SIMPLE CSS FADE ANIMATION
========================= */
.about-left,
.about-right {
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    margin-left: auto;
    margin-right: auto;
  }

  .about-list li {
    justify-content: center;
  }

  .about-right {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .about-heading {
    font-size: 30px;
  }

  .about-right {
    grid-template-columns: 1fr;
  }

  .stat-card h3 {
    font-size: 26px;
  }
}




/* =========================
   PROCESS SECTION (DARK STYLE)
========================= */
.process-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #000000, #1e3453, #000000);
  color: white;
}

.process-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.process-heading {
  margin-bottom: 50px;
}

.process-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.process-heading h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  color: white;
}

/* Steps Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

/* Step Card */
.process-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 22px;
  transition: 0.3s ease;
  min-height: 220px;
}

.process-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.process-card h4 {
  font-size: 18px;
  font-weight: 900;
  color: #38bdf8;
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 12px;
  color: white;
}

.process-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* Bottom CTA Bar */
.process-cta {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-left p {
  color: #e2e8f0;
  font-size: 14px;
}

.cta-left b {
  color: #38bdf8;
}

/* User Images */
.cta-users {
  display: flex;
  align-items: center;
}

.cta-users img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin-left: -10px;
}

.cta-users img:first-child {
  margin-left: 0;
}

/* CTA Button */
.cta-btn {
  background:none;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-btn:hover {
  background: #0ea5e9;
  transform: translateY(-4px);
}

.cta-btn span {
  font-size: 16px;
  font-weight: 900;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 70px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-heading h2 {
    font-size: 28px;
  }

  .process-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}


/* =========================
   WHY PEOPLE CHOOSE US SECTION
========================= */
.choose-us {
  padding: 80px 0;
  background: #ffffff;
}

.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

/* Left Content */
.choose-left .mini-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #0284c7;
  display: inline-block;
  margin-bottom: 10px;
}

.choose-left h2 {
  font-size: 42px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.choose-left h2 span {
  color: #164580;
}

.choose-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 25px;
  max-width: 500px;
}



/* Right Side Features */
.choose-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  position: relative;
  padding-left: 25px;
}

/* Vertical line like your image */
.choose-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 2px;
  height: 100%;
  background: #e2e8f0;
  border-radius: 10px;
}

/* Feature Box */
.feature-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  border-color: #38bdf8;
}

/* Icon Style */
.feature-box .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-box .icon i {
  font-size: 20px;
  color: #164580;
}

.feature-box h3 {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.feature-box p {
  font-size: 14px;
  margin-top: 6px;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .choose-left h2 {
    font-size: 34px;
  }

  .choose-right {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
  }

  .choose-right::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .choose-right {
    grid-template-columns: 1fr;
  }

  .choose-left h2 {
    font-size: 30px;
  }

  .choose-left {
    text-align: center;
  }

  .choose-left p {
    margin-left: auto;
    margin-right: auto;
  }
}



/* =========================
   INFOGRAPHICS SECTION
========================= */
.infographics-section {
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}

.infographic-container {
  position: relative;
}

/* Heading */
.infographic-heading {
  text-align: center;
  margin-bottom: 50px;
}

.infographic-heading h2 {
  font-size: 42px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 1px;
}

.infographic-heading h2 span {
  color: #111111; /* Black instead of Pink */
}

.infographic-heading p {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

/* =========================
   TOP ARROW LINE
========================= */
.top-arrow {
  width: 100%;
  max-width: 750px;
  margin: auto;
  position: relative;
  margin-bottom: 40px;
}

.dotted-line {
  width: 100%;
  height: 2px;
  border-top: 2px dashed #94a3b8;
  border-radius: 50%;
  transform: rotate(-5deg);
}

.arrow-head {
  position: absolute;
  right: -5px;
  top: -8px;
  width: 14px;
  height: 14px;
  border-top: 3px solid #111111;
  border-right: 3px solid #111111;
  transform: rotate(45deg);
}

/* =========================
   INFOGRAPHIC GRID
========================= */
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: start;
}

/* Box Style */
.info-box {
  text-align: center;
  position: relative;
}

.info-box h3 {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
}

.info-box p {
  margin-top: 10px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
}

/* Icon circle */
.icon-circle {
  margin-top: 12px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #111111;
  transition: 0.3s ease;
}

.icon-circle:hover {
  background: #111111;
  color: white;
  transform: translateY(-4px);
}

/* =========================
   PAPER PLANE SHAPES
========================= */
.paper-shape {
  width: 150px;
  height: 120px;
  margin: auto;
  clip-path: polygon(0% 50%, 60% 0%, 100% 40%, 50% 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  transition: 0.3s ease;
}

.paper-shape:hover {
  transform: translateY(-10px) scale(1.03);
}

/* Colors (same as image style) */
.paper-shape.gray {
  background: linear-gradient(135deg, #d9d9d9, #bdbdbd);
}

.paper-shape.dark {
  background: linear-gradient(135deg, #334155, #0f172a);
}

.paper-shape.light {
  background: linear-gradient(135deg, #b3d5e6, #6f8db0);
}

.paper-shape.black {
  background: linear-gradient(135deg, #111111, #444444); /* BLACK instead of PINK */
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .infographic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .infographic-heading h2 {
    font-size: 30px;
  }

  .infographic-grid {
    grid-template-columns: 1fr;
  }

  .paper-shape {
    width: 170px;
    height: 130px;
  }

  .top-arrow {
    display: none; /* Hide arrow line on mobile for clean view */
  }
}





/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials-section {
  padding: 90px 0;
  background: #ffffff;
}

.testimonials-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADING
========================= */
.testimonials-heading {
  text-align: center;
  margin-bottom: 55px;
}

.testimonials-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #0284c7;
  background: rgba(2, 132, 199, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.testimonials-heading h2 {
  font-size: 38px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.2;
}

.testimonials-heading p {
  max-width: 750px;
  margin: auto;
  font-size: 16px;
  color: #64748b;
  line-height: 1.8;
}

/* =========================
   SLIDER (CSS SCROLL SNAP)
========================= */
.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

/* Hide scrollbar for clean UI */
.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Card */
.testimonial-card {
  scroll-snap-align: start;
  min-width: 360px;
  max-width: 360px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: #38bdf8;
}

/* Stars */
.stars {
  font-size: 16px;
  color: #f59e0b;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

/* Review */
.review {
  font-size: 14.5px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 18px;
}

/* Client Name */
.client-name {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 4px;
}

.client-role {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

/* Scroll hint */
.scroll-hint {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .testimonial-card {
    min-width: 320px;
    max-width: 320px;
  }

  .testimonials-heading h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-heading h2 {
    font-size: 28px;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
    padding: 22px;
  }
}


/* =========================
   STATS SECTION
========================= */
.stats-section {
  padding: 90px 0;
  background:linear-gradient(135deg, #000000, #1e3453, #000000) ;
  color: white;
}

.stats-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Top Row */
.stats-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}

.stats-main h2 {
  font-size: 65px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stats-main p {
  margin-top: 6px;
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 600;
}

.stats-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 520px;
}

/* Profile */
.stats-profile {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.profile-img img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.profile-info h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 2px;
}

.profile-info span {
  font-size: 13px;
  color: #94a3b8;
}

/* Divider */
.stats-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 35px 0;
}

/* Bottom Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

/* Stat Box */
.stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 20px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Icon */
.stat-icon {
  width: 55px;
  height: 55px;
  margin: auto;
  border-radius: 16px;
  background: #164580;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.stat-icon i {
  font-size: 22px;
  color: #fff;
}

/* Number */
.stat-box h3 {
  font-size: 28px;
  font-weight: 900;
  color: white;
}

.stat-box p {
  margin-top: 8px;
  font-size: 13px;
  color: #cbd5e1;
  font-weight: 600;
}

/* suffix style */
.suffix {
  font-size: 18px;
  font-weight: 900;
  margin-left: 2px;
  color: #38bdf8;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1024px) {
  .stats-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stats-profile {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 70px 0;
  }

  .stats-main h2 {
    font-size: 50px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}







/* =========================
   CTA SECTION
========================= */
.cta {
  background:linear-gradient(135deg, #000000, #1e3453, #000000) ;
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: 34px;
  font-weight: 900;
}

.cta-content p {
  margin-top: 10px;
  font-size: 16px;
  color: #e2e8f0;
 
}

.btn-sec {
  display: inline-block;
  background: none ;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  border: 1px solid #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-sec:hover {
  background: #0b1220;
}



/*FAQs*/
/* ===== FAQ SECTION START ===== */

.faq-light-section{
  width:100%;
  padding:90px 8%;
  background:#f7f8fa;
  font-family:'Poppins',sans-serif;
}

.faq-light-container{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:70px;
  align-items:flex-start;
}

/* LEFT */

.faq-light-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 20px;
  background:#eef2f7;
  border:1px solid #dbe4f0;
  border-radius:50px;
  color:#4b5563;
  font-size:14px;
  font-weight:600;
  margin-bottom:28px;
}

.faq-light-badge i{
  color:#2563eb;
}

.faq-light-heading{
  font-size:72px;
  line-height:1.05;
  font-weight:800;
  color:#111827;
  margin-bottom:28px;
}

.faq-light-heading span{
  color:#7c8cff;
}

.faq-light-text{
  font-size:18px;
  line-height:1.9;
  color:#5b6472;
  max-width:520px;
  margin-bottom:45px;
}

/* CARD */

.faq-light-card{
  background:#fff;
  border:1px solid #e4e7ec;
  border-radius:22px;
  padding:40px 35px;
  box-shadow:0 10px 35px rgba(0,0,0,0.04);
  max-width:430px;
}

.faq-light-card h3{
  font-size:38px;
  color:#111827;
  margin-bottom:18px;
  font-weight:700;
}

.faq-light-card p{
  font-size:17px;
  line-height:1.9;
  color:#5b6472;
  margin-bottom:35px;
}

.faq-light-btn{
  display:inline-block;
  padding:16px 34px;
  background:#111827;
  color:#fff;
  text-decoration:none;
  border-radius:14px;
  font-size:17px;
  font-weight:600;
  transition:.4s;
}

.faq-light-btn:hover{
  background:#2563eb;
  transform:translateY(-5px);
}

/* FAQ */

.faq-light-item{
  background:#fff;
  border:1px solid #e4e7ec;
  border-radius:20px;
  padding:28px 30px;
  margin-bottom:24px;
  box-shadow:0 6px 25px rgba(0,0,0,0.03);
  transition:.4s;
}

.faq-light-item.active{
  border-color:#c7d2fe;
}

.faq-light-question{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  cursor:pointer;
}

.faq-light-question h4{
  font-size:30px;
  font-weight:700;
  color:#111827;
}

.faq-light-icon{
  width:42px;
  height:42px;
  background:#eef2ff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.faq-light-icon i{
  color:#4f46e5;
  font-size:15px;
}

.faq-light-answer{
  max-height:0;
  overflow:hidden;
  transition:all .4s ease;
  font-size:18px;
  line-height:1.9;
  color:#5b6472;
}

.faq-light-item.active .faq-light-answer{
  max-height:300px;
  margin-top:18px;
}

/* RESPONSIVE */

@media(max-width:991px){

  .faq-light-container{
    grid-template-columns:1fr;
    gap:55px;
  }

  .faq-light-card{
    max-width:100%;
  }

}

@media(max-width:768px){

  .faq-light-section{
    padding:70px 5%;
  }

  .faq-light-heading{
    font-size:42px;
  }

  .faq-light-text{
    font-size:16px;
  }

  .faq-light-card{
    padding:30px 25px;
  }

  .faq-light-card h3{
    font-size:28px;
  }

  .faq-light-question h4{
    font-size:20px;
  }

  .faq-light-answer{
    font-size:15px;
  }

}

@media(max-width:480px){

  .faq-light-heading{
    font-size:34px;
  }

  .faq-light-item{
    padding:22px 20px;
  }

  .faq-light-question h4{
    font-size:17px;
  }

}

/* ===== FAQ SECTION END ===== */




/* ===== INDUSTRIES SECTION START ===== */

.industries-section{
  width:100%;
  padding:90px 7%;
  background:#f7f9fc;
  font-family:'Poppins',sans-serif;
}

.industries-container{
  width:100%;
}

/* TOP */

.industries-top{
  text-align:center;
  max-width:700px;
  margin:auto;
  margin-bottom:55px;
}

.industries-badge{
  display:inline-block;
  padding:10px 22px;
  background:#e8eef7;
  color:#164580;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:22px;
}

.industries-heading{
  font-size:50px;
  line-height:1.2;
  font-weight:800;
  color:#111827;
  margin-bottom:18px;
}

.industries-heading span{
  color:#164580;
}

.industries-text{
  font-size:17px;
  line-height:1.8;
  color:#5b6472;
}

/* GRID */

.industries-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* CARD */

.industry-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:28px 18px;
  text-align:center;
  transition:.4s;
  box-shadow:0 8px 25px rgba(0,0,0,0.04);
  position:relative;
  overflow:hidden;
}

.industry-card::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:#164580;
  transform:scaleX(0);
  transition:.4s;
}

.industry-card:hover::before{
  transform:scaleX(1);
}

.industry-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(22,69,128,0.12);
}

/* ICON */

.industry-icon{
  width:70px;
  height:70px;
  margin:auto;
  margin-bottom:18px;
  border-radius:18px;
  background:#edf3fb;
  display:flex;
  align-items:center;
  justify-content:center;
  animation:float 3s ease-in-out infinite;
}

.industry-icon i{
  font-size:28px;
  color:#164580;
}

/* TEXT */

.industry-card h3{
  font-size:20px;
  font-weight:700;
  color:#111827;
}

/* BUTTON */

.industries-btn-wrap{
  text-align:center;
  margin-top:45px;
}

.industries-btn{
  display:inline-block;
  padding:15px 34px;
  background:#164580;
  color:#fff;
  text-decoration:none;
  border-radius:12px;
  font-size:16px;
  font-weight:600;
  transition:.4s;
}

.industries-btn:hover{
  transform:translateY(-5px);
  background:#0f3564;
}

/* ANIMATION */

@keyframes float{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-6px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* RESPONSIVE */

@media(max-width:1100px){

  .industries-grid{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:768px){

  .industries-section{
    padding:70px 5%;
  }

  .industries-heading{
    font-size:34px;
  }

  .industries-text{
    font-size:15px;
  }

  /* TWO CARDS IN MOBILE */

  .industries-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
  }

  .industry-card{
    padding:24px 14px;
  }

  .industry-icon{
    width:60px;
    height:60px;
  }

  .industry-icon i{
    font-size:24px;
  }

  .industry-card h3{
    font-size:16px;
  }

}

@media(max-width:480px){

  .industries-heading{
    font-size:28px;
  }

  .industries-badge{
    font-size:12px;
  }

  .industries-btn{
    width:100%;
    text-align:center;
  }

}

/* ===== INDUSTRIES SECTION END ===== */



/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  padding: 90px 0;
  background: none;
}

.contact-grid {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* Left Image */
.contact-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;

}

/* Right Content */
.contact-content {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 5);
}

.contact-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: #000000;
  background: rgba(65, 66, 66, 0.1);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.contact-content h2 {
  font-size: 34px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
}

.contact-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 28px;
}

/* Form */
.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  outline: none;
  font-size: 14px;
  transition: 0.3s ease;
  background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #38bdf8;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

/* Button */
.contact-btn {
  padding: 14px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 900;
  font-size: 15px;
  background: linear-gradient(135deg, #000000, #1e3453, #000000) ;
  color: white;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.contact-btn:hover {
  background: #0369a1;
  transform: translateY(-4px);
}

.contact-btn span {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-image img {
    max-height: 380px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-content {
    padding: 28px;
  }

  .contact-content h2 {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}









/* FOOTER */
.footer{
  background: linear-gradient(135deg, #000000, #1e3453, #000000) ;
  color:#fff;
  padding:70px 8%;
}
.footer-container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1fr;
  gap:40px;
}
.logo-col h2{
  letter-spacing:3px;
  margin-bottom:8px;
}
.logo-col p{
  color:#aaa;
  font-size:13px;
}
.footer-col ul{
  list-style:none;
}
.footer-col ul li{
  margin-bottom:10px;
}
.footer-col ul li a{
  text-decoration:none;
  color:#bbb;
  font-size:13px;
}
.footer-col ul li a:hover{
  color:#fff;
}
.footer-divider{
  margin:50px 0 30px;
  border-top:1px solid #333;
}
.footer-social{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-bottom:20px;
}
.footer-social a{
  width:40px;
  height:40px;
  border:1px solid #444;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#bbb;
  text-decoration:none;
  font-size:14px;
}
.footer-social a:hover{
  background:#fff;
  color:#000;
}
.footer-copy{
  text-align:center;
  color:#888;
  font-size:12px;
}
.footer-heading{
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:15px;
  color:#ffffff;
  text-transform:uppercase;
}


/* =========================
   FOOTER CENTER ON MOBILE
========================= */
@media(max-width:600px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }
}


/*whatsAPP folat*/
/* ===== FLOATING WHATSAPP BUTTON START ===== */

.floating-whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  width:65px;
  height:65px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  z-index:9999;
  box-shadow:0 10px 25px rgba(37,211,102,0.35);
  animation:whatsappPulse 2s infinite;
  transition:.4s;
}

.floating-whatsapp i{
  font-size:34px;
  color:#fff;
}

.floating-whatsapp:hover{
  transform:scale(1.1);
  box-shadow:0 15px 35px rgba(37,211,102,0.45);
}

/* PULSE ANIMATION */

@keyframes whatsappPulse{

  0%{
    box-shadow:0 0 0 0 rgba(37,211,102,0.6);
  }

  70%{
    box-shadow:0 0 0 18px rgba(37,211,102,0);
  }

  100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }

}

/* MOBILE */

@media(max-width:768px){

  .floating-whatsapp{
    width:58px;
    height:58px;
    right:15px;
    bottom:15px;
  }

  .floating-whatsapp i{
    font-size:30px;
  }

}

/* ===== FLOATING WHATSAPP BUTTON END ===== */

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-visual {
    height: 320px;
  }

  .about-grid,
  .services-grid,
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }

  .hero {
    padding: 70px 0;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-visual {
    display: none;
  }

  .about-grid,
  .services-grid,
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}






