@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/* @font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Poppins", sans-serif;
  src: url('../fonts/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
} */

/* ---------------------------------- */
/* ROOT VARIABLES  + DESIGN SYSTEM    */
/* ---------------------------------- */
:root {
  --primary-color: #1160c1;
  --primary-color-dark: #093365;

  --text-dark: #222222;
  --text-light: #6B7280;
  --bg-light: #f8fafc;
  --white: #ffffff;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.3s ease-in-out;

  /* Fluid Font Scaling */
  --fs-h1: clamp(2rem, 3.5vw, 3.2rem);
  --fs-h2: clamp(1.8rem, 3vw, 2.6rem);
  --fs-h3: clamp(1.4rem, 2vw, 1.8rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);

  /* Section spacing */
  --section-space: clamp(3rem, 6vw, 7rem);

  --max-width: 1200px;
}

/* ---------------------------------- */
/* RESET + BASE                       */
/* ---------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

/* Smooth scrolling for anchor click */
html {
  scroll-padding-top: 80px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none !important;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

/* ---------------------------------- */
/* CONTAINER + SECTION STYLING        */
/* ---------------------------------- */

.section {
  padding: var(--section-space) 1rem;
}

.sectionHeader {
  font-family: "Fira Sans", sans-serif;
  margin-bottom: 15px;
  font-size: var(--fs-h2);
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
  line-height: 1.2;
}

.sectionDescription {
  font-family: "Fira Sans", sans-serif;
  margin-inline: auto;
  text-align: center;
  color: var(--text-light);
  font-size: var(--fs-body);
  line-height: 1.3;
}


/* ---------------------------------- */
/* BUTTON SYSTEM                      */
/* ---------------------------------- */

.btn-custom {
  padding: 12px 28px;
  font-weight: 600;
  font-size: var(--fs-body);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-color-dark);
  transform: translateY(-3px);
}

/* Ghost / outline button */
.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* ---------------------------------- */
/* CARD GLOBAL ------------------------ */
/* ---------------------------------- */

.card {
  border-radius: var(--radius-lg);
  border: 1px solid #e2e2e2;
  transition: var(--transition);
  padding: 1.5rem;
  background: #fff;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
}


/* ---------------------------------- */
/* RESPONSIVE BREAKPOINTS             */
/* ---------------------------------- */

@media (max-width: 992px) {
  .sectionHeader {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .sectionHeader {
    font-size: 1.8rem;
  }

  .btn-custom {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
}
 /* ================= TOP BAR ================= */
.top-bar {
  background: #032c57;
  font-size: 14px;
  color: #ffffff;
}

.top-bar i {
  color: #ffffff;
  margin-right: 5px;
}

.top-right a {
  color: #ffffff;
  margin-left: 12px;
  font-size: 15px;
  transition: 0.3s;
}

.top-right a:hover {
  color: #ffffff;
}

/* Transition for smooth hide/show */
.navbar {
  transition: transform 0.35s ease-in-out;
}

/* When hidden */
.navbar.hidden {
  transform: translateY(-100%);
}

.navbar .navbar-brand .logo {
  max-width: 150px;
}

.navbar .dropdown-menu .dropend:hover>.dropdown-menu {
  display: block;
}

.navbar-nav {
  gap: 20px;
}

.navbar-nav a {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
}

.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: transform .28s cubic-bezier(.22, .9, .32, 1), opacity .28s ease;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  margin-top: 0;
  border-radius: 0;
  border: 0;
  padding: 0;
}

.navbar .dropdown-menu a {
  padding: 10px 15px;
}

.navbar .dropdown-menu a:hover {
  background-color: #6c70d8 !important;
  color: #ffffff;
}

.navbar .dropdown.show>.dropdown-menu,
.navbar .dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2000;
}

.navbar .dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  transform: translateX(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .22s cubic-bezier(.22, .9, .32, 1), opacity .22s ease;
  z-index: 2000;
}

.navbar .dropdown-menu .dropdown.show>.dropdown-menu,
.navbar .dropdown-menu li:hover>.dropdown-menu {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.navbar .dropdown-menu .dropdown-item {
  transition: background .15s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Desktop stays the same */
.desktop-menu {
  display: block;
}


/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: .35s ease-in-out;
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu .close-menu {
  background: none;
  border: none;
  font-size: 35px;
  cursor: pointer;
  display: block;
  margin-left: auto;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.mobile-menu a {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  color: #222;
}

.mobile-menu .dropdown-menu {
  display: none;
  padding-left: 20px;
}

.mobile-menu .dropdown.open>.dropdown-menu {
  display: block;
}

/* FontAwesome arrow rotation */
.mobile-menu .dropdown-toggle i {
  transition: transform .3s ease;
}

.mobile-menu .dropdown.open .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Hide desktop menu on mobile */
@media(max-width: 992px) {
  .desktop-menu {
    display: none !important;
  }
}

/* Mobile: disable hover-animation behavior and let Bootstrap click control show/hide.
   At smaller widths treat dropdowns as static blocks (stacked) */
@media (max-width: 992px) {

  .navbar .dropdown-menu,
  .navbar .dropdown-menu .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: none !important;
    box-shadow: none;
  }

  /* But keep them collapsed by default; Bootstrap will toggle .show to display block */
  .navbar .dropdown-menu {
    display: none;
  }

  .navbar .dropdown.show>.dropdown-menu {
    display: block;
  }
}



/* ================= ICONS ================= */
.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #032c57;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.icon-circle i {
  color: #ffffff;
  font-size: 18px;
}

.icon-circle:hover {
  background: #032c47;
}

.icon-circle:hover i {
  color: #fff;
}

/* ================= CONTACT BUTTON ================= */
.contact-btn {
  background: #032c47;
  color: #fff;
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.2;
}

.contact-btn:hover {
  background: #011523;
  color: #fff;
}
.register-btn {
  background: transparent;
  border: 1px solid #032c47;
  color: #032c47;
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.2;
}

.register-btn:hover {
  background: #011523;
  border: none;
  color: #fff;
}
/* Carousel Css */


/* .carouselSection {
  margin-top: 30px;
  padding: 0 20px;
} */

.carousel-inner {
  /* border-radius: 30px; */
  overflow: hidden;
  background-image: url('../images/banner.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Banner Background */
.carousel .banner {
  height: 550px;
  display: flex;
  align-items: center;
  padding: 20px;
}

/* Content Styling */

.carousel h1 {
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
  font-size: clamp(1.8rem, 4vw, 4rem);
}

.carousel p {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 400;
  color: #e9e9e9;
}

/* Dots */
.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 100% !important;
  border: none !important;
  background: #ccc !important;
  transition: 0.3s ease !important;
  margin-right: 10px !important;
}

.carousel-indicators .active {
  background: #fff;
  transform: scale(1.3);
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 20px;
  filter: invert(100%);
  background-color: #000000;
  border-radius: 30%
}

.carouselSection {
  position: relative;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  height: auto;
  transition: 0.3s ease;
}

/* Position both buttons at bottom-left */
.carousel-control-prev {
  left: 50px;
  right: auto;
  bottom: 80px;
  top: auto;
}

.carousel-control-next {
  left: 100px;
  right: auto;
  bottom: 80px;
  top: auto;
}

/* Optional: responsive adjustments */
@media (max-width: 768px) {

  .carousel-control-prev,
  .carousel-control-next {
    padding: 8px;
  }

  .carousel-control-prev {
    left: 15px;
    bottom: 20px;
  }

  .carousel-control-next {
    left: 60px;
    bottom: 20px;
  }
}

/* Media Queries */
@media (max-width: 992px) {
  .carousel .banner {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .carousel .banner {
    height: 400px;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .carousel .banner {
    height: auto;
    padding: 45px;
  }

  .banner-content {
    padding: 20px;
  }
}


/* Our Impact Css */

.ourImpactSection {
  background-color: rgb(246, 246, 246) !important;
}

.boxFeatures {
  background: #fff;
  border-radius: 4px;
  padding: 30px;
  margin-bottom: 30px;
}

.boxFeatures img {
  width: 50px;
  margin: 0 0 10px 0;
  display: block;
  padding: 0;
  line-height: 0;
}

.boxFeatures h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.learn-more {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.learn-more:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 2px;
  background-color: #005555;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

/* Impact New Css */
.OurImpactSection {
   background-image: url('../images/background-img.webp'); 
  object-fit: fill;
  background-repeat: no-repeat;

}

.aboutCard {
  position: relative;
  padding-top: 4rem;
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s ease;
}

.aboutCard:hover {
  transform: translateY(-8px);
}

/* Background Section */
.aboutCard_bg {
  padding: 2.2rem;
  text-align: center;
  background: linear-gradient(90deg, #efe9ff 0%, #d9ccff 100%);
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .07);
}

.aboutCard_bg span {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: inline-block;
}

.aboutCard_bg h4 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  color: var(--text-dark);
}

/* Hover Content */
.aboutCard_content {
  position: absolute;
  inset: 0;
  top: 100%;
  padding: 2rem;
  background: linear-gradient(90deg, #9976fe 0%, #9371f4 100%);
  border-radius: 1rem;
  color: white;
  text-align: center;
  transition: all .45s cubic-bezier(.25, .8, .25, 1);
}

.aboutCard:hover .aboutCard_content {
  top: 0;
}

.aboutCard_content span {
  font-size: 1.2rem;
  border: 2px solid #fff;
  padding: 2px 10px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 1rem;
}

.aboutCard_content h4 {
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  margin-bottom: 1rem;
}

.aboutCard_content p {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  line-height: 1.5;
  opacity: .9;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .aboutCard {
    padding-top: 2rem;
  }
}

@media (max-width: 576px) {

  .aboutCard_bg,
  .aboutCard_content {
    padding: 1.5rem;
  }
}

/*------------------
About Us Css
------------------*/

.aboutImg img {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Content Styling */
.aboutContent h1 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
}

.aboutContent h1 span {
  color: #7646fd; /* change based on your theme */
}

.aboutContent p {
  margin-top: 15px;
  font-size: 18px;
  color: #555;
}

/* Flex alignment for Desktop */
.aboutContent,
.aboutImg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Responsive: Tablet & Mobile */
@media (max-width: 991px) {
  .aboutContent h1 {
    font-size: 30px;
    text-align: center;
  }

  .aboutContent p {
    font-size: 16px;
    text-align: center;
  }

  .aboutContent {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .aboutContent h1 {
    font-size: 26px;
  }

  .aboutContent p {
    font-size: 15px;
  }
}


.destination__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;

}

/* ---------------- 
Service Section Css 
---------------- */
.ServiceSection {
  background: #f7f9fb;
}

.serviceCard {
  border: 1px solid #ddd;
  border-radius: 1.5rem;
  transition: all .3s ease;
  background: #fff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.serviceCard:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* Header Box */
.serviceCardHead {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  position: relative;
}

.serviceCardHead img {
  width: 70px;
  height: 70px;
  padding: 18px;
  border-radius: 12px;
}

/* Dynamic Color Classes */
.serviceCardblue {
  background-color: #424abf;
}

.serviceCardOrange {
  background-color: #e65f03;
}

.serviceCardRed {
  background-color: #c83532;
}

.serviceCardGreen {
  background-color: #27994c;
}

.serviceCardPurple {
  background-color: #673dcb;
}

/* Apply icon background automatically based on parent color */
.serviceCardHead img {
  background: rgba(255, 255, 255, 0.2);
}

/* Card Details  */
.serviceCard__details {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.serviceCard__details h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.serviceCard__details p {
  font-size: .95rem;
  color: #555;
  margin-bottom: 12px;
}

/* Feature List  */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #444;
}

.feature-list .icon {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  font-size: 1rem;
  color: #fff;
  background-color: #4CAF50;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: bold;
}


/* Button */
.cssbuttons-io-button {
  /* background: #a370f0; */
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  /* box-shadow: inset 0 0 1.6em -0.6em #b9b8ba; */
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  /* box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9; */
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon i {
  width: 1.1em;
  transition: transform 0.3s;
  color: #7b52b9;
}

.cssbuttons-io-button:hover .icon i {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

/* Re-use color themes like Bootstrap */
.btn-blue {
  background-color: #424abf;
}

.btn-orange {
  background-color: #e65f03;
}

.btn-red {
  background-color: #c83532;
}

.btn-green {
  background-color: #27994c;
}

.btn-purple {
  background-color: #673dcb;
}

.ApplyNowBtn:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* ---------------- Responsive ---------------- */

/* Tablet */
@media (max-width: 991px) {
  .serviceCardHead {
    height: 150px;
  }

  .serviceCard__details h4 {
    font-size: 1.1rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .serviceCard {
    margin-bottom: 20px;
  }

  .serviceCardHead {
    height: 140px;
  }

  .serviceCard__details {
    padding: 1rem;
  }

  .feature-list li {
    justify-content: center;
    margin-bottom: 10px;
  }

  .ApplyNowBtn {
    font-size: .9rem;
  }
}

/*** Testimonial ***/
.testimonial-card {
    width: auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    font-family: Arial, sans-serif;
    overflow: hidden;
    position: relative;
}

/* Text Section */
.testimonial-head {
    padding: 30px;
    padding-bottom: 80px; /* space for profile */
    position: relative;
}

.testimonial-head p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    color: #444;
}

/* Quote Symbol */
.quote {
    font-size: 45px;
    color: rgba(137, 137, 137, 0.2);
    position: absolute;
    bottom: 30px;
    right: 30px;
}

/* Profile Image */
.profile {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 95px;
}

.profile img {
    width: 85px!important;
    height: 85px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #5E5CE6, #5C7BFA);
    text-align: center;
    padding: 60px 20px 25px;
    color: white;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.footer-section h4 {
    margin: 0;
    font-size: 15px;
    letter-spacing: 1px;
}

.footer-section span {
    font-size: 13px;
    opacity: 0.9;
}

.owl-dots {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #999;
  margin: 5px;
}

.owl-dot.active {
  background: #424abf;
  border-color: #9fa5fe;
}

/* Footer Section Css */
.footer {
  background: #0a0a0a;
  color: #ffffff;
  font-family: "Fira Sans", sans-serif;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #dcdcdc;
}

.footer-social a {
  font-size: 1.2rem;
  margin-right: 12px;
  color: #cccccc;
  transition: 0.3s;
}

.footer-social a:hover {
  color: var(--primary-color);
  transform: scale(1.15);
}

.footer-bottom {
  border-top: 1px solid #696868;
  background: #111;
  text-align: center;
  padding: 20px 0;
  margin-top: 10px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #bbbbbb;
  margin-bottom: 0;
}

/* ----------- RESPONSIVE ----------- */

@media (max-width: 992px) {
  .footer-title {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {

  .footer-social {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* LOGO SECTION CSS */

.logo-section {
  background: #fff;
  overflow: hidden;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
}

.logo-item {
  min-width: 180px;
  height: 100px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.logo-item img {
  max-width: 100%;
  max-height: 45px;
  filter: grayscale(0);
  opacity: 1;
  transition: all 0.3s ease;
}
.logo-item:hover{
  border-top: 2px solid #052c73;
}
.logo-item:hover img {
  filter: grayscale(100%);
  opacity: 0.8;
}

/* Animations */
.marquee-left .logo-track {
  animation: marquee-left 30s linear infinite;
}

.marquee-right .logo-track {
  animation: marquee-right 35s linear infinite;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Pause on hover */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-item {
    min-width: 140px;
    height: 80px;
  }
}


/* WHY CHOOSE MSME CSS */

.why-choose-msme .why-box {
  background: #2e3a4b;
  border-radius: 30px;
  padding: 70px 40px;
}

.small-title {
  color: #38c6ff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.main-title {
  font-size: 36px;
  font-weight: 700;
}

.feature-item h5 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #ffffff;
}

.feature-item p {
  font-size: 14px;
  color: #cfd8e3;
  margin-bottom: 0;
}

.icon-box {
  font-size: 28px;
  color: #38c6ff;
  min-width: 40px;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .why-choose-msme .why-box {
    padding: 50px 20px;
  }

  .main-title {
    font-size: 28px;
  }
}


/* Loan Section Css */

.loan-section {
  background: linear-gradient(57deg,
      rgba(63, 54, 245, 1) 0%,
      rgba(43, 43, 227, 1) 35%,
      rgba(30, 127, 212, 1) 69%,
      rgba(247, 156, 59, 1) 100%);
  color: #0c0c0c;
  font-weight: 500;
}

.loan-form {
  border-radius: 15px;
  background: #ffffff;
}

.loan-form input {
  height: 48px;
  border-radius: 8px;
}

.apply-btn {
  background-color: #083b9a;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
}

.apply-btn:hover {
  background-color: #052c73;
}

/* Right side design image responsiveness */
/* .shape-img {
  width: 60px;
  margin-right: 10px;
} */

/* Responsive Typography */
@media (max-width: 768px) {
  .loan-section h1 {
    font-size: 1.9rem;
    text-align: center;
  }

  .loan-section p {
    text-align: center;
  }

  .design-shapes {
    text-align: center;
  }
}

/* FUN FACTS */

#conterSection {
  background-color: #fff;
}

#conterSection .conterItems {
  background-color: #f4f4f4;
  height: 100%;
  padding: 40px;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.conterItems .counter {
  font-size: 24px;
  font-weight: 700;
  color: #a2cf8d;
}

.conterItems span {
  display: inline-block;
  margin-top: 10px;
  font-size: var(--fs-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #3d3d3d;
}

/* Why Choose Content Css */

.why-choose-section {
  background: #f7f9fb;
}

.why-choose-section h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #0a1a44;
}

.check-icon {
  font-size: 2rem;
  margin-right: 8px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.3s ease;
  min-height: 350px;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 30px;
}

.feature-card .icon-box {
  width: 55px;
  height: 55px;
  background: #eef7ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.feature-card .icon-box img {
  width: 35px;
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #112244;
}

.feature-card p {
  color: #5a6a88;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.featureList {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.featureList li {
  font-size: 0.95rem;
  color: #2c3e50;
  margin-bottom: 6px;
}


/* -----------------------------------------
   PROCESS SECTION BASE
------------------------------------------*/
.process-section {
  position: relative;
  padding: 80px 0;
}

.process-section h2 {
  font-size: 42px;
  font-weight: 700;
}

/* -----------------------------------------
   STEP NUMBER
------------------------------------------*/
.process-number {
  background: #0054e5;
  color: #fff;
  font-weight: bold;
  width: 55px;
  height: 55px;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 0 0 6px rgba(0, 69, 229, 0.2);
}

/* -----------------------------------------
   CARD CONTENT BOX
------------------------------------------*/
.process-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s ease;
}

.process-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* -----------------------------------------
   VERTICAL TIMELINE LINE (DESKTOP)
------------------------------------------*/
.process-step {
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 90%;
  transform: translateX(-50%);
  width: 3px;
  height: 90px;
  border-left: 3px dashed #bfbfbf;
}

/* -----------------------------------------
   IMAGE STYLE
------------------------------------------*/
.process-step img {
  max-width: 350px;
}

.process-step {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------
   MOBILE TIMELINE STYLE
------------------------------------------*/
@media (max-width: 991px) {

  .process-section {
    padding: 50px 0;
  }

  .process-step {
    text-align: center;
  }

  .process-step::after {
    left: 50%;
  }

  .process-step img {
    width: 70%;
  }

  .process-number {
    margin-inline: auto;
  }
}

/* -----------------------------------------
   EXTRA SMALL MOBILE (better spacing)
------------------------------------------*/
@media (max-width: 576px) {
  .process-content {
    padding: 18px;
  }

  .process-section h2 {
    font-size: 28px;
  }

  .process-step::after {
    height: 70px;
  }

  .process-step img {
    width: 85%;
  }
}

/* CONTACT US */

.contactSection {
  background-color: #dae5fd;
  padding: 80px 0;
}

.contactSection .section-heading h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}


.map-wrapper {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Form Inputs */
.contactSection input,
.contactSection textarea {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  padding: 14px 16px;
  transition: all .3s ease;
}

.contactSection input:hover,
.contactSection textarea:hover {
  border-color: #2d56c7;
}

.contactSection input:focus,
.contactSection textarea:focus {
  border-color: #2d56c7;
  outline: none;
  background: #fff;
  box-shadow: 0 0 5px rgba(92, 103, 157, 0.4);
}

.submit-btn {
  background-color: #052c73;
  color: #fff;
  font-size: 13px;
  padding: 14px 0;
  text-transform: uppercase;
  border-radius: 30px;
  transition: .3s;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background-color: #1948a0;
}

/* Responsive Fixes */
@media (max-width: 767px) {
  .contactSection {
    padding: 50px 20px;
  }

  .map-wrapper {
    height: 280px;
  }

  .section-heading h4 {
    font-size: 22px;
  }
}