/* Fonts */
:root {
  --default-font: "Poppins", sans-serif;
  --heading-font: "Times New Roman", Times, serif;
  --nav-font: "Merriweather", 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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2a2a; /* Color for headings, subheadings and title throughout the website */
  --accent-color:#0d4e85; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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-color: #d1d1d1;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color:#0d4e85; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #f9f9f9;
  --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
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  /* color: #FFD000 ; */
  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);
}

.section-bg
{
  background-color: #e6ebf0;
}

/* 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);
  }
}
/* Top bar and Header Section */
header {
  color: #444444;
  transition: all 0.5s;
  z-index: 997;
  background-color:#0D4E84 ;
  font-weight: bold;

}

.header .topbar {
  background-color:#0d4e85 ;
  height: 40px;
  padding: 0px 30px 0px 30px;
  font-size: 14px;
  transition: all 0.5s;
  font-weight: bold;
}

.header .topbar .contact-info i {
  font-style: normal;
  color:#ffcf00;
  padding:10px;

}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span 
{
  padding:10px;
  padding-left: 10px;
  color: #ffffff;
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: rgba(255, 255, 255, 0.6);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: #ffffff;
}

.header .branding {
  background-color:  #ffffff;
  min-height: 60px;
  padding: 0px 30px 0px 50px;

}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 46px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #222222;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* 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: #222222;
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--default-font);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 100%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0; /* Square shape */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }
  
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .navmenu .dropdown ul a:hover {
    /* background-color: #0d4e84 ; Light blue hover effect */
    color: #0047ab; /* Darker blue text color */
  }
  
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .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: #002347;


  }
  .navmenu li:hover>a,

  .navmenu .active:hover {
    color: #0D4E84 ;
    font-weight: bold;
    

  }


  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    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: #222222;
  }

  .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:#ffcf00;
  }

  .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 - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #222222;
    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: #ffffff;
    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: #222222;
    padding: 10px 20px;
    font-family: var(--default-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: rgba(16, 110, 234, 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #106eea;
    color: #ffffff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #106eea;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #106eea;
    color: #ffffff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #ffffff;
    border: 1px solid rgba(68, 68, 68, 0.1);
    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: #ffffff;
    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;
  }
}

/*-------------------------------------------------------------- 
# Frequently Asked Questions 
--------------------------------------------------------------*/ 
.faq .faq-list {
   padding: 0 100px; 
  } 
  
.faq .faq-list ul
 {
   padding: 0;
    list-style: none; 
  }
   
  .faq .faq-list li+li 
  { 
    margin-top: 15px;
   } 
   
   .faq .faq-list li
    { 
      padding: 20px;
       background: rgb(243, 245, 250); 
       border-radius: 4px; position: relative; 
      } 
      
.faq .faq-list a 
{ display: block;
   position: relative;
   font-family: var(--default-font);
    font-size: 16px; 
    line-height: 24px;
     font-weight: 500; 
     padding: 0 30px; 
     outline: none; 
     cursor: pointer;
     font-weight: bold;

     } 
     
.faq .faq-list .icon-help 
{ 
  font-size: 24px; 
  position: absolute;
   right: 0; 
   left: 20px;
    color: #0d4e85; 
  } 
  
  .faq .faq-list .icon-show, .faq .faq-list .icon-close
   {
     font-size: 24px; 
     position: absolute; 
     right: 0; top: 0;
     } 
     
    .faq .faq-list p 
    { 
      margin-bottom: 0; 
      padding: 10px 0 0 0; 
    } 
    
    .faq .faq-list .icon-show 
    { 
      display: none; 
    } 
    
    .faq .faq-list a.collapsed 
    {
       /* color: #37517e;  */
       transition: 0.3s; 
      } 
      
  .faq .faq-list a.collapsed:hover 
  { 
    color: #0d4e85; 
  } 
  
  .faq .faq-list a.collapsed .icon-show 
  { 
    display: inline-block; 
  
  } 
  
  .faq .faq-list a.collapsed .icon-close 
  { 
    display: none; 
  } 
  
  @media (max-width: 1200px)
   { 
    .faq .faq-list
     { padding: 0;
     } 
  }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color:#0d4e85 ;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color:#0d4e85;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color:#ffcf00;
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .contact-info .contact-number a {
  color:#0d4e85;
  text-decoration: none;
}


.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 25px 45px;
  transition: 0.3s;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 10px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: perspective(1000px) translateZ(0);
}


.features-cards .feature-box:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}


.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/* Section background and padding */
#stats.section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

/* Stats card styling */
.stats-item {
  background-color: #043f7a;
  color: white;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stats-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.stats-item i {
  margin-bottom: 10px;
  display: block;
}

.stats-item span {
  font-size: 28px;
  font-weight: 700;
  display: block;
}

.stats-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .stats-item {
    margin-bottom: 20px;
  }
}


/* Custom CSS for positioning and animations */
        #whatsapp .whatsapp-button {
            position: fixed;
            transform: all .5s ease;
            text-align: center;
            box-shadow: 0 0 20px rgba(0,0,0,0.15);
            left: 20px;
            bottom: 30px;
            font-size: 24px;
            color: white;
            background-color: #25D366;
            border-radius: 50px;
            border-right: none;
            display: block;
            border: 0;
            z-index: 9999;
            width: 50px;
            height: 50px;
            line-height: 50px;
            overflow: hidden;
        }

        #whatsapp .whatsapp-button::before, #whatsapp .whatsapp-button::after {
            content: "";
            position: absolute;
            z-index: -1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            -webkit-animation: pulse-border 1500ms ease-out infinite;
            animation: pulse-border 1500ms ease-out infinite;
        }

        #whatsapp .whatsapp-button::after {
            animation-delay: 750ms;
        }

        #whatsapp .whatsapp-button:focus {
            border: none;
            outline: none;
        }

        @keyframes pulse-border {
            0% { transform: translateX(-50%) translateY(-50%) scale(1); opacity: 1; }
            100% { transform: translateX(-50%) translateY(-50%) scale(1.5); opacity: 0; }
        }
 


/*-------------------------------------------------------------- # Breadcrumbs --------------------------------------------------------------*/ 
.breadcrumbs-header .page-header 
{ 
   margin-top: 5px; 
   padding: 120px 0 70px 0;
   position: relative; 
   background-size: cover; 
   background-position: center; 
   background-repeat: no-repeat;
   } 
   
.breadcrumbs-header .page-header:before
 { content: ""; 
  background-color: rgba(14, 29, 52, 0.8); 
  position: absolute; 
  inset: 0;
 } 
 
 .breadcrumbs-header .page-header h2 
 { 
  font-size: 56px;
   font-weight: 500;
    font-weight: bold; 
    color: #fff;
     font-family: var(--default-font); 
    }
    
.breadcrumbs-header .page-header p 
{ 
  font-size: 18px;
  color: #fff;
   font-weight: 500; 
   font-family: var(--default-font); 
} 
.breadcrumbs-header nav 
{ 
  background-color: #f3f6fc; 
  padding: 20px 0; 
}

@media (max-width: 992px) 
{ 
  .breadcrumbs-header .page-header { margin-top: 5px; } 
  
  .breadcrumbs-header .page-header h2 { font-size: 34px; 
    
  font-weight: 500; 
  font-weight: bold;
   color: #fff; 
   font-family: var(--default-font); 
  }
 } 
 
 .breadcrumbs-header nav ol {
   display: flex; 
   flex-wrap: wrap; 
   list-style: none;
    margin: 0; 
    padding: 0; 
    font-size: 16px;
    font-weight: 600;
     color: #0e1d34; 
    } 
    
    .breadcrumbs-header nav ol a {
      color:#37517e; 
      transition: 0.3s;
     } 
     
     .breadcrumbs-header nav ol a:hover { text-decoration: underline; }
     
     .breadcrumbs-header nav ol li+li { padding-left: 10px; } 
     
     .breadcrumbs-header nav ol li+li::before { display: inline-block; 
      
      padding-right: 10px; 
      color: #4278cc; 
      content: "/"; 
    }

/*--------------------------------------------------------------
  Courses Section - Responsive Design
--------------------------------------------------------------*/

/* Section Title */
.section-title {
  font-family: "Merriweather",  sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #343a40;
  text-align: center;
}

/* Responsive Course Category */
.course-category {
  font-size: 1.5rem; /* Adjust size as needed */
  font-weight: bold;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 10px; 
  margin-bottom: 20px;/* Space between text and underline */
}

.course-category::after {
  content: "";
  display: block;
  width: 80px; /* Adjust line width */
  height: 4px; /* Adjust thickness */
  background-color: #ffc107; /* Yellow color */
  position: absolute;
  bottom: 0;
  left: 0;
}


/* Course Cards - Responsive Grid */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Auto adjusts */
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

/* Course Card */
.course-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.course-content {
  padding: 20px;
  text-align: center;
}

.course-content h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
}

.course-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 10px 0;
}

/* Book a Demo Button */
.book-btn {
  color: var(--contrast-color);
  background:#0d4e85;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px auto;
  animation: fadeInUp 1s both 0.4s;
  text-align: center;
  width: 100%;
}

.book-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: #fff;
}

/*--------------------------------------------------------------
  Responsive Adjustments
--------------------------------------------------------------*/

/* Tablets */
@media (max-width: 1024px) {
  .course-category {
    font-size: 1.8rem;
  }

  .course-card {
    margin-bottom: 15px;
    
  }

  .book-btn {
    font-size: 14px;
    padding: 8px 24px;
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .course-category {
    font-size: 1.5rem;
  }

  .course-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 10px;
    
  }

  .course-card img {
    height: 180px;
  }

  .book-btn {
    font-size: 13px;
    padding: 6px 20px;
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.4rem;
  }

  .course-category {
    font-size: 1.3rem;

  }

  .course-category::after {
    width: 50px;
    
  }

  .course-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    
  }

  .course-card img {
    height: 160px;
    
  }

  .book-btn {
    font-size: 12px;
    padding: 6px 16px;
  }
}


/* Modal Styling */
.modal-content {
  border-radius: 10px;
}

.modal-header {
  background-color: #007bff;
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.modal-title {
  font-weight: bold;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color:#0d4e85;  /* Blue background for all stats items */
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 20px;  /* Reduced padding for smaller cards */
  border-radius: 10px;
  display: flex;
  flex-direction: column; /* Align content vertically */
  align-items: center; /* Center content horizontally */
  text-align: center; /* Center the text */
  height: 180px;  /* Adjusted height for more compact cards */
  margin-bottom: 15px; /* Reduced bottom margin for closer spacing */
}

.stats .stats-item i {
  font-size: 42px;  /* Icon size */
  color: #ffcf00;  /* Icon color changed to yellow */
  margin-bottom: 10px;  /* Reduced space between icon and text */
}

.stats .stats-item span {
  color:white;  /* Number text color changed to yellow */
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  color: white;  /* Text color set to white */
}

@media (max-width: 768px) {
  .stats .stats-item {
    height: auto;  /* Allow the cards to adjust height for smaller screens */
  }
}

@media (max-width: 576px) {
  .col-lg-4, .col-md-6 {
    flex: 1 1 100%; /* Full width for mobile */
  }
}



body {
  margin: 0;
  font-family: var(--default-font);
  background-color: #f8f9fa; /* Light background */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  text-align: left;
  font-size: 24px;
  color: #001f3f;
  margin-bottom: 5px;
  font-weight: bold;
  font-family: "Merriweather",  sans-serif;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch; /* Ensure all cards have the same height */
  padding-bottom: 40px;

}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f1c40f;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: bold;
}

.card .content {
  padding: 15px;
}

.card .content h3 {
  font-size: 18px;
  color: #001f3f;
  margin: 0 0 10px;
  font-weight: bold;
}

.card .content p {
  font-size: 14px;
  color: #555;
  margin: 0 0 15px;
}

.card .content .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card .content .actions .icon {
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card .content .actions .icon i {
  font-size: 16px;
}

.card .content .actions .icon:hover {
  color: #001f3f;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
 # Footer 
 --------------------------------------------------------------*/ 
 #footer { 
  background: #0d4e85 ;
   padding: 0 0 30px 0; color: #fff; 
   font-size: 14px; } 

   #footer .footer-top
    { 
    background: #0d4e85; 
    border-bottom: 1px solid #222222;
   padding: 60px 0 30px 0; 
  } 
  
  
  #footer .footer-top .footer-info 
  { 
    margin-bottom: 30px;
  
  } 
  
  #footer .footer-top .footer-info h3 { 
    
  font-size: 28px;
  margin: 0 0 20px 0; 
  padding: 2px 0 2px 0; 
  line-height: 1; font-weight: 700; 
  text-transform: uppercase;
  color :#ffcf00;
 } 
 #footer .footer-top .footer-links h4 { 
    
  font-size: 18px;
  color :#ffcf00;
 } 
 
 #footer .footer-top .footer-info h3 span 
 { 
  color:#ffcf00 ; 
} 

#footer .footer-top .footer-info p
 { 
  font-size: 14px;
   line-height: 24px; 
   margin-bottom: 0; 
   font-family: var(--default-font); 
   color: #fff; 
  } 

  #footer .footer-top .social-links a { 
    font-size: 18px;
     display: inline-block; 
    background:white; 
    color:#0d4e85; 
    line-height: 1;
    padding: 8px 0;
     margin-right: 4px;
      border-radius: 4px; 
      text-align: center; 
      width: 36px; height: 36px; 
      transition: 0.3s;
    } 
    
    #footer .footer-top .social-links a:hover { 
      background:#2175b9 ; 
      color:white; 
      text-decoration: none;
     } 
     #footer .footer-top h4 
     {
       font-size: 30px;
       font-weight: bold;
       color:#ffcf00; 
       position: relative; 
       padding-bottom: 12px;
      
      } 
      
      #footer .footer-top .footer-links 
      { 
        margin-bottom: 30px;
      
      } 
      
      #footer .footer-top .footer-links ul
       { 
        list-style: none;
         padding: 0; margin: 0;
         } 
         #footer .footer-top .footer-links ul i
          { 
            padding-right: 2px;
             color: #ffc451; 
             font-size: 18px; 
             line-height: 1; 
            } 
            
            #footer .footer-top .footer-links ul li 
            { padding: 10px 0; 
              display: flex; 
              align-items: center;
             } 
             
             #footer .footer-top .footer-links ul li:first-child
              { 
              padding-top: 0;
            
            }
            
            #footer .footer-top .footer-links ul a 
            {
               color: #fff; transition: 0.3s;
               display: inline-block; 
               line-height: 1;
               } 
               
               #footer .footer-top .footer-links ul a:hover
                {
                 color: #ffc451; 
              }
              
              #footer .footer-top .footer-newsletter form 
              { 
                margin-top: 30px; 
                background: #fff;
               padding: 6px 10px;
               position: relative;
                border-radius: 4px; 
              } 
              
              #footer .footer-top .footer-newsletter form input[type=email] 
              { 
                border: 0; 
                padding: 4px;
                 width: calc(100% - 110px);
               } 
               
               #footer .footer-top .footer-newsletter form input[type=submit]
                { 
                  position: absolute; 
                  top: 0; right: -2px; bottom: 0; 
                  border: 0; 
                  background: none; 
                  font-size: 16px; padding: 0 20px; 
                  background: #ffc451; 
                  color: #151515;
                   transition: 0.3s;
                    border-radius: 0 4px 4px 0;
                   }
                    #footer .footer-top .footer-newsletter form input[type=submit]:hover
                     {
                       background: #ffcd6b; 
                    }
                    
                    #footer .copyright { 
                    text-align: center; 
                    padding-top: 30px; 
                  }
                  
                  #footer .credits {
                     padding-top: 10px;
                     text-align: center; 
                     font-size: 13px;
                     color: #fff;
                  }
/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  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,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 82px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 67px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 14px;
  margin-bottom: 0;
  font-family: var(--default-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  background: linear-gradient(120deg, #f2f8ff, #dceeff);
}

.hero-section .btn-warning {
  background-color: #ffcf00;
  border: none;
  border-radius: 30px;
  font-size: 16px;
}

.hero-section h1 {
  font-size: 1.8rem;
}

#hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}


@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.5rem;
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}

.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.about .about-img img {
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 30px;
  }

  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}

.about h3 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}

.about .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .nav-pills li+li {
  margin-left: 40px;
}

.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: #0D4E84 ;
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.about .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px;
  }
}

.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}


/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.why-us .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card-item h4 a {
  color: var(--heading-color);
}

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p {
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 20px;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .swiper-wrapper {
  height: auto !important;
}

.team .team-slider {
  position: relative;
  padding: 20px 0 60px;
}

.team .team-slider .swiper-pagination {
  bottom: 0;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.team .team-slider .swiper-button-prev,
.team .team-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.team .team-slider .swiper-button-prev:after,
.team .team-slider .swiper-button-next:after {
  font-size: 16px;
}

.team .team-slider .swiper-button-prev:hover,
.team .team-slider .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.team .team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  background-color: var(--surface-color);
  height: 100%;
}

.team .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team .team-card:hover .team-overlay {
  opacity: 1;
  visibility: visible;
}

.team .team-card:hover .team-image img {
  transform: scale(1.08);
}

.team .team-image {
  position: relative;
  overflow: hidden;
}

.team .team-image img {
  transition: transform 0.6s ease;
}

.team .team-image .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.team .team-image .social-links {
  display: flex;
  gap: 15px;
}

.team .team-image .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: 0.3s;
}

.team .team-image .social-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-5px);
}

.team .team-content {
  padding: 20px;
  text-align: center;
}

.team .team-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-content span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.team .team-content p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 991px) {
  .team .team-card {
    margin-bottom: 20px;
  }
}

/* Fix card height and image display */
.team .team-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-height: 450px; /* Fixed max height for uniformity */
}

.team .team-image {
  width: 100%;
  height: 250px; /* Fixed image container height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill container without distortion */
  transition: transform 0.6s ease;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.team .team-content {
  flex: 1;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Services Section Responsive
--------------------------------------------------------------*/
#services {
  padding: 60px 0;
}

#services .service-item {
  background-color: #ddeafd;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

#services .service-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

#services .service-item h3 {
  font-size: 1.3em;
  font-weight: 600;
  color: #0d4e85;
  margin-bottom: 10px;
}

#services .service-item p {
  font-size: 0.95em;
  color: #444;
  line-height: 1.5;
}

#services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2em;
  font-weight: bold;
  color: #0d4e85;
}

.section-title p {
  font-size: 1em;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive grid for services */
@media (min-width: 992px) {
  #services .row > div {
    display: flex;
  }

  #services .service-item {
    flex-grow: 1;
  }
}

@media (max-width: 768px) {
  #services .service-item {
    padding: 15px;
  }

  #services .service-item h3 {
    font-size: 1.1em;
  }

  #services .service-item p {
    font-size: 0.9em;
  }
}

@media (max-width: 576px) {
  #services .service-item {
    padding: 12px;
  }

  #services .service-item h3 {
    font-size: 1em;
  }

  #services .service-item p {
    font-size: 0.85em;
  }

  .section-title h2 {
    font-size: 1.5em;
  }
}
