@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #FAFAFA;
  --default-color: #212529;
  --accent-color: #2E6683;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-hover-color: #2F5970;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */

}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

/* heading all */
/* .section-title {
  text-align: left;          
  max-width: 700px;         
  margin-left: 0;           
  padding-left: 15px;        
}

.section-title h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #035D67;           
  margin-bottom: 0.5rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
} */

/* heading all */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  color: black;
  background-color: #F8FCFF;

}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.header .logo i {
  font-size: 20px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}


.scrolled .header.active {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  /* background: linear-gradient(to right, #314755, #26a0da);
  color: white; */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.btn-login,
.btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  line-height: 1;
  transition: all 0.2s ease-in-out;
}

.btn-login {
  color: #002147;
  border: 1px solid #002147;
  background-color: transparent;
}

.btn-login:hover {
  background-color: #002147;
  color: #fff;
}


/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;

  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;

  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    font-weight: bold;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;

  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

.navmenu .dropdown ul :hover {
  background: linear-gradient(to right, #314755, #26a0da);
  color: white;
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {


  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding-top: 60px;
  padding-bottom: 60px;
}

.testimonials .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

.testimonials .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
  color: var(--accent-color);
}

.testimonials .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials .testimonial-item:nth-child(3n-1),
  .testimonials .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials .client-details h3 {
    font-size: 1rem;
  }

  .testimonials .client-details .position {
    font-size: 0.8125rem;
  }
}


/*--------------------------------------------------------------
# Recent News Section
--------------------------------------------------------------*/
.recent-news article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-news .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-news .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-news .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-news .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-news .title a:hover {
  color: var(--accent-color);
}

.recent-news .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-news .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-news .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# News Hero Section
--------------------------------------------------------------*/
.news-hero {
  padding-top: 60px;
  padding-bottom: 40px;
}

.news-hero .post-item {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.news-hero .post-item:hover .post-img img {
  transform: scale(1.1);
}

.news-hero .post-item:hover .post-title a {
  color: var(--accent-color);
}

.news-hero .post-item .post-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.news-hero .post-item .post-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-hero .post-item .post-img .category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 15px;
  font-size: 14px;
  color: var(--contrast-color);
  border-radius: 4px;
  z-index: 1;
}

.news-hero .post-item .post-img .category.entertainment {
  background-color: #e74c3c;
}

.news-hero .post-item .post-img .category.business {
  background-color: #3498db;
}

.news-hero .post-item .post-img .category.technology {
  background-color: #2ecc71;
}

.news-hero .post-item .post-img .category.lifestyle {
  background-color: #9b59b6;
}

.news-hero .post-item .post-content .post-title {
  margin: 0 0 12px;
  font-family: var(--heading-font);
}

.news-hero .post-item .post-content .post-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.news-hero .post-item .post-content .post-title a:hover {
  color: var(--accent-color);
}

.news-hero .post-item .post-content .post-meta {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.news-hero .post-item .post-content .post-meta .dot {
  margin: 0 8px;
}

.news-hero .main-post {
  margin-bottom: 0;
}

.news-hero .main-post .post-img {
  margin-bottom: 20px;
}

.news-hero .main-post .post-title {
  font-size: 28px;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .news-hero .main-post .post-title {
    font-size: 24px;
  }
}

.news-hero .side-posts .side-post {
  margin-bottom: 30px;
}

.news-hero .side-posts .side-post:last-child {
  margin-bottom: 0;
}

.news-hero .side-posts .side-post .post-title {
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .news-hero .side-posts {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# News Posts Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}


@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
}

#testimonials .testimonial-item {
  width: auto;
  /* ensure width automatic for owl carousel */
}



.btn-grad {
  background-image: linear-gradient(to right, #314755 0%, #26a0da 51%, #314755 100%);
  margin: 10px auto;
  /* yahan auto lagaya hai left-right center karne ke liye */
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
  border: none;
  cursor: pointer;
}

.btn-grad:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}



/* slider */
.slider {
  position: relative;
  width: 100%;
  /* overflow: hidden; */
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 300px;
  display: flex;
  background-size: cover;
  background-position: center;
  align-items: flex-start;
  position: relative;
  color: white;
  justify-content: flex-start;
}
.slide1 {
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
  background-image: 
   url('../img/banner.png'), radial-gradient(circle at 20% 40%, #e2eefa 15%, transparent 40%), radial-gradient(circle at 80% 20%, #edf4fd 20%, transparent 50%);
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
margin-top: 90px;
margin-right:50px
}



.overlay-content {
  position: absolute;
  left: 5%;
  padding: 40px 20px;
  max-width: 800px;
  text-align: left;
  border-radius: 10px;
  z-index: 2;
}

.heading-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

.heading-title .brand {
  color: #2E6582;
  /* Blue */
}

.heading-title .text {
  color: black;
}


.overlay-content p {
  font-size: 16px;
  color: #2988B6;
  margin-top: 10px;
  margin-bottom: 25px;
}

.btn-orange {
  background: linear-gradient(to right, #203345, #1b7bb5);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 25px;
  margin: 5px 10px 5px 0;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: transparent;
  border: 1px solid #2E6582;
  color: white;
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.search-box {
  background: white;
  border-radius: 30px;
  padding: 10px;
  width: 100%;
  max-width: 850px;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.search-box .form-select {
  border: none;
  box-shadow: none;
  background-color: transparent;
  flex: 1;
}

.search-box .form-select:focus {
  outline: none;
  box-shadow: none;
}

.search-box i {
  margin-right: 10px;
  color: #6c757d;
}

.search-box .flex-grow-1 {
  display: flex;
  align-items: center;
  flex: 1;
}

@media (max-width: 992px) {
  .slide {
    height: auto;
    padding: 60px 15px;
  }

  .overlay-content {
    position: relative;
    top: 15%;
    left: 0;
    padding: 2px;
    width: 100%;
    max-width: 100%;
  }

  .search-box {
    /* flex-direction: column; */
    gap: 10px;
    border-radius: 20px;
    padding: 5px;
  }

  .search-box button {
    /* width: 100%; */
  }
}

@media (max-width: 768px) {
  .slide1 {
   margin-top:30px;
  }
.heading-title{
	font-size: 1rem;
}

}

@media (max-width: 480px) {
  .overlay-content h2 {
    font-size: 1rem;
  }

  .overlay-content p {
    font-size: 0.9rem;
  }

  .btn-orange {
    padding: 7px 18px;
    font-size: 0.9rem;
  }
}

.custom-nav-buttons .btn {
  background: transparent;
  color: #314755;
  border: 2px solid #314755;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 50px;
  /* Fully rounded pill shape */
  transition: all 0.4s ease;
}

.custom-nav-buttons .btn:hover {
  background: linear-gradient(to right, #314755, #26a0da);
  color: #fff;
  border-color: transparent;
}

/* slider end */

/* comapany card */

/*   
 .recruiter-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
  height: 100%;
} */

.recruiter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.company-logo {
  width: 100px !important;
  height: 50px;
  object-fit: contain
}

.company-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.rating i {
  font-size: 0.9rem;
}

.rating-score {
  font-size: 0.75rem;
  margin-left: 5px;
}

.job-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: #222;
}

.job-location {
  color: #666;
  font-size: 0.9rem;
}

.bg-light-success {
  background-color: #e6fff2;
  border: 1px solid #a1f0cb;
  border-radius: 5px;
}

.company-heading {
  color: #2C7498;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 0.5rem;
}

.job-section-header p {
  font-size: 1rem;
  color: #555;
  /* subtle gray */
  max-width: 600px;
  /* limit width for better readability */
  line-height: 1.5;
  margin: 0;
}

.btn-outline-primary {
  color: #1C4980;
  border: 1px solid #1C4980;
  background-color: transparent;
  font-weight: 600;
  padding: 6px 15px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #1C4980;
  color: #fff;

}

.view-all-link {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.view-all-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.view-all-link .arrow {
  font-size: 1.20rem;
}

.small-text {
  font-size: 14px;
}


@media (max-width: 768px) {
  .company-heading {
    font-size: 20px;
  }

  .job-section-header p {
    font-size: 14px;
    display: none;
  }

  .view-all-link {
    font-size: 14px;
    gap: none;
  }

  .view-all-link .arrow {
    margin-right: 10px;
  }
}

/* comapnay card end */

#dynamic-text {
  transition: opacity 0.5s ease-in-out;
}

.heading-title .text {
  transform: translateX(-100%);
  /* start fully left, offscreen */
  transition: transform 1s ease;
}

.heading-title .text.slide-in {
  transform: translateX(0);
  /* slide to original position */
}



/*********************Featured job new */
.job-item {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-left: 5px solid #035D67;
  /* Custom hospital color */
  transition: all 0.3s ease;
  border-radius: 8px;
}

.job-item:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.job-item img {
  object-fit: cover;
}

.job-item h5 {
  font-weight: 600;
  color: #333333;
}

.job-item span,
.job-item small {
  color: #6c757d;
  font-size: 14px;
}

.job-item .btn-primary {
  background: linear-gradient(to right, #314755, #26a0da);
  border-color: #2C6F91;
}

.job-item .btn-primary:hover {
  background: linear-gradient(to right, #314755, #26a0da);
  border-color: #2C6F91;
}

.job-item .btn-light.btn-square {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-pills .nav-link {
  background: none;
  border: none;
  color: #333;
  font-weight: 500;
  padding: 10px 15px;
  transition: color 0.3s;
}

.nav-pills .nav-link.active {
  border-bottom: 3px solid #035D67;
  color: #035D67;
}

.trend-jobs {
  color: #2C7498;
  font-weight: bold;
  font-size: 30px;
}

/* 
@media (max-width: 768px) {
      .trend-jobs{
              font-size: 20px;
      }
    .job-item {
        padding: 20px;
    }

    .job-item h5 {
        font-size: 18px;
    }

    .job-item span {
        display: block;
        margin-bottom: 5px;
    }

    .nav-pills .nav-link {
        font-size: 14px;
    }
} */


/* Transparent button style */
.boxed-btn4 {
  background-color: transparent !important;
  border: 2px solid #2D6683;
  /* Example blue border */
  color: #2D6683 !important;
  /* Button text color */
  padding: 8px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.boxed-btn4:hover {
  background: linear-gradient(to right, #314755, #26a0da) !important;
  color: white !important;
  text-decoration: none;
}

/***************Featured job new */

/* --- Testimonial Slider Container --- */
/* .swiper1 {
  padding: 0 10px 50px; 
  background: linear-gradient(to right, #f0f5fa, #fdfbee);
} */

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  display: flex;
  height: auto;
}

/* --- Testimonial Card --- */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* --- Quote Icon --- */
.testimonial-quote {
  font-size: 40px;
  color: #2C7498;
  /* dark blue */
  margin-bottom: 10px;
}

/* --- Testimonial Content --- */
.testimonial-content {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* --- Footer with author info --- */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}

.testimonial-footer img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.testimonial-footer h6 {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  color: #2D6683;
}

.testimonial-footer small {
  display: block;
  color: #777;
  font-size: 0.85rem;
}

/* --- Swiper Pagination Dots --- */
.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #d3d3d3;
  /* gray for inactive */
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #ff9600;
  /* orange active */
  transform: scale(1.1);
}

/* --- Section Heading --- */
.section-heading {
  text-align: center;
}

.section-heading p {
  font-size: 1rem;
}

.client-review-heading {
  color: #2C7498;
  font-weight: bold;
  font-size: 30px;
}

/* --- Responsive Styles --- */

/* Small screens: mobile */
@media (max-width: 576px) {
  .testimonial-card {
    padding: 20px;
    margin: 0 10px;
  }

  .testimonial-content {
    font-size: 0.95rem;
  }

  .testimonial-quote {
    font-size: 30px;
  }

  .testimonial-footer h6 {
    font-size: 0.95rem;
  }

  .testimonial-footer small {
    font-size: 0.8rem;
  }
}

/* Medium screens: tablets */
@media (max-width: 768px) {
  .section-heading p {
    font-size: 14px;
    /* smaller paragraph */
  }

  .client-review-heading {
    font-size: 22px;
  }
}

/* --- Testimonial Slider Container --- */

/* --- Mobile Responsive Enhancements --- */
@media screen and (max-width: 576px) {
  .career-section-title h2 {
    font-size: 1.5rem;
  }

  .career-section-title p {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .title a {
    font-size: 1rem;
  }

  .post-author-img {
    width: 40px;
    height: 40px;
  }

  #recent-news article {
    margin: 0 10px 20px;
  }


}

@media (max-width: 768px) {
  .job-item {
    padding: 12px !important;
  }

  .job-item h5 {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .job-item h6 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .job-item .text-muted,
  .job-item .small,
  .job-item span,
  .job-item p {
    font-size: 11.5px !important;
  }

  .job-item img {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain;
  }

  .job-item .badge {
    font-size: 10px;
    padding: 2px 6px;
  }

  .job-item .btn,
  .job-item .btn-square {
    font-size: 10px;
    padding: 4px 8px !important;
  }

  .job-item .job-flex-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }

  .job-item .job-logo {
    flex: 0 0 50px;
  }

  .job-item .job-content {
    flex: 1 1 auto;
  }

  .job-item .job-actions {
    flex: 0 0 120px;
    text-align: right;
  }
}


.suggestion-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: none;
  border-top: none;
  z-index: 999;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  color: black;
  border-radius: 5px;
  padding: 5px;
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  color: black;
}

.suggestion-item:hover {
  background-color: #f7f7f7;
}

.Job_des {
  max-width: 250px;
}

.recruiter-card {
  width: 300px;
  /* Fixed width */
  height: 300px !important;
  max-height: 300px !important;
  /* Optional: control height */
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  /* margin: 10px; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recruiter-card:hover {
  transform: translateY(-5px);
}

.company-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #eee;
}

.company-name {
  font-size: 16px;
  font-weight: 600;
}


.job-title {
  font-size: 15px;
  font-weight: 500;
  color: #444;
  margin-top: 10px;
}

.job-location {
  font-size: 14px;
  color: #666;
}

.rating i {
  font-size: 12px;
}

.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.banner {
  width: 90%;
  height: 300px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

/* ✅ Mobile view me height 0 kar do */
@media (max-width: 768px) {
  .banner {
    height: 100px;
  }
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* internship */
@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll-loop {
  animation: scroll-loop 15s linear infinite;
}


.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sliderIntern {
  padding: 50px;
}

/* jobs */
@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll-loop {
  animation: scroll-loop 15s linear infinite;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.recruiter-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.company-logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.rating-score {
  font-size: 12px;
  padding: 2px 6px;
}

.clogo {
  width: 80px !important;
  height: 80px;
  object-fit: contain
}

/*    Career Insights */

h2 {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 28px;
  line-height: 1.3;
}

.content {
  color: #000;
  /* ya #333 for soft black */
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  font-family: 'Segoe UI', sans-serif;
}

img {
  max-width: 100%;
  border-radius: 12px;
  
  display: block;
}

.key-points {
  background-color: rgb(219, 234, 254);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-top: 20px;
  /* added to separate from image */
}

.key-points h5 {
  font-weight: 600;
  color: #1d4ed8;
  margin-bottom: 16px;
  font-size: 18px;
}

.key-points ul {
  padding-left: 20px;
  margin: 0;
}

.key-points li {
  color: #1f2937;
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.key-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0f766e;
  font-weight: bold;
  font-size: 14px;
}

/* Responsive spacing */
@media screen and (max-width: 768px) {
  .col-md-6 {
    margin-bottom: 30px;
  }

  .key-points {
    padding: 20px;
  }

  h2 {
    font-size: 22px;
  }

  .content {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .search-box {
    flex-wrap: nowrap;
    /* Don't wrap to next line */
    /* overflow-x: auto; */
    /* Allow scroll if not fitting */
    min-width: 350px;
  }

  .search-box .form-select,
  .search-box .form-control
   {
    flex: 0 0 auto;
    /* Don't stretch or shrink */
    min-width: 100px;
    /* Reduce width */
    font-size: 13px;
    padding: 2px 3px;
  }



 .search-box .btn-orange {
    background: linear-gradient(to right, #203345, #1b7bb5);
    color: white;
    border: none;
    border-radius: 5px;
    /* padding: 10px 25px; */
    margin: 0px 1px 0px 0;
    transition: all 0.3s ease;
     min-width: 50px;
    /* Reduce width */
    font-size: 13px;
    padding: 2px 3px;
  }

 .search-box .btn-orange:hover {
    background-color: transparent;
    border: 1px solid #2E6582;
    color: white;
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  }
  
.suggestion-box {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: none;
  border-top: none;
  z-index: 999;
  max-height: 100px;
  overflow-y: auto;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  color: black;
  border-radius: 5px;
  padding: 5px;
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
  font-size: 13px;
  border-bottom: 1px solid #eee;
  color: black;
}

.suggestion-item:hover {
  background-color: #f7f7f7;
}
.search {
  display: none;
}
}



.auth-buttons-container {
  flex-wrap: nowrap;
}

.add{
  display: none;
}
@media (max-width: 768px) {
  .auth-buttons-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
  }

  .auth-buttons-container .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .auth-buttons-container .vr {
    display: none; /* Vertical divider hidden on mobile */
  }

  .auth-buttons-container span {
    font-size: 14px;
    text-align: center;
  }
}
/*banner  */

  @media (max-width: 768px) {
    .mobile-flex-fix {
      flex-direction: column;
      padding: 0 15px;
      gap: 20px;
    }

    .mobile-flex-fix > div {
      flex: 0 0 100% !important;
      max-width: 100% !important;
      padding: 20px !important;
    }

    .mobile-flex-fix img {
      width: 100% !important;
      height: auto !important;
      border-radius: 10px;
    }
  }



