  
body {
  font-family: "Open Sans", sans-serif;
  color: #212529;
}

a {
  color: #63a5d3;
  text-decoration: none;
}

a:hover {
  color: #3f91c9;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Raleway", sans-serif;
}

/*review css code*/
.carousel {
    display: flex;
    align-items: center;
    position: relative;
}

.image-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.image-container img {
    max-width: 100%;
    display: none;
}

.image-container img.active {
    display: block;
}

button.prev, button.next {
    width:5%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
}

button.prev {
    left: 10px;
    float:left;
}

button.next {
    right: 10px;
    float:right;
}

.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}


/*---------------- NEW CSS-----*/

/* 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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #559bcc; /* 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: rgba(255, 255, 255, 0.5);  /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #559bcc; /* 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: #f1f3f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #142e6c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1c4097;
  --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: 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);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* Base Header Styling */
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

/* Scrolled Header Styling */
.header.scrolled {
  background: radial-gradient(60.63% 60.63% at 57.15% 51.07%, #09acbe 0%, #164080 100%);
  padding: 5px 10px; /* Adjust the padding values as needed */
  transition: padding 0.3s ease-in-out; /* Smooth transition for padding */
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background: radial-gradient(60.63% 60.63% at 57.15% 51.07%, #09acbe 0%, #164080 100%);
  padding: 5px 10px; /* Adjust the padding values as needed */
  transition: padding 0.3s ease-in-out; /* Smooth transition for padding */

}


 
 /*--------------------------------------------------------------
 # Services
 --------------------------------------------------------------*/
 .services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
  transform: translateY(-5px);
  border-color: #3f91c9;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
  color: #3f91c9;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}


@media screen and (max-width: 768px) {
    .services .icon-box {
        width:80%;
        margin-left:10%;
    }
    
}
/*--------------------------------------------------------------
# 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:#fff;
    padding: 18px 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);
  }

  .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 - 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;
  }
}

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  /* Existing styles... */

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffc107; /* Change the hover color to orange */
  }

  /* Additional styles... */
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  /* Existing styles... */

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffc107; /* Change the hover color to orange */
  }

  /* Additional styles... */
}





/*--------------------------------------------------------------
# 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);
  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 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: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

.numbers{
  font-size: 25px;
  margin: top -30px;
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  margin-top: -60px;
}
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 100px 0 80px 0;
  display: flex;
  align-items: center;
  background: url(img/hero-bg.jpg);
}

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

.hero .container {
  position: relative;
  z-index: 3;
 
}

.hero h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 30px;
}

.hero p {
  /*color: color-mix(in srgb, var(--default-color), transparent 30%);*/
  color:#ffc107;
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-default);
  background: radial-gradient(60.63% 60.63% at 57.15% 51.07%, #09acbe 0%, #164080 100%);
  width: 100%;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 12px;
  padding: 8px 10px 10px 10px;
  border-radius: 12px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn+.download-btn {
  margin-left: 10px;
}

.hero .download-btn:hover {
  background: radial-gradient(60.63% 60.63% at 57.15% 51.07%, #09acbe 0%, #37474f 100%);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

.hero .hero-img {
  position: relative;
  min-height: 600px;
}

.hero .hero-img .phone-1 {
  margin-top: 20px;
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
}

.hero .hero-img .phone-2 {
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
  margin-top: 70px;
  margin-left: 100px;
}

@media screen and (max-width: 992px) {
  .hero .container{
    margin-top:50px;
  }
  .hero .hero-img {
display:none;
  }
/*
  .hero .hero-img .phone-1,
  .hero .hero-img .phone-2 {
    left: 50%;
    transform: translateX(-50%);
  }
    */
}

.hero .download-btn1 {
  margin-top:100px;
  color: var(--contrast-default);
  background:radial-gradient(60.63% 60.63% at 57.15% 51.07%, #00aaff 0%, #005b96 100%);
 /* background: color-mix(in srgb, var(--default-color), transparent 80%);*/
   /* Slightly different background */
  font-family: var(--heading-font);
  font-weight: 600; /* Different font weight */
  font-size: 14px; /* Different font size */
  padding: 10px 12px 12px 12px; /* Different padding */
  border-radius: 8px; /* Different border radius */
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn1+.download-btn1 {
  margin-left: 12px; /* Different margin */
}

.hero .download-btn1:hover {
  background: radial-gradient(60.63% 60.63% at 57.15% 51.07%, #09acbe 0%, #37474f 100%);
  width: 100%;
  color: var(--contrast-color);
}

.hero .download-btn1 i {
  font-size: 18px; /* Different icon size */
  line-height: 0;
  margin-right: 10px; /* Different margin */
}


/* Base styling for icon boxes */
.icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
  margin-top:-80px;

}

.icon-box {
  color:#333;
  background: #fff;
  padding: 5px 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
  z-index: 1;

  width: 100%;
  text-align: center;
}

.icon-box .title {

  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
}


.icon-box .title a {
color:black;

 /* color: color-mix(in srgb, var(--default-color), transparent 20%);*/
  transition: 0.3s;
}

.icon-box .icon {
  margin-bottom: 10px;
  padding-top: 5px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 24px;
  line-height: 1;
  color: #005b96;
}

.icon-box:hover {
  background: radial-gradient(60.63% 60.63% at 57.15% 51.07%, #00aaff 0%, #005b96 100%);
}


.icon-box:hover .icon {
  color: var(--contrast-color);
}

.icon-box:hover .title a{
color:#000;
}

/* Media Query for iPhone 7 screens (and similar devices) */
@media only screen and (max-width: 750px) {

  .icon-box .title a {
    font-size:16px;
    margin-bottom:1px;
  }
  .icon-box .icon {
    font-size:14px;
    margin-bottom:1px;
    padding-top:1px ;
  }
  .icon-boxes .row {
    display: flex;
    flex-wrap: wrap;
 /*   gap: 10px;*/
     /* Adjust space between items */
  }

  .icon-boxes .col-md-6 {
    flex: 1 1 calc(50% - 15px); /* 50% width minus the gap */
    box-sizing: border-box;
    margin-bottom: -30px; /* Adjust space between rows */
  }
}
#buttons{
  margin-top:-50px;
}
/*END OF NEW CSS--------*/


/*--------------------------------------------------------
#rating
-----------------------------------------------------------*/

/* Tooltip style */
.floating-icon {
    /*position: fixed;
    bottom: 670px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    margin-top:10px;
    width:10%;
    margin-left:40%;
}
.reviewbutton{
    width:12%;
    background-color:#007bff;
    color:white;
    padding:8px;
    margin-top:30px;
    margin-left:44%;
    border-radius:8px;
    cursor: pointer;
}
.tooltip {
    width:70px;
    position: absolute;
    bottom: calc(10% + 2px);
    right: 110%; /* Align to the right edge of the icon */
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 1; /* Tooltip is always visible */
    pointer-events: none; /* Disable pointer events on the tooltip */
    z-index: 1001; /* Ensure tooltip is above other elements */
}

.tooltip:before {
    content: '';
    position: absolute;
    bottom: 50%; /* Adjust as needed */
    right: -7px; /* Position the arrow */
    transform: translateY(50%);
    border: solid transparent;
    border-width: 8px;
    border-left-color: #ff9f01; /* Match tooltip background color */
}

/* Review form container */
.review-form-container {
    width: 90%;
 max-width: 50%; /* Adjusted for mobile responsiveness */
 display: none;
    position: fixed;
    bottom: 30px;

    transform: translateX(-50%);
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    height: 80vh;
    border-radius:12px;
    border :solid  #007bff;
    left: 50%;
}

@media (max-width: 768px) { /* Adjust based on your preferred breakpoint */
    .review-form-container {
        max-width: 95%; /* Adjusted for smaller screens */
        height:auto;
    }
    .reviewbutton{
        width:40%;
        margin-left:30%;
    }
}
@media (min-width: 768px) {
     .floating-icon {
        bottom: 480px;
        right: 20px;
    }
}



/* Heading styles */
.review-form-container h1 {
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    color: #13acbe;
    margin-bottom: 20px;
}

/* Rating styles */
.review-form-container .rating,
.review-form-container .stars {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Star rating styles */
.review-form-container .stars .star {
    font-size: 24px;
    margin: 0 3px;
}

/* Textarea styles */
.review-form-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    margin-bottom: 20px;
}

/* Button styles */
.review-form-container button {
    width: 50px;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.review-form-container button:hover {
    background-color: #0056b3;
}

/* Close icon style */
.close-icon {
    font-size: 18px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #50c2d2;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0aa958;
  color: #fff;
}

.back-to-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;
  }
}




@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
@media screen and (max-width: 768px) {
    .section-title p {
        font-size:1rem;
        font-weight:550;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fef8f5;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 0;
  line-height: 1px;
  margin-bottom: 15px;
  color: #c2b7b1;
}

.section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #4e4039;
}

.section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #63a5d3;
  bottom: 0;
  left: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #fef5f1;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}


.teas-practice-section {
    background-color: #f9f9f9; /* Light background */
    border: 1px solid #e0e0e0; /* Border for separation */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Spacing inside the container */
    width: 80%; /* Width of the container */
    margin-top: 20px; /* Spacing above the container */
    margin-left: 10%; /* Centering the container */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.teas-practice-section h2 {
    text-align: center;
    color: #2d465e; /* Darker text for the heading */
    font-size: 24px; /* Font size for the heading */
    font-weight: 600;
    margin-bottom: 15px; /* Space below the heading */
}

.teas-practice-section p {
    color: #555; /* Slightly lighter text for the paragraph */
    font-size: 16px; /* Font size for the paragraph */
    line-height: 1.5; /* Spacing between lines for readability */
}

.custom-test-bank-list a {
       color: #3498DB; /* Change to your desired link color */
        text-decoration: none; /* Remove underline */
        transition: color 0.3s; /* Smooth transition for hover effect */
        position: relative; /* Position relative for bullet placement */
        padding-left: 20px; /* Add space for the bullet */
    }
   .custom-test-bank-list a:hover {
     color: #1F7A8C; /* Change this color for hover effect */
        text-decoration: underline; /* Optional: Add underline on hover */
    }
   .custom-test-bank-list  a::before {
    content: "•"; /* Use bullet character */
    color: #3498DB; /* Color of the bullet (same as link color) */
    position: absolute; /* Position it absolutely */
    left: 0; /* Align it to the left */
    font-size: 1.2em; /* Adjust bullet size */
   
   
}
 .tabledata{
     width:90%;
     margin-left:5%;
 }
 
.table-content {
    color: #2d465e;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.custom-test-bank-table {
    width: 80%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    margin-left: 10%;
}

.custom-test-bank-table th {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    background-color: #f4f4f4;
    text-align: center;
}
.custom-test-bank-table th {
    color:white;
    background-color: #164583;
}
.custom-test-bank-table th:hover {
    background-color: #3498DB;
}

.custom-test-bank-table td {
    
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.collapsible-row {
    cursor: pointer;
    background-color: #f4f4f4;
    text-align: center;
}

.content-row {
    background-color: #fff;
    display: none; /* Hidden by default */
}

.content-row.expanded {
    display: table-row; /* Show expanded content */
}

.custom-test-bank-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.custom-test-bank-list li {
    margin: 5px 0;
}


@media (max-width: 768px) {
  
    .table-content {
    margin-left: 10%;
    color: #2d465e;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}
.custom-test-bank-table {
    width: 90%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    margin-left: 10%;
}
     .tabledata{
         width:100%;
         margin-left:-25px;
        
     }


}

.our-services {

  background-color: #f9f9f9;
}
.our-services{
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    text-align: center; /* Center the text itself */
  
    padding: 20px; /* Optional: Adjust padding if needed */
}
.our-services h1{
    font-weight:600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-item {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.grid-item h3 {
  margin-top: 0;
  font-size: 1.2em;
}

.grid-item p {
  font-size: 0.9em;
  color: #555;
}

/* Responsive design for tablets and smaller screens */
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}


.nursing-topics {
    background-color: #ffffff;
    padding: 2rem;
    margin: 1rem auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nursing-topics h1 {
    text-align: center;
    color:#2d465e;
    margin-bottom: 1.5rem;
}

.topics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.topic {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.topic h2 {
    text-align:center;
    font-size:1.6em;
    margin-top: 0;
    color:#0D8AAB;
}

.topic p {
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .topic {
        flex: 1 1 100%;
    }
}


/* Section styling */
.why-choose-us-section {
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

/* Wrapper to center content */
.why-choose-us-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading styles */
h1 {
    font-weight:600;
    font-size: 24px;
    color:#2d465e;
    margin-bottom: 20px;
    text-align: center;
}

.why-choose-us-section h2 {
    text-align:center;
    font-size: 20px;
    color: #0D8AAB;
    margin-bottom: 10px;
}

/* Paragraph styling */
.why-choose-us-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* Grid styling for features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Base styles for specialized-preparation */
.specialized-preparation {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  font-weight: 600;
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
  color: #2D465E;
}

.intro-text {
  text-align: center;
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
}

.exam-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.resource-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: calc(100% - 20px);
  max-width: 500px;
}

.resource-title {
  font-size: 1.5em;
  color: #0D8AAB;
  margin-bottom: 10px;
  text-align: center;
}

.resource-description {
  font-size: 1em;
  color: #333;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  .specialized-preparation {
    padding: 30px 0; /* Reduce padding for smaller screens */
  }

  .container {
    padding: 0 10px; /* Reduce container padding */
  }

  .section-title {
    font-size: 1.8em; /* Slightly smaller font size */
    margin-bottom: 15px; /* Adjust space below the title */
  }

  .intro-text {
    font-size: 1em; /* Slightly smaller font size */
    margin-bottom: 30px; /* Adjust space below intro text */
  }

  .exam-resources {
    gap: 15px; /* Reduce gap between resource cards */
  }

  .resource-card {
    width: calc(100% - 15px); /* Adjust width to fit smaller screens */
    max-width: none; /* Remove max-width to utilize full width */
  }

  .resource-title {
    font-size: 1.3em; /* Slightly smaller font size for title */
  }

  .resource-description {
    font-size: 0.9em; /* Slightly smaller font size for description */
  }
}

@media (max-width: 576px) {
  .specialized-preparation {
    padding: 20px 0; /* Further reduce padding */
  }

  .container {
    padding: 0 5px; /* Further reduce container padding */
  }

  .section-title {
    font-size: 1.5em; /* Further reduce font size */
    margin-bottom: 10px; /* Adjust space below the title */
  }

  .intro-text {
      margin-left:10%;
      text-align:left;
    font-size: 0.9em; /* Further reduce font size */
    margin-bottom: 20px; /* Adjust space below intro text */
  }

  .exam-resources {
    gap: 10px; /* Further reduce gap between resource cards */
  }

  .resource-card {
    width: 100%; /* Full width for resource cards */
  }

  .resource-title {
    font-size: 1.2em; /* Further reduce font size for title */
  }

  .resource-description {
    font-size: 0.85em; /* Further reduce font size for description */
  }
}


/* General Styles */
.ati-preparation {
  background: #ecf5ff; /* Very light blue background */
  padding: 60px 20px;
  text-align: center;
}

.ati-preparation .container {
  max-width: 1300px;
  margin: 0 auto;
}

.ati-preparation .content {
  padding: 20px;
}

.ati-preparation h2 {
  font-size: 2.2em;
  color: #003366; /* Deep blue text color for the heading */
  margin-bottom: 20px;
  font-weight:600;
}

.ati-preparation p {
  font-size: 1.1em;
  color: #333; /* Dark text color for readability */
  margin-bottom: 40px;
}

.ati-preparation .cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.2em;
  color: #fff;
  background-color: #004085; /* Strong blue background color */
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.ati-preparation .cta-button:hover {
  background-color: #002d72; /* Darker blue on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .ati-preparation h2 {
    font-size: 1.8em; /* Slightly smaller for tablets */
  }

  .ati-preparation p {
    font-size: 1em;
    margin-bottom: 30px; /* Reduced spacing for smaller screens */
  }

  .ati-preparation .cta-button {
    padding: 12px 30px;
    font-size: 1.1em; /* Adjust button size for smaller screens */
  }
}

@media (max-width: 576px) {
  .ati-preparation h2 {
    font-size: 1.6em; /* Smaller font size for mobile */
  }

  .ati-preparation p {
      text-align: left;
    font-size: 0.95em; /* Smaller text for mobile screens */
    margin-bottom: 25px; /* Reduced margin for better spacing */
  }

  .ati-preparation .cta-button {
    padding: 10px 25px;
    font-size: 1em; /* Smaller button on mobile */
  }
}


.faq-container {
  max-width: 1300px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  padding: 15px;
  background-color: #f9f9f9;
}

.faq-answer {
  display: none;
  padding: 15px;
  font-size: 16px;
  color: #333;
}

.chevron {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .chevron {
  transform: rotate(180deg); /* Rotate chevron for expanded state */
}

.faq-item.active .faq-answer {
  display: block; /* Show the answer when active */
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
  .faq-container {
    padding: 10px;
  }

  h1 {
    font-size: 20px;
  }

  .faq-question {
    font-size: 16px;
    padding: 12px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 12px;
  }

  .chevron {
    font-size: 18px;
  }
}
/*----------------------------------------
Why Us
---------------------------------------------*/

#why-us {
  padding: 60px 0;
  background: #fff;
}

#why-us .section-header h3{
    color:#4e4039;
    font-size:35px;
    font-weight:700;
}
#why-us .section-header p {
  color: #000000;
      font-size:18px;
}

#why-us .card {
  background: #00458f;
  border-color: #00458f;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

@media (max-width: 991px) {
  #why-us .card {
    margin: 0;
  }
}

#why-us .card:hover {
  background: #003b7a;
  border-color: #003b7a;
}

#why-us .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#why-us .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#why-us .card p {
  font-size: 15px;
  color: #d8eafe;
}

#why-us .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
}

#why-us .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}




#why-us .container {
   width: 80%;
   display: flex;
   flex-direction: column;
   align-items: center;

}

#why-us  .steps {
   display: flex;
   justify-content: space-between;
   margin-bottom: 30px;
}

#why-us  .step {
   text-align: center;
   font-weight: 700;
   margin-left:5px;

   padding: 12px 24px;
   background-color: #13acbe;
   color: #fff;
   border-radius: 20px;
   cursor: pointer;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
   transition: transform 0.2s ease;
}

#why-us  .step:hover {
   transform: translateY(-2px);
}

#why-us  .step:active {
   transform: translateY(0);
}

 #why-us .progress-container {
   width: 100%;
   height: 30px;
   background-color: #ddd;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

#why-us  .progress-bar {
   width: 0%;
   height: 100%;
   background-color:#ff9f01;
   transition: width 0.6s ease;
   border-radius: 15px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 34px;
  color: #4e4039;
}

.about h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  color: #7a6960;
}

.about i {
  font-size: 48px;
  margin-top: 15px;
  color: #559dcf;
}

.about p {
  font-size: 15px;
  color: #5a6570;
}

@media (max-width: 991px) {
  .about .about-img img {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .about .about-img img {
    max-width: 90%;
  }
}

/*
# packages
*/

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.service .icon-box:hover {
  transform: translateY(-5px);
  border-color: #3f91c9;
}

.service .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
  color: #3f91c9;
}

.service .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.service .title a {
  color: #111;
}

.service .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #3498db;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #3498db;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #3498db;
}




/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #63a5d3;
  border-bottom: 3px solid #63a5d3;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #63a5d3;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f5f2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #7a6960;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #ab9d95;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #63a5d3;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #63a5d3;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #63a5d3;
  border-bottom: 3px solid #63a5d3;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #63a5d3;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #3f91c9;
}



.contact1 .info {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(20, 26, 43, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}


.contact1 .info:hover {
  transform: translateY(-5px);
  border-color: #18d26e;
}

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

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


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

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

.recent-posts .post-category {
  font-size: 16px;
  color: #6f6f6f;
  margin-bottom: 10px;
}

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

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

.recent-posts .title a:hover {
  color: var(--color-primary);
}

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

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

.recent-posts .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #212529;
  font-size: 14px;
  background: #fef8f5;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #fef8f5;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #4e4039;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #63a5d3;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background:#18d26e;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #5c5c5c;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #212529;
  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: #559dcf;
  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: #5c5c5c;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #63a5d3;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #63a5d3;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3f91c9;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #212529;
}

#footer .credits a {
  color: #63cfd3;
}

@media (max-width: 575px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}
html {
  scroll-behavior: smooth;
  scroll-behavior: smooth;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-color: rgb(13, 34, 72);
  scrollbar-width: thin;
}

#main-container {      
  scroll-snap-type: y mandatory;
}

section {
  scroll-snap-align: start; /* Define where each section should snap */
}

/* Override link color */
a {
  color: inherit;
  /* Change to your desired color */
}
.mesh-nav-controls {
   position: fixed;
   top: 0;
   height: 140px;
   left: 0;
   width: 100%;
   background: transparent;
   transition: all 1.5s ease-out;
   z-index: 1000;
   color:aliceblue
}

.mesh-nav-controls a:hover {
color: #38ef7d;
} 

.mesh-navbar-collapse {
   flex-basis: 100%;
   flex-grow: 1;
   align-items: center;
}


 
.mesh-button a{
  color: #fff;
}
.mesh-button a:hover{
  color: #fff;
}
 
.mesh-button {
   padding: 5px 10px 5px 10px ;
   background:radial-gradient(60.63% 60.63% at 57.15% 51.07%, #00aaff 0%, #005b96 100%);
   color:white;
   border-radius:8px;

}

.mesh-button:hover {
   background:radial-gradient(60.63% 60.63% at 57.15% 51.07%, #09acbe 0%, #37474f 100%);
   color: white;
}


.mesh-nav-link {   
   font-weight: 500;
   text-decoration: none;
}


.mesh-nav-link a {   
   font-weight: 500;
   text-decoration: none;
}

.mesh-background-div {
   width: 100%;
   background: radial-gradient(60.63% 60.63% at 57.15% 51.07%, #09acbe 0%, #37474f 100%);
   background-size: cover;
   background-position: center;

}

.lightBlue {
   color: rgb(15, 168, 217)
}

.mesh-section-image {
   border-radius: 23px;    
   width: 100%;
   height: auto;
   display: block;
   top: 0%;
   bottom: 0%;
   left: 0%;    
   right: 0%;
   transition: all .19s ease-in-out, background 1s ease-in-out, border 1s ease-in-out;
   box-shadow:0 10px 18px -3px rgba(0, 0, 0, 0.01), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.mesh-section-image :hover {
   transform: scale(1.02);   
}

.mesh-hero-gradient {
    margin-top:105px;
   height: auto;/*changes*/
   width: 100%; 
   
}

.mesh-icon-blue {
   height: 22px;
   width: 22px;
   line-height: 22px;
   font-size: 15px;
   text-align:center;
   background-color: rgb(15, 168, 217);
   border-radius: 50%;
   color: #f6f6f6;
   box-shadow: #0a504a;    
}


.mesh-icon-green {
   height: 22px;
   width: 22px;
   line-height: 22px;
   font-size: 15px;
   text-align:center;
   background-color: rgb(0 161 133);
   border-radius: 50%;
   color: #f6f6f6;
   box-shadow: #0a504a;
}
.circle-icon {
   height: 19px;
   width: 19px;
   line-height: 19px;
   font-size: 13px;
   text-align: center;
   border-radius: 50%;
}

.mesh-icon-red {
   height: 22px;
   width: 22px;
   line-height: 22px;
   font-size: 15px;
   background-color: #ae1d5e;
   border-radius: 50%;
   text-align:center;
   color: #f6f6f6;
   box-shadow: #0a504a;    
}

.mesh-icon-purple {
   height: 22px;
   width: 22px;
   line-height: 22px;
   font-size: 15px;
   background: #554c86;
   text-align:center;
   border-radius: 50%;
   color: #f6f6f6;
   box-shadow: #0a504a;    
}


.mesh-page-title {
   font-size: 16px;
   color: #f6f6f6;
   font-weight: 700;
   letter-spacing: -.025em;
}


.mesh-section-heading {
   letter-spacing: -.025em;
   margin-top: 0;
   margin-bottom: 10px;
   font-size: 20px;
   font-weight: 700;
   line-height: 1.25em;
}



.mesh-page-description.small {
   font-size: 16px;
   line-height: 1.5em;
}
.mesh-page-description {
   font-size: 24px;
   line-height: 1.5em;
   color:#f6f6f6
   
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
   color: #fff;
   background-color: #061c3e;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
   color: #fff;
   background-color: #263853;
}
.nav-link {

   color: #091322;

   transition: all .15s ease-in-out, background-color 1s ease-in-out, border-color 1s ease-in-out;
}
.nav-pills .nav-link :hover {
   color: #141414; 

}
.nav-pills .nav-link {
   background: 0 0;
   border: 0;
   border-radius: 65px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
   background-color: #f8f9fa;
}
/* imported */
.card {
   background-color: #fff;
   border-radius: 10px;
   color: #091322;
   border: none;
   position: relative;
   font-weight: 500;
   font-size: 12px;
   min-width: 100px;
   margin-bottom: 30px;
   transition: all 0.5s ease-out;
   text-decoration: none;
   box-shadow: 0 0.46875rem 2.1875rem rgba(90,97,105,0.1), 0 0.9375rem 1.40625rem rgba(90,97,105,0.1), 0 0.25rem 0.53125rem rgba(90,97,105,0.12), 0 0.125rem 0.1875rem rgba(90,97,105,0.1);
}

.card:hover{
   transform: scale(1.02);
   color: rgb(34, 34, 34); 
   
   /* background-color: #000; */
}
.l-bg-cherry {
   background: linear-gradient(to right, #493240, #f09) !important;
   color: #fff;
}

.l-bg-blue-dark {
   background: linear-gradient(to right, #373b44, #4286f4) !important;
   color: #fff;
}

.l-bg-green-dark {
   background: linear-gradient(to right, #0a504a, #38ef7d) !important;
   color: #fff;
}

.l-bg-orange-dark {
   background: linear-gradient(to right,rgb(175, 97, 24), rgb(161, 78, 0)) !important;
   color: #fff;
}

.l-bg-brown-dark {
  background: linear-gradient(to right,rgb(175, 52, 24), rgb(161, 29, 0)) !important;
  color: #fff;
}

.l-bg-red-dark {
  background: linear-gradient(to right,rgb(175, 24, 37), rgb(161, 0, 0)) !important;
  color: #fff;
}



.card .card-statistic-3 .card-icon {
   text-align: center;
   line-height: 50px;
   margin-left: 15px;
   color: #000;
   position: absolute;
   right: 5px;
   top: 12% ;
   opacity: 0.1;
}

.l-bg-cyan {
   background: linear-gradient(135deg, #289cf5, #84c0ec) !important;
   color: #fff;
}

.l-bg-green {
   background: linear-gradient(135deg, #23bdb8 0%, #43e794 100%) !important;
   color: #fff;
}

.l-bg-orange {
   background: linear-gradient(to right,rgb(6, 54, 46), rgb(0 161 133)) !important;
   color: #fff;
}

.l-bg-cyan {
   background: linear-gradient(135deg, #289cf5, #84c0ec) !important;
   color: #fff;}

  
/* end impotred */
/* media */
@media screen and (min-width: 479px) {
   .mesh-section-heading {
       margin-bottom: 16px;
       font-size: 23px;
       line-height: 1.25em;
   }
   .mesh-page-description {
      font-size: 16px;

      
   }

   
}
@media screen and (min-width: 767px) {
  
   .mesh-section-heading {
       margin-bottom: 16px;
       font-size: 26px;
       line-height: 1.25em;
   }
   .card{
       font-size: 18px;
   }
   .mesh-page-description {
      font-size: 16px;

      
   }

   
}

@media screen and (max-width: 991px){
   .mesh-nav-link a{
       color:#333 !important;
   }
   .mesh-page-description {
      font-size: 18px;

      
   }
         .mesh-page-title {
       font-size: 25px;
   }
  
   
}
@media screen and (min-width: 992px) {
   
   .mesh-hero-gradient {  
            /* background: linear-gradient(to right, rgb(13, 17, 29), rgba(0, 0, 0, 0)); */
            background: linear-gradient(60.63% 60.63% at 57.15% 51.07%,#1f5a6d 0,#042033 100%)
   }
   .mesh-page-description {
       font-size: 22px;
   }
   .mesh-section-heading{
       font-size: 30px;
   }
   .nav-link {
       padding: 1.5rem 1rem !important;
   }
   .mesh-page-description {
      font-size: 16px;

      
   }

   
}
@media screen and (max-width: 1199px) {

   .icon-left {
       top: 1px;
   }
   .mesh-page-description {
      font-size: 16px;

      
   }

   

}

@media screen and (min-width: 1300px) {
   .mesh-page-title {
       font-size: 43px;
   }
   .mesh-page-description {
      font-size: 20px;

      
   }

   
}