/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter','Poppins',sans-serif;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

p, li, a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== GLOBAL WIDTH SYSTEM ===== */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ================= TOP BAR ================= */
.top-bar {
  display: flex;
  justify-content: space-between; /* 🔥 left & right */
  align-items: center;
  padding:5px 5px;
  background:rgb(238, 240, 250);
  border-bottom: 1px solid #eee;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

/* LEFT SIDE LOGOS */
.top-left {
  display: flex;
  align-items: center;
  gap:10px;
  margin-left: 10px;
}

/* LOGOS */
.top-left img {
  height: 45px;
  transition: transform 0.5s ease;
}

.top-left img:hover {
  transform: scale(1.08);
}

.apply-alert-btn{

  background: #C13948;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  margin-left: -7%;

  animation: pulse 1.5s infinite;
  transition: 0.3s;
}

/* hover effect */
.apply-alert-btn:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255,90,60,0.4);
}

/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,90,60, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255,90,60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,90,60, 0);
  }
}

.top-bar {
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*second nav-bar*/

/* ===== NAVBAR ===== */
.navbar {
  height: 60px;
  background: #183152;
  display: flex;
  align-items: center;
   position: fixed;
  top: 55px;
  width: 100%;
  z-index: 1000;
}

/* LOGO LEFT */
.logo {
 display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.logo img {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 45px;
  transition: transform 0.5s ease;
  margin-top: 5px;
}

/* CENTER MENU */
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* LINKS */
.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  margin-top: 10px;
}

.nav-links a.active,
.nav-links a:hover {
  color: #C13948;
}


/*Program Structure*/

/* SECTION */
.process-section {
  padding: 100px 20px;
  background: #eceef2;
  text-align: center;
  margin-top: -5%;
  margin-bottom: -5%;
}

/* TITLE */
.process-title {
  font-size: 42px;
  font-weight: 700;
  color: black;
  margin-bottom: 60px;
  margin-top: -5%;
  
}

/* CONTAINER */
.process-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* equal width */
  gap: 20px;   /* 🔥 reduced gap */
}

  .process-section .section-container {
  max-width: 1400px;   /* same as support/about */
  margin: 0 auto;
  padding: 10px 80px;     /* same side spacing */
}

/* CARD */
.process-card {
  background: #ffffff;
  border-radius: 5px;
  padding: 25px;
  width: 400px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
  margin-right: -25%;
  margin-top: -2%;
  margin-left: -15%;
}

/* HOVER */
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.process-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* NUMBER CIRCLE */
.circle {
  position: absolute;
  top: 180px;
  left: 20px;

  width: 55px;
  height: 55px;
  border-radius: 50%;

  background: #C13948;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  font-size: 18px;
}

/* TITLE */
.process-card h3 {
  margin-top: 40px;
  font-size: 22px;
  color: #C13948;
  margin-top: 5%;
}

/* DESCRIPTION */
.process-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 10px 0 15px;
}

/* LIST */
.process-card ul {
  list-style: none;
  padding: 0;
}

/* LIST ITEM */
.process-card ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #444;
  display: flex;
  align-items: center;
}

/* ICON CHECK */
.process-card ul li::before {
  content: "✔";
  color: #3fa4d8;
  margin-right: 10px;
  font-size: 14px;
}


/* TOP BAR */
.top-marquee{
  width:70%;
  color:#C13948;
  overflow:hidden;
  height:35px;
  display:flex;
  align-items:center;
  position:relative;
}

/* TEXT */
.marquee-content{
  white-space:nowrap;
  padding-left:100%;
  font-size:14px;
  font-weight:300;

  animation: scrollText 15s linear infinite;
}


/* ANIMATION */
@keyframes scrollText{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-100%);
  }
}


/* FOOTER */
.footer{
  background:  #183152;
  color:lightgrey;
  padding-top:60px;
}

/* CONTAINER */
.footer-container{
  max-width:86%;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1.2fr 1fr;
  gap:50px;
  padding:0 40px 50px;
}

/* COLUMN */
.footer-col h3{
  font-size:18px;
  margin-bottom:10px;
  color: whitesmoke;
}

.footer-col p{
  font-size:14px;
  line-height:1.5;
  color:white;
}

/* SOCIAL */
.socials {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

/* ICON CIRCLE */
.socials span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* HOVER EFFECT */
.socials span:hover {
  transform: translateY(-6px) scale(1.08);
  background: linear-gradient(135deg, #C13948, #ff6b81);
  box-shadow: 0 10px 25px rgba(193,57,72,0.4);
}

.socials a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}
/* VISITS */
.visits{
  margin-top:15px;
  font-size:14px;
}

/* MAP */
.footer-col iframe{
  width:100%;
  height: 150px;
  border-radius:6px;
  border:none;
  margin-top: 5%;
}


/* BOTTOM */
.footer-bottom{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 35px 0;
  margin: 0;

  border-top: 1px solid rgba(255,255,255,0.2);

  font-size: 14px;
  color: white;
}

.footer{
  background: #183152;
  color: lightgrey;
  padding-top: 60px;
  width: 100%;
}


/* RESPONSIVE */
@media(max-width:900px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .socials{
    justify-content:center;
  }
}



/* =========================================
   GLOBAL CONTAINER FIX (ALL SAME WIDTH)
========================================= */
.about-container,
.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ================= MOBILE FINAL FIX ================= */
@media (max-width:768px){

  /* ===== GLOBAL FIX ===== */
  body, html{
    overflow-x: hidden;
  }

  /* ===== HIDE UNWANTED ===== */
  .top-marquee{
    display: none !important;   /* running text hide */
  }

  .apply-alert-btn{
    display: none !important;   /* application button hide */
  }

  .navbar{
    display: none !important;   /* second navbar hide */
  }

  /* ===== TOP NAVBAR ONLY ===== */
  .top-bar{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
  }

  .top-left img{
    height: 30px;
  }



  /* ===== FINANCE SECTION ===== */
  .finance-container{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 0 15px;
  }

  .finance-image{
    justify-content: center;
  }

  .finance-image img{
    width: 100%;
    height: auto;
    margin: 0;
  }

  .finance-content h3{
    font-size: 20px;
  }

}

.mobile-menu{
  position: fixed;
  top: 60px;
  right: -100%;
  width: 70%;
  height: 100vh;

  background: #0b2a3a;
  padding: 30px 20px;

  display: flex;
  flex-direction: column;
  gap: 20px;

  transition: 0.3s ease;
  z-index: 9999;

  pointer-events: none; /* 🔥 IMPORTANT */
}

/* when open */
.mobile-menu.active{
  right: 0;
  pointer-events: auto; /* allow clicks only when open */
} 
*{
  pointer-events: auto;
}

/* HIDE IN DESKTOP */
.menu-toggle{
  display: none;
}

/* MOBILE */
@media (max-width:768px){

  .menu-toggle{
    display: block;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    color: black;
  }

  .mobile-menu{
    position: fixed;
    top: 45px;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: #C13948;

    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;

    transition: 0.3s;
    z-index: 10000;
  }

  .mobile-menu.active{
    right: 0;
  }

  .mobile-menu a{
    color: white;
    font-size: 18px;
    text-decoration: none;
  }
}

.mobile-menu li{
  list-style: none;
}

/* ================= ANIMATION KEYFRAME ================= */

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*hero*/

/* HERO FULL VIDEO */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT CENTER */
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  margin-left: -1%;
}

/* TEXT STYLING */
.hero-overlay h1 {
  font-size: 70px;
  margin-bottom: 10px;
  color:#FFFF;
  font-family:Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.hero-overlay h1 span {
  color:#C13948;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  
}

.hero-overlay h3 {
  font-size: 35px;
  margin-bottom: 20px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: rgb(251, 236, 236);
  font-weight: 800;
}

.hero-overlay p {
  max-width: 900px;
  font-size: 25px;
  margin-bottom: 30px;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 900;
  color: white;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary,
.btn-outline {
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: #C13948;
  color: white;
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-primary:hover {
  background: #C13948;
}

.btn-outline:hover {
  background: white;
  color: black;
}

/*about*/

/* ===== SECTION ===== */
.about-section {
  padding: 80px 40px;
margin-top: -2%;
}

/* TITLE CENTER */
.about-title {
  text-align: center;
  font-size: 42px;
  color: #000;
  margin-bottom: 60px;
  font-weight: 700;
}

/* WRAPPER */
.about-wrapper {
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: -2%;
}

/* LEFT TEXT */
.about-text p {
  color: #777;   /* light grey */
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
  margin-right: -50%;

}


/* ===== RIGHT SIDE STACK (COMPACT) ===== */
.about-cards {
  display: flex;
  flex-direction: column;
  width: 100%;
    margin-top: 1%;
    margin-left: 55%;
}

/* CARD */
.finance-card {
  background: #ffffff;
  border-radius: 10px;
  position: relative;

  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: 0.25s ease;

  border-left: 3px solid rgb(201, 198, 198);
  width: 40%;           /* 🔥 makes it fully use the width */
  padding: 15px 15px;    /* slightly balanced */
  margin-bottom:2%;
}

/* TOP LINE */
.top-line {
  height: 0px;
}

/* TITLE */
.finance-card h3 {
  color: rgb(138, 135, 135);;
  font-size: 18px;        /* 🔥 smaller */
  margin-bottom: 0px;
  font-weight: 600;
}

/* TEXT */
.finance-card p {
  color: #777;
  font-size: 13px;
  margin-bottom: 6px;
}

/* STATUS */
.status {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 15px;
  display: inline-block;
}

/* COMPLETED */
.completed .status {
  background: rgb(243, 241, 241);
  color: rgb(129, 125, 125);
}



/* 🔥 SPECIAL RED THEME CARD (ONLY EQUITY) */
.highlight-card {
  border-left: 4px solid #C13948;
  background: #FFFFFF;
}

/* TITLE "Equity" ONLY */
.highlight-card h3 {
  color: #C13948;
  font-size: 20px;
  font-weight: 700;
}

/* HOVER PREMIUM EFFECT */
.highlight-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(193,57,72,0.25);
  border-left: 4px solid #C13948;
}

/* STATUS (ONGOING) */
.highlight-card .status {
  background: rgba(124, 224, 124, 0.86);
  color: #1a7f37;
  font-weight: 700;
}

/* EXTRA GLOW EFFECT */
.highlight-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(193,57,72,0.08);
  opacity: 0;
  transition: 0.3s;
}

.highlight-card:hover::after {
  opacity: 1;
}



/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}

/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}

/* ===== SECTION ===== */
.support-section {
  padding: 100px 0;
  background: #f8f9fb;
  margin-top: -3%;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  color: #111;
  margin-bottom: 60px;
  margin-top: -5%;
}

/* ===== FULL WIDTH WRAPPER ===== */
.support-wrapper {
  padding: 0 8%;
  width: 100%;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* ===== IMAGE ===== */
.support-image {
  display: flex;
  justify-content: center;

}

.support-image img {
  width: 90%;
  max-width: 520px;
  height: 360px;
  object-fit: cover;
  border-radius: 5px;
  transition: 0.4s ease;
  margin-left: -22%;

}

.support-image img:hover {
  transform: scale(1.03);
}

/* ===== CONTENT ===== */
.support-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-right: 15%;
margin-top: -20%;

}

/* ITEM (NO CARD STYLE) */
.support-item {
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
  margin-top: -2%;
}

/* TITLE */
.support-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #C13948;
  margin-bottom: 8px;
  
}

/* STATUS */
.support-item h3 span {
  font-size: 12px;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* COMPLETED */
.completed h3 span {
  background: rgb(235, 233, 233);
  color: rgb(112, 109, 109);

}

/* AVAILABLE */
.ongoing h3 span {
 background: rgba(124, 224, 124, 0.86);
  color: #1a7f37;
   font-weight: 900;
}

/* TEXT */
.support-item p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
  margin-right: -4%;
}

/* REMOVE BORDER FROM LAST */
.support-item:last-child {
  border-bottom: none;
}

.support-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px;

  width: 100%;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}



/* ================= MOBILE FIX ONLY ================= */
@media (max-width: 768px) {

  /* ===== ABOUT ===== */
  .about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .about-text p {
    margin: 0 !important;
    text-align: left;
  }

  .about-cards {
    margin: 0 !important;
    width: 100%;
  }

  .finance-card {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

  /* ===== SUPPORT ===== */
  .support-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 15px !important;
  }

  .support-image {
    margin: 0 !important;
    text-align: center;
  }

  .support-image img {
    width: 100% !important;
    height: auto;
  }

  .support-content {
    margin: 0 !important;
    text-align: left;
  }


  /* ================= PROCESS MOBILE FIX ================= */
@media (max-width: 768px) {

  .process-section {
    padding: 60px 15px;
  }

  .process-container {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .process-card {
    width: 100% !important;
    margin: 10 !important;
    padding: 50px;
  }

  .process-card img {
    height: auto;
  }

  /* FIX NUMBER CIRCLE POSITION */
  .circle {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    margin-bottom: 10px;
  }

  .process-card h3 {
    font-size: 18px;
  }

  .process-card p,
  .process-card ul li {
    font-size: 14px;
  }

}

/* ===== SCROLL TO TOP BUTTON ===== */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 50px;
  height: 50px;
  border: none;
  border-radius: 12px;

  background: #C13948;
  color: white;
  font-size: 22px;

  cursor: pointer;
  display: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 9999;
}

#scrollTopBtn:hover {
  transform: translateY(-3px);
  background: #a72f3b;
}

html, body {
  overflow-x: hidden;
}

/* ==========================================
   FINAL MOBILE RESPONSIVE (TOP TO BOTTOM)
========================================== */
@media screen and (max-width:768px){

  /* ---------- GLOBAL RESET ---------- */

  html,
  body{
    width:100%;
    overflow-x:hidden !important;
    margin:0;
    padding:0;
  }

  *{
    box-sizing:border-box;
  }

  section,
  div,
  img,
  video{
    max-width:100%;
  }

  img{
    display:block;
    height:auto;
  }

  .section-container,
  .container{
    width:100% !important;
    max-width:100% !important;
    padding-left:16px !important;
    padding-right:16px !important;
    margin:0 auto !important;
  }

  /* ---------- HEADER ---------- */

  .top-bar{
    width:100%;
    height:auto;
    padding:10px 14px !important;
    justify-content:space-between;
    align-items:center;
    position:fixed;
  }

  .top-left{
    gap:5px;
    margin:0 !important;
    flex-wrap:nowrap;
  }

  .top-left img{
    height:28px !important;
    width:auto;
  }

  .top-marquee,
  .apply-alert-btn,
  .navbar{
    display:none !important;
  }

  /* ---------- MENU ---------- */

  .menu-toggle{
    display:block !important;
    position:absolute;
    right:15px;
    top:10px;
    z-index:99999;
    font-size:26px;
  }

  .mobile-menu{
    width:78% !important;
    top:50px !important;
    right:-100%;
    padding:25px 20px !important;
    overflow-y:auto;
  }

  .mobile-menu.active{
    right:0;
  }

  .mobile-menu a{
    font-size:17px;
  }

  /* ---------- HERO ---------- */

  .hero{
    min-height:100vh;
    height:auto !important;
    width:100%;
  }

  .hero-video,
  .hero-video video{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .hero-overlay{
    width:100%;
    padding:110px 20px 40px !important;
    margin:0 !important;
    text-align:center;
  }

  .hero-overlay h1{
    font-size:32px !important;
    line-height:1.3;
  }

  .hero-overlay h3{
    font-size:20px !important;
  }

  .hero-overlay p{
    font-size:15px !important;
    line-height:1.8;
    width:100%;
    max-width:100%;
  }

  .hero-buttons{
    width:100%;
    flex-direction:column;
    gap:12px;
  }

  .btn-primary,
  .btn-outline{
    width:100%;
  }

  /* ---------- ABOUT ---------- */

  .about-section{
    padding:60px 16px !important;
    margin:0 !important;
  }

  .about-title{
    font-size:30px !important;
    margin-bottom:25px !important;
  }

  .about-wrapper{
    display:flex !important;
    flex-direction:column !important;
    gap:25px;
  }

  .about-text,
  .about-cards{
    width:100% !important;
    margin:0 !important;
  }

  .about-text p{
    margin:0 0 15px 0 !important;
    font-size:15px !important;
  }

  .finance-card{
    width:100% !important;
    margin:0 0 15px 0 !important;
    padding:18px !important;
  }

  /* ---------- SUPPORT ---------- */

  .support-section{
    padding:60px 16px !important;
    margin:0 !important;
  }

  .section-title{
    font-size:30px !important;
    margin-bottom:25px !important;
  }

  .support-wrapper{
    display:flex !important;
    flex-direction:column !important;
    gap:25px;
    width:100%;
  }

  .support-image{
    width:100%;
  }

  .support-image img{
    width:100% !important;
    margin:0 !important;
    height:auto !important;
  }

  .support-content{
    width:100%;
    margin:0 !important;
  }

  .support-item{
    margin-top:0 !important;
  }

  .support-item p{
    margin-right:0 !important;
  }

  /* ---------- PROCESS ---------- */

  .process-section{
    padding:60px 16px !important;
    margin:0 !important;
  }

  .process-title{
    font-size:30px !important;
    margin-bottom:25px !important;
  }

  .process-container{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:20px;
    width:100%;
  }

  .process-card{
    width:100% !important;
    margin:0 !important;
    padding:20px !important;
  }

  .process-card img{
    width:100%;
    height:auto !important;
  }

  .circle{
    position:relative !important;
    top:0 !important;
    left:0 !important;
    margin-bottom:10px;
  }

  .process-card h3{
    font-size:20px !important;
    margin-top:0 !important;
  }

  /* ---------- FOOTER ---------- */

  .footer{
    width:100%;
    padding-top:50px !important;
  }

  .footer-container{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:30px;
    width:100%;
    max-width:100% !important;
    padding:0 16px 40px !important;
    text-align:center;
  }

  .footer-col{
    width:100%;
  }

  .footer-col iframe{
    width:100%;
    height:220px;
  }

  .socials{
    justify-content:center;
    flex-wrap:wrap;
  }

  .footer-bottom{
    padding:18px !important;
    font-size:13px;
  }

  /* ---------- BUTTON ---------- */

  #scrollTopBtn{
    width:45px;
    height:45px;
    right:15px;
    bottom:15px;
  }
}

