/* Created by A R AJMAL on 26/02/2025 */
/* Navbar styles with responsive adjustments */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Urbanist:wght@500;700&display=swap");

/* fonts and heading */

/* hide scrollbar */
::-webkit-scrollbar {
  width: 0px;  /* Makes scrollbar invisible */
  background: transparent;  /* Ensures background is not visible */
}
h2 {
  font-family: "Urbanist", sans-serif;
}

/* Logo Styling */
.logo {
  height: 70px;
  margin-top: 3%;
  transition: height 0.3s ease-in-out;
}


 .navbar{
  position:fixed;

 }

.fixed-gap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-toggler {
  /* margin-left: 0 !important; */
  border: none;
}

/* removing the grey border */

.navbar-toggler:focus, 
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
    border: none;
}




/* Navbar Links */
.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  text-decoration: none !important;
  color: #000;
}

#companyDropdown:hover,
#txtServiceDropdown:hover {
  color: #29327a;
}

.NavItems:hover {
  background-color: #f5f6ff;
}

#txtNavItems {
  margin-right: 20px;
}

/* "Let's Talk" Button */
#btnNavButton {
  background-color: #29327a;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.letstalkbtn a{
  text-decoration: none;
  color: white;
}
/* Dropdown Styles */
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
  color: grey;
  text-decoration: none !important;
}

/* Underline Hover Effect for Dropdown Items */
.dropdown-item::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #29327a;
  transition: width 0.3s ease-in-out;
  position: absolute;
  bottom: 5px;
  left: 20px;
}

.dropdown-item:hover::after {
  width: 80%;
}

/* Two-column Dropdown Layout */
.dropdown-columns {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
  padding: 10px;
}

.dropdown-columns .column {
  flex: 1;
  min-width: 150px;
}

/* Remove caret icon from dropdown links */
.nav-item .dropdown-toggle::after {
  display: none !important;
}

@media (max-width: 991.9px) {
  .navbar-nav .nav-item {
    width: 100%; /* Ensure full width */
  }

  .navbar-nav .nav-link {
    display: flex;
    justify-content: space-between; /* Align text and caret */
    align-items: center;
    padding: 10px 15px; /* Adjust spacing */
  }
  /* Style caret icon */
  .dropdown-caret {
    margin-left: auto;
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  /* Rotate caret when dropdown is open */
  .nav-link[aria-expanded="true"] .dropdown-caret {
    transform: rotate(180deg);
  }
  /* Adjust caret positioning */
  .caretCompany,
  .caretService {
    display: block;
    margin-top: 3px; /* Adjust spacing */
    font-size: 14px;
  }

  .fixed-gap {
    margin-right: 2%;
  }

  /* Add fixed underline for main nav items */
  .navbar-nav .nav-item {
    position: relative;
    padding-bottom: 5px; /* Adjust spacing */
  }

  .navbar-nav .nav-item::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px; /* Thickness of underline */
    background-color: #29327a; /* Color of underline */
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #btnNavButton {
    margin-top: 5%;
  }
  /* Ensure dropdown items do not have an underline */
  .dropdown-menu .dropdown-item::after {
    display: none !important;
  }
}

/* mobileview navbar */

/* Search Navbar Styling */
.search-navbar,
.navbar {
  width: 100%;
  background: white;
  padding: 10px 20px;
  top: 0;
  left: 0;
  z-index: 1050;
  transition: all 0.3s ease-in-out;
}

.search-navbar {
  display: none; /* Hidden by default */
}

.search-containernav {
  width: 75%;
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px;
  color: #666;
}

.close-search {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Toggle Classes */
.hide-navbar {
  display: none;
}

.show-search-navbar {
  display: flex;
}



/* Responsive Adjustments */

@media (max-width: 992px) {
  .logo {
    height: 75px;
  }

  .search-icon {
    order: 1;
  }

  .navbar-toggler {
    order: 2;
  }
}

@media (max-width: 1200px) {
  .logo {
    height: 50px;
  }

  /* Simplify search navbar for mobile */
  .search-navbar.show-search-navbar {
    padding: 10px;
  }

  .search-containernav {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-shadow: none;
  }

  .search-navbar .logo {
    display: none; /* Hide logo on mobile when search is active */
  }

  .search-input {
    padding: 8px;
    font-size: 14px;
  }

  .close-search {
    font-size: 18px;
  }

  .dropdown-columns {
    flex-direction: column; /* Stack dropdown items on mobile */
  }
}

@media (max-width: 500px) {
  .logo {
    height: 25px; /* Adjusted from 10px for better visibility */
  }
}

/* --------------------------------------------------------------------------- */

/* Hero Section Styling */
/* Apply Urbanist font */
body {
  font-family: "Urbanist", sans-serif;
}

/* Hero Section */
/* Hero Section */
.hero {
  position: relative;
  max-width: 100%;
  height: 800px;
  display: flex;
  align-items: center; /* Center vertically */
  overflow: hidden;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Dark Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  padding-left: 5%;
}

/* Small Text with Line */
.d-flex {
  align-items: center;
}

.line {
  width: 2px;
  height: 50px;
  background-color: white;
  margin-right: 15px;
}

/* Small Subtext */
.subtext {
  font-family: "Poppins",sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: white;
  margin: 0;
}

/* Large Heading */
.hero-title {
  font-family: "Urbanist",sans-serif;
  font-size: 85px;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
}

/* Button */
.custom-btn {
  font-family: "Urbanist",sans-serif;
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  padding: 10px 30px;
  border: 1px solid white;
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

/* Button Hover Effect */
.custom-btn::after {
  content: "";
  position: absolute;
  height: 100%;
  left: -33%;
  top: 0;
  transform: skew(50deg);
  width: 0;
  background-color: orangered;
  transition: width 0.3s ease-in-out;
  z-index: 3;
}

.custom-btn:hover::after {
  width: 150%;
}

.custom-btn span {
  position: relative;
  z-index: 5;
}

/* Arrow Animation */
.custom-btn span.arrow {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  margin-left: 5px;
}

.custom-btn:hover .arrow {
  transform: translateX(8px);
}

/* 📱 Mobile Adjustments */
@media (max-width: 992px) {
  .hero {
    height: auto;
    padding: 10% 0;
  }

  .hero-content {
    max-width: 90%;
    padding-left: 5%;
  }

  .hero-title {
    font-size: 28px;
  }

  .subtext {
    font-size: 8px;
  }

  .line {
    height: 30px;
  }

  .custom-btn {
    font-size: 10px;
    padding: 10px 30px;
  }
  .line{
    width: 1px;
  }
}

/* Secondary Button */
.custom-btn-section {
  display: inline-block;
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: white;
  background-color: rgba(222, 47, 30, 1);
  text-decoration: none;
  padding: 15px 40px;
  transition: all 0.3s ease-in-out;
}

.custom-btn-section .arrow {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  margin-left: 5px;
}

.custom-btn-section:hover {
  background-color: rgb(207, 51, 36);
}

.custom-btn-section:hover .arrow {
  transform: translateX(8px);
}

/* ------------------------------------------------------------------- */
/* who we are section */

.lp-img {
  width: 75%;
  margin-top: 10%;
}
.text-primary-head {
  color: rgba(41, 50, 122, 1);
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  /* font-size: 50px; */
  font-size: clamp(30px, 5vw, 50px); /* Adjusts between 14px and 18px */

}

.text-muted-content {
  color: rgba(152, 151, 151, 1);
  font-family: "Poppins", sans-serif;
  /* font-size: 20px; */
  font-size: clamp(16px, 1.8vw, 18px); /* Adjusts between 14px and 18px */

  font-weight: 300;
  width: 87%;
}
/* -------------------------------------------------------------row section--------------------------------------------- */
.stats-section {
  background-color: #f5f7fe; 
  padding: 60px 0;
  transform: skewY(-3deg);
}

/* Make sure stats have enough spacing */
.stat-box {
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 180px;
  height: 100%; /* Critical for height syncing */
}

/* Title Styling */
.stat-title {
  color: #6c757d;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 2rem); /* Responsive font size */
}

/* Number Styling */
.stat-number {
  min-width: 90px;
  font-variant-numeric: tabular-nums;
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 5rem); /* Responsive font size */
  font-weight: bold;
  color: #001f66;
}

/* Mobile Optimizations */
@media (max-width: 576px) {
  .stats-section {
    /* transform: none; */
    padding: 60px 0;
    transform: skewY(-3deg); /* kept as per your preference */
  }
}

/* --------------------------------------------------------------------------------------- */
/* our service section */
.divservice{
  margin-top: 5%;
  padding-left: 5%;
}
.serviceheading{
  font-family: 'Urbanist',sans-serif;
  font-weight: 400;
  /* font-size: 50px; */
  font-size: clamp(30px, 5vw, 50px); /* Adjusts between 14px and 18px */

  color: rgba(41, 50, 122, 1);
 
}
.serviceimage{
  padding-left: 15%;
}

.service-list {
  max-height: 550px;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    position: relative;
}
.service-list a{
  text-decoration: none;
}

.service-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.servicedropdown {
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: visible;
  min-width: 100%;
}

.servicedropdown:hover {
  transform: translateX(8px); /* Increases size and moves right */
}
.servicedropdown::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px; /* Thickness of the underline */
  background-color: rgba(41, 50, 122, 1);
  transition: width 0.3s ease-in-out;
 
}

.servicedropdown:hover::after {
  width: 100%;
  /* Darker on hover */
}

.dropdownmain {
  overflow: visible; /* Prevent text clipping */
  padding: 10px 15px; /* Adds spacing to avoid text cutting */
  background: white; /* Ensure background stays visible */
  border-radius: 5px; /* Optional: smooth rounded corners */
}


.dropdownheading {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: rgba(41, 50, 122, 1);
  position: relative;
  display: inline-block;
}




.dropdowntext {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: rgba(152, 151, 151, 1);
}

.droparrow {
  background-color: rgba(41, 50, 122, 1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;

  position: relative;
  right: 0; /* Ensures it sticks to the right edge */
  margin-left: auto; /* Pushes it to the right */
}

/* fading property */
@keyframes CSSscrollReveal{
  from{
    opacity: 0;
    transform: translateY(100px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdownmain{
  animation: CSSscrollReveal ease-in-out both;
  animation-timeline: view();
  animation-range: entry 0% cover 20%;
}



.service-rightside{
  font-family: 'Urbanist',sans-serif;
  font-weight: 400;
  font-size: 30px;
  width: 100%;
  max-width:613px ;
  color:  rgba(52, 51, 155, 1);
  
}
 .rightgradient{
  background: linear-gradient(90deg, rgba(52, 51, 155, 0.14) 42.69%, rgba(255, 255, 255, 0) 100%);
  
}
.rightparagraph{
  font-family: 'Poppins',sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(152, 151, 151, 1);
  ;
}


.serviceimage img {
  max-width: 100%;
  height: auto;
}
.rightsection{
  padding-left: 5%;
}

/* cube animation */
@keyframes floatRotate {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(180deg) translateY(-10px);
  }
  100% {
    transform: rotate(360deg) translateY(0);
  }
}

.serviceimage img {
  animation: floatRotate 5s ease-in-out infinite;
  animation-play-state: running; /* Default: running */
}

/* Stop animation on hover */
.serviceimage img:hover {
  animation-play-state: paused;
}

/* ---------------------------------------------------------------------------------------------------------------------- */
/* mobile-view services */
/* Our Services Section */

     .mobileservices-section {
            padding: 20px;
            
        }
        .mobservices-section a{
          text-decoration: none;
          color: rgba(152, 151, 151, 1);
        }
        .mobservices-section h2{
          font-family: "Urbanist", sans-serif;
          font-weight: 400;
          font-size: 26px;
          color:rgba(41, 50, 122, 1);
        }
        .mobservices-section p {
          font-family: "Poppins", sans-serif;
          font-weight: 300;
          font-size: 12px;
          color: rgba(152, 151, 151, 1);
          max-width: 90%;
        }
        .services-section .intro-text em {
            color: #001F87;
        }
        .service-item {
            padding: 15px 0;
            border-bottom: 1px solid #ccc;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .service-item h5 {
          font-family: "Urbanist", sans-serif;
          font-weight: 400;
            color: #001F87;
        }
        .service-item .icon {
            background: #001F87;
            color: #fff;
            padding: 5px 10px;
           
        }
        .mobileservice-rightside{
          font-family: 'Urbanist',sans-serif;
          font-weight: 400;
          font-size: 18px;
          width: 100%;
          color:  rgba(52, 51, 155, 1);
          
        }
        .mobilerightgradient{
          background: linear-gradient(90deg, rgba(52, 51, 155, 0.14) 42.69%, rgba(255, 255, 255, 0) 100%);
        }

/* ---------------------------------------------------------------------------------------------------------------------- */
/* .client-text {
  text-align: center;

}

.client-text h1 {
  color: rgba(41, 50, 122, 1);
  font-family: 'Urbanist',sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
}

.client-text p {
  color: rgba(152, 151, 151, 1);
  font-family: 'Poppins',sans-serif;
  font-size: 22px;
  font-weight: 300;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.logos {
  overflow: hidden;
  padding: 60px 0;
  background-color: white;
  white-space: nowrap;
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 30s slide infinite linear;
}
.logos-slide img {
  height: 90px;
  margin: 0 40px;
  filter: grayscale(100%);
}
.logos-slide img:hover {
  filter: none;
} */



.client-section {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 50px 0;
}

.client-text  {
  text-align: center;
  margin-bottom: 3%;
}

.client-text h3 {
  color: rgba(41, 50, 122, 1);
  font-family: 'Urbanist', sans-serif;
  /* font-size: 50px; */
  font-size: clamp(30px, 5vw, 50px); /* Adjusts between 14px and 18px */

  font-weight: 400;
}

.client-text p {
  color: rgba(152, 151, 151, 1);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.logos {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.logos-slide {
  display: flex;
  animation: slide 30s linear infinite;
}

.logos-slide img {
  height: 70px;
  margin: 0 20px;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logos-slide img:hover {
  filter: none;
  transform: scale(1.1);
}
.logos:hover .logos-slide {
  animation-play-state: paused;
}

/* Sliding Animation */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .client-text h1 {
    font-size: 1.8rem;
  }

  .client-text p {
    font-size: 16px;
  }

  .logos-slide img {
    height: 50px;
    margin: 0 10px;
  }

  .logos-slide {
    animation: slide 20s linear infinite;
  }
}

@media (max-width: 480px) {
  .client-text h1 {
    font-size: 1.5rem;
  }

  .client-text p {
    font-size: 14px;
  }

  .logos-slide img {
    height: 40px;
    margin: 0 8px;
  }

  .logos-slide {
    animation: slide 15s linear infinite;
  }
}


/* ------------------------------------------------------------ */

.innovation-section {
  background: linear-gradient(180deg, #071456 34.69%, #212f73 100%);
  height: 1000px;
}
.fw-bold-gif-text {
  color: rgba(255, 255, 255, 1);
  font-family: Urbanist;
  font-weight: 500;
  font-size: 120px;
}

.scroll-content {
  max-height: 200px; /* Adjust height as needed */
  overflow-y: scroll; /* Enables scrolling */
  padding: 10px;
  scrollbar-width: none; /* Hides scrollbar for Firefox */
  -ms-overflow-style: none; /* Hides scrollbar for IE/Edge */
}

/* Hide scrollbar for Chrome, Safari, and Edge */
.scroll-content::-webkit-scrollbar {
  display: none;
}

.integrity .custom-btn::after {
  background-color: #ffffff;
}

.integrity .custom-btn:hover span {
  color: #001f66; /* Change text color to blue */
}
.sports {
  background: url("Logo/Rectangle\ 22131\ \(1\).svg");
  height: 1500px;
}

.ntegrity-second {
  padding-left: 5%;
}
.fixed-header {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 26px;
  padding-left: 2%;
}

.innovation-section h2 {

  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size:  clamp(30px, 5vw, 80px);
}

.innovation-section p {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size:  clamp(18px, 1.8vw, 22px);
}
/* ----------------------------------------------------------------------------- */
/* mobileview integrity */
.integritymobile{
  background: linear-gradient(180deg, #071456 35%, #212F73 100%);
  color: white;
}

.intergrityheadingmain{
  font-family: 'Urbanist',sans-serif;
  font-size: 26px;
  font-weight: 400;
}
.integritymobile  p {
  font-family: 'Poppins',sans-serif;
  font-size: 12px;
  font-weight: 400;
}
/* -------------------------------------------------------------------------------------------------------------------- */
/* zeetius section */

/* Hero Section */
/* Hero Section Styling */
.zeetius-section {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Prevents overflow by allowing content to expand */
  background: url("../Logo/stadium.webp") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px; /* Adds padding to prevent overlap */
  overflow: hidden; /* Prevents content from overflowing */
}

/* Dark Overlay for Readability */
.zeetius-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Content Styling */
.container {
  position: relative;
  z-index: 2;
  max-width: 90%; /* Prevents content from stretching too much */
}

/* Logo */
.zeetiuslogo {
  width: 180px; /* Adjust as needed */
  max-width: 100%;
}

/* Text */
.zeetius-text {
  font-size: clamp(22px, 4vw, 40px);
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  margin-bottom: 20px; /* Adds space below text */
}

/* Button */
.zeetius-btn {
  display: inline-block;
  background: red;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.zeetius-btn:hover {
  background: darkred;
}

/* Arrow */
.arrow {
  margin-left: 5px;
  font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .zeetius-text {
    font-size: 28px;
  }
  .zeetius-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .zeetiuslogo {
    width: 120px;
  }
  .zeetius-text {
    font-size: 22px;
  }
  .zeetius-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

  /* ------------------------------------------------------------------------------------------------------------------- */
  /* join our team */
  .icore-join-team {
    background-color: #ffffff;
  }
  
  .icore-join-heading {
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    /* font-size: 50px; */
    font-size: clamp(30px, 5vw, 50px); /* Scales between 30px and 50px */
    color:rgba(7, 20, 86, 1);
    ;
  }
  
  .icore-join-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    /* font-size: 20px; */
    font-size: clamp(14px, 1.8vw, 18px); /* Adjusts between 14px and 18px */
    
    color:rgba(152, 151, 151, 1);
  }
  .icore-join-image{
    padding-left: 10%;
  }
  
  /* Button Styling */
/* Button Styling */
.zeetius-custom-btn-section {
    display: inline-block;
    background-color: #de2f1e;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    white-space: nowrap; /* Prevents text from breaking */
    max-width: 100%; /* Ensures it stays inside container */
    text-align: center;
    
  }
  


/* --------------------------------------------------------------------------------------------------------------------------------- */
/* what our client say section */
/* .client-heading{
  font-family: 'Urbanist',sans-serif;
  font-size: 60px;
  font-weight: 500;
  color: rgba(41, 50, 122, 1);

}

.text-muted {
  max-width: 86%;
  font-family:'Poppins',sans-serif;
  font-size: 22px;
  font-weight: 300;
  padding-left: 10%;

}

.testimonal-section-card{
  color: red;
  border: 1px black solid;
  align-items: center;
  width: 729px;
  height: 234px;
} */
/* General Styling */
.client-heading {
  font-family: 'Urbanist', sans-serif;
    font-size: clamp(30px, 5vw, 50px); /* Scales between 30px and 50px */
  /* font-size: 2.5rem; */

  font-weight: 400;
  color: #29327A;
}

.client-subheading {
  max-width: 86%;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 300;
  margin: 0 auto;
}
/* -------------------------------------------- */

/* Carousel Styling */
.carousel-container {
  overflow: hidden;
  position: relative;
  max-width: 800px;
  margin: auto;
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  background: #fff;
  padding: 20px;
  text-align: center;
  border: 1px solid #ddd;
  /* border-radius: 8px; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card h4{
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #29327A;
}


.testimonial-position {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #777;
}

.testimonial-text{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #777;
}


.testimonial-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Navigation Buttons */
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
}

.prev-btn {
  left: -40px;
}

.next-btn {
  right: -40px;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  width: 5px;
  height: 5px;
  background: #ccc;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #29327A;
  width: 20px;
  border-radius: 5px;
  height: 6px;
}





/* --------------------------------------------------------------------------------------- */
/* blog and news section */

.blog-title {
  font-size: 40px;
  font-weight: 400;
  color: #001F5B;
  max-width: 100%;
}

.blog-subtext {
  font-size: 18px;
  color: #666;
  max-width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.nav-tabs .nav-link {
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #777;
  border: none;
}

.nav-tabs .nav-link.active {
  color: #001F5B;
  border-bottom: 3px solid #001F5B;
}

.blog-card, .news-card {
  background: #fff;

  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.3s;
  width: 100%;
}

.blog-img, .news-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-content, .news-content {
  padding: 15px;
}

.blog-meta, .news-meta {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}

.read-more {
  color: #001F5B;
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.custom-btn-section {
  display: inline-block;
  background-color: #E63946;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  
}

.custom-btn-section:hover {
  background-color: #C1272D;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 30px;
    text-align: center;
  }

  .blog-subtext {
    font-size: 16px;
    text-align: center;
  }

  .blog-card, .news-card {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  .news-img {
    width: 100%;
    height: auto;
  }

  .blog-content, .news-content {
    padding: 10px;
  }

  .blog-content h4{
    font-size: 18px !important;
  }
  .blog-content p{
    font-size: 12px !important;
  }
}
.blog-card {
  overflow: hidden;

  background: #fff;
  transition: transform 0.3s ease-in-out;
}



/* Image Container */
.blog-img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  
}

.blog-img {
  width: 100%;
  height: 100%; /* Adjust height as needed */
  object-fit: cover;
  
}

/* Text Overlay on Image */
.overlay-blog {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0, 0.4);
  backdrop-filter: blur(5px);
  padding: 10px 15px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  flex-wrap: wrap;
}

/* Blog Content */
.blog-content {
  padding: 15px;
}

.blog-content h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}



.read-more:hover {
  text-decoration: underline;
}

.blog-content h4{
  font-family: "Urbanist", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #29327A;
}

.blog-content p{
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #777;
}
.readmorearrow{
  width: 2%;
}
.readmorearrownews{
  width: 3%;
}

/* arrow width different screens */
@media(min-width:1441px){
  .readmorearrownews{
    width: 2%;
  }
  .readmorearrow{
    width: 1%;
  }
}

@media(max-width:1440px){
  .readmorearrownews{
    width: 4%;
  }
  .readmorearrow{
    width: 3%;
  }
}

@media(max-width:768px){
  .overlay-blog{
    height: 50px;
  }
}

.news-content h4{
  font-family: "Urbanist", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #29327A;
}

.news-content p{
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #777;
}

@media (max-width: 1024px) {
  .news-card {
    flex-direction: column !important; /* Ensures image stacks on top */
  }
}



/* -------------------------------------------------------------------------------------- */
/* footer */

.footer {
  background-color: #1e2a5a; /* Dark blue background */
  color: white;
}

.footer-title {
  font-size: 35px;
  font-weight: 400;
}

.footer-desc {
  font-family: 'Poppins',sans-serif;
  font-weight: 200;
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 63%;
}

.footer-heading {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 10px;
  
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  display: inline-block;
  position: relative;
}

.footer-links a:hover {
  color: white;
}

.footer-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease-in-out;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.footer-social a {
  color: white;
  font-size: 18px;
  margin-left: 10px;
  transition: opacity 0.3s;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer .custom-btn::after {
  background-color: #ffffff;
}

.footer .custom-btn:hover span {
  color: #001f66; /* Change text color to blue */
}

/* ---------------------------------------------------------------------------------------------------------------------------------- */
/* footer for the mobile view */

.mobile-footer {
  background: #1e2a5a;
  color: white;
  padding: 20px;
}

.mobile-footer .footer-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-footer .footer-title h2 {
  font-size: 18px;
  margin: 0;
}

.mobile-footer .footer-title .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.mobile-footer .footer-dropdown {
  display: none;
  padding: 10px 0;
}

.mobile-footer .footer-dropdown a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 5px 0;
}

.mobile-footer .footer-dropdown a:hover {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

/* Footer Bottom */
.mobile-footer .footer-bottom {
  text-align: center;
  margin-top: 20px;
}

.mobile-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 5px;
}

.mobile-footer .footer-links a {
  color: white;
  text-decoration: none;
}

.mobile-footer .footer-links a:hover {
  text-decoration: underline;
}

/* for the displaying the footer based on the screen width */

/* Show Mobile Footer (Up to 768px) and Hide Desktop Footer */
@media (max-width: 768px) {
  .footer {
    display: none; /* Hide desktop footer */
  }
  .mobile-footer {
    display: block; /* Show mobile footer */
  }
}

/* Show Desktop Footer (Above 768px) and Hide Mobile Footer */
@media (min-width: 769px) {
  .footer {
    display: block; /* Show desktop footer */
  }
  .mobile-footer {
    display: none; /* Hide mobile footer */
  }
}
/* ---------------------------------------------- */
