

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

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

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

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: #364d59; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #52565e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #feb900; /* 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.55);  /* 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: #feb900; /* 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-color: rgba(255, 255, 255, 0); /* Your desired background color */
  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 */

}


 
/*--------------------------------------------------------------
# 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... */
}


/*--------------------------------------------------------------
# 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);
  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;
  }
}

/*--------------------------------------------------------------
# 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 {
  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: 38px;
  font-weight: 700;
  line-height: 56px;
}

.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 {
  margin-top: -50px;
  position: relative;
  min-height: 400px;
  max-width: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: 1299px) {
    .hero h2{
        margin-top:-20px;
       font-size:28px; 
    }
    .icon-box{
        padding:1px;
    }
    .hero .hero-img {
        min-height:200px;
    }
.hero .hero-img {
  margin-top: -90px;
  position: absolute;
    width: 200px;
 min-height: 400px;
  max-width:600px;
  margin-left:600px;
}
   .icon-left {
       top: 1px;
   }
   .mesh-page-description {
      font-size: 16px;

      
   }
 .hero .icon-boxes{
     margin-top:-100px;
 }
 .hero #buttons{
     margin-top:-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%);
  }
    */
}

@media (max-width: 768px) {
     .hero #buttons{
     margin-top:-70px;
 }
  .hero .download-btn i ,
  .hero .download-btn1 i {
    display:none;
  } 


  .hero .container{
    margin-top:-40px;
  }
  .hero .hero-img {
    display:none;
      }
  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .download-btn {
    font-size: 10px;
    padding: 8px 10px 10px 10px;
  }
  .hero .download-btn1 {
    font-size: 10px;
    padding: 8px 10px 10px 10px;
  }

}
@media (max-width: 480px) {
      .hero .icon-boxes{
             max-width:1000px;
      margin-top:-120px;
  }
  .hero h2{
      font-size:20px;
      
  }
  .hero p{
      font-size:17px;
      
  }
}

.hero .download-btn1 {
  margin-top:50px;
  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 */
}

@media (max-width: 768px) {
  .download-btn1 span {
    font-size: 12px; /* Adjust the font size as needed */
  }
  .download-btn1 {
    margin-top: 5px; /* Adjust the margin as needed */
  }
}
/* Base styling for icon boxes */
.icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
  margin-top:-80px;
}

.icon-box2 {
  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;
  height: 100%;
  width: 100%;
  text-align: center;
}

.icon-box2 .title {

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


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

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

.icon-box2 .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-box2:hover {
  background: radial-gradient(60.63% 60.63% at 57.15% 51.07%, #00aaff 0%, #005b96 100%);
}

.icon-box2:hover .title a,
.icon-box2:hover .icon {
  color: var(--contrast-color);
}

/* Media Query for iPhone 7 screens (and similar devices) */
@media only screen and (max-width: 768px) {
  .icon-box2 {
    
  }
  .icon-box2 .title a {
    font-size:10px;
    margin-bottom:1px;
  }
  .icon-box2 .icon {
    font-size:14px;
    margin-bottom:1px;
    padding-top:1px ;
  }
  .icon-boxes .row {
   
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* 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:auto;
    background-color:#007bff;
    color:white;
    padding:8px;
    margin-top:30px;
    /*margin-left:60%;*/
    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:auto;
    }
}
@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;
  }
}






/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.container1 {
  position:relative;
  z-index: 10;
    margin-top: -20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center the cards */
}

.card2 {
    background: #fbfcf8;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    width: 25%; /* Set width to 25% */
    padding: 20px;
    z-index: 1;
    margin-left: 20px;
    box-sizing: border-box; /* Ensure padding is included in the width */
}

.card2::before {
    content: "";
    position: absolute;
    background: radial-gradient(60.63% 60.63% at 57.15% 51.07%, #09acbe 0%, #37474f 100%);
    right: -40px;
    bottom: -60px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    z-index: -2;
}

.card2 h2 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.card2 .price {
    font-size: 24px;
    color: #333;
    margin: 10px 0;
    text-align: center;
}

.card2 .discounted-price {
    font-size: 32px;
    color: #51c2d2;
}

.card2 button {
    background: radial-gradient(60.63% 60.63% at 57.15% 51.07%, #09acbe 0%, #37474f 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 12px;
    margin-top: 10px;
    margin-left: 70px;
}

.card2 .features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.card2 .features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.card2 .features li::before {
    content: '✔';
    color: #51c2d2;
    margin-right: 10px;
}

/* Media Queries for Responsiveness */

/* Tablets and small laptops */
@media (max-width: 1024px) {
    .card2 {
        width: 80%;
        margin-left: 40px;
    }
}

/* iPhones and small phones */
@media (max-width: 768px) {
    .card2 {
        width: 80%;
        margin-left: 0;
        margin-right: 0;
    }

    .card2 button {
        margin-left: 50px;
        display: block;
        width: 60%;
    }
}

/* Small screens */
@media (max-width: 480px) {
    .card2 {
        padding: 10px;
    }

    .card2 .price, .card2 .discounted-price {
        font-size: 20px;
    }

    .card2 .features li {
        font-size: 12px;
    }
}

/*------------------------------end of pricing
----------------------------------------*/

.explore button{
    padding: 6px;
    margin-left: 580px;
    background-color: white;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 2px 2px orange;
}
    .whatsapp{
        position:fixed;
        margin-top:80vh;
        margin-left:20px;
        z-index:10;
        border-radius:50%;
        width:60px;
        height:60px;
        background-color:green;
        text-align:center;
    }
    .extra-text {
  display: none;
  margin-top: 10px;
}
#readMoreBtn {
  cursor: pointer;
  background-color: #3498db;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
}
    .extra-text1 {
  display: none;
  margin-top: 10px;
}
#readMoreBtn1 {
  cursor: pointer;
  background-color: #3498db;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
}
    @media only screen and (max-width: 600px) {
  .letter{
        margin-top:30px;
    }
    .explore button{
    padding: 6px;
    margin-left: 128px;
    background-color: white;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 2px 2px orange;
}

}
    /* Hide background image and display text on mobile devices */
.mobile-text{
    display:none;
}





.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%;
    margin-top:20px; /* Centering the container */
    margin-left:10%;
    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 */
}
 .teas-table 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 */
    }
    .teas-table a:hover {
     color: #1F7A8C; /* Change this color for hover effect */
        text-decoration: underline; /* Optional: Add underline on hover */
    }
    
.teas-table 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 */
    line-height: 1; /* Align bullet vertically with text */
}
.tabledata{
    width:90%;
    margin-left:10%;
}
.teas-tableh1{
     text-align: center;
    font-size: 1.2rem;
    font-weight:600;
    margin-top: 20px;
}
.teas-table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid black;
    font-size: 1rem;
}

.teas-table th, .teas-table td {
    border: 1px solid black;
    padding: 10px;
    text-align: left;
}

.teas-table th {
    color:white;
    background-color: #164583;
}
.teas-table th:hover {
    background-color: #3498DB;
}
.teas-table td {
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
 .tabledata{
    width:100%;
    margin-left:1%;
}
}

.container3 {
    margin-top:20px;
    margin-left:10%;
    width:80%;
    display: flex;
    justify-content: space-between; /* Ensures even spacing between divs */
    gap: 20px; /* Optional: Adds some space between the divs */
    flex-wrap: nowrap; /* Prevents wrapping onto the next line */
}

.container3 .section-div {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1; /* Allows the divs to grow and fill the row equally */
    min-width: 200px; /* Ensures the divs maintain a minimum width */
}

.container3 h2 {
    font-size: 1.3rem;
    color: #2d465e;
    margin-bottom: 10px;
    text-align: center;
    font-weight:600;
}

.container3 p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

@media screen and (max-width: 1024px) {
  .container3  .section-div {
        min-width: 250px; /* Adjust the width for smaller screens */
    }
}

@media screen and (max-width: 600px) {
  .container3 {
        flex-direction: column; /* Stack the divs vertically on very small screens */
    }
    
   .container3 h2 {
        font-size: 1.2rem;
    }

   .container3 p {
        font-size: 0.9rem;
    }
}

.benefits-section {
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}

.benefits-section h1 {
    font-weight:700;
    font-size: 2em;
    margin-bottom: 20px;
    color: #2d465e;
}

.benefits-section p {
    margin-right:10%;
    margin-left:15%;
    text-align:center;
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #555;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Change to 2 columns */
    gap: 20px; /* Space between grid items */
}
 .benefits-section .icons{ 
     font-size:1.5rem;
     text-align:center;
 }
.benefit-item { 
    margin-left:20%;
    width:70%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.benefit-item h2 {
    text-align:center;
    font-size: 1.3em;
    font-weight:600;
    margin-bottom: 10px;
   color: #2d465e;
}

.benefit-item p {
    font-size: 1em;
    color: #666;
}
.benefits-section i {
  color: #4CAF50; /* Set the icon color */
  margin-right: 10px; /* Space between icon and text */
  font-size: 1.2em; /* Adjust icon size */
}

.benefits-section h2 i {
  font-size: 1.5em; /* Larger icons for benefit titles */
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* 1 column for mobile devices */
    }
    
    .benefit-item {
        max-width: 100%; /* Let items take full width on small screens */
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr; /* Switch to 2 columns on smaller screens */
    }
}

@media (max-width: 500px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* Switch to 1 column on mobile devices */
    }
}

.teas-exam-structure {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.teas-exam-structure h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
 color: #2d465e;
 font-weight:600;
}

.teas-exam-structure p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.exam-sections {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.exam-section {
  flex: 1 1 calc(50% - 20px);
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.exam-section:hover {
  transform: translateY(-5px);
}

.exam-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #444;
}

.exam-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .exam-section {
    flex: 1 1 100%;
  }

  .teas-exam-structure p {
    text-align: left;
  }
}


/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--accent-color);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Alt Services 2 Section
--------------------------------------------------------------*/
.alt-services-2 .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services-2 .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.alt-services-2 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.alt-services-2 .icon-box {
  margin-top: 30px;
}

.alt-services-2 .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.alt-services-2 .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services-2 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-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: 3px;
  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 h3 {
  font-size: 20px;
  font-weight: 700;
}

.features-cards p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-cards ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

.custom-img {
  max-width: 100%; /* Ensures the image doesn't overflow the container */
  height: auto; /* Maintains aspect ratio */
}

/* Optional: Specific sizes */
.custom-img {
  width: 500px; /* Or any specific width */
  height: 400px; /* Or any specific height */
}

/* Default display for larger screens */
.custom-img {
  display: block; /* Ensure images are visible on larger screens */
}

/* Hide images on screens smaller than 768px (iPhone 7, iPhone 13, iPhone 14, etc.) */
@media (max-width: 768px) {
  .custom-img {
    display: none; /* Hide images on small screens */
  }
}


.time-management {
  font-family: 'Arial', sans-serif;
  margin: 10px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.time-management h2 {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
  color: #2d465e;
  font-weight: 600;
}

.time-management h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #0056b3;
  font-weight: 550;
}

.chart-container {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center;
   margin: 0; /* Remove any extra margin */
  padding: 0; /* Remove any extra padding */
}

#timePieChart {

  width: 300px;  /* Change the width */
  height: 300px; /* Change the height */

  margin-left: 10px; 
}

.time-breakdown {
  list-style-type: none;
  padding: 0;
  font-size: 16px;
  margin-left: 40px;
  margin-right: 20px;
}

.time-breakdown li {
  margin-bottom: 3px;
}

.time-breakdown li strong {
  color: #007BFF;
}

.time-management p {
  font-size: 16px;
  line-height: 1.6;
}



@media (max-width: 480px) {


  .time-breakdown {
    font-size: 13px;
  }
}


/* Mobile styles */
@media (max-width: 768px) {
   .time-m{
       display:none;
   }
}
/* Further adjustments for very small screens (e.g. max-width: 480px) */
@media screen and (max-width: 480px) {
    .time-m{
        display:none;
}
}
@media only screen and (max-width: 768px) {
    
  .time-m1 h2{
      font-weight:600;
      color:#1F7A8C;
      text-align:center;
      margin-top:-20px;
  }
    .time-m1 h3{
        font-size:18px;
      font-weight:500;
      color:#164583;
      text-align:center;
      margin-left:10px;
  }
  .test-duration{
    /* Example styles */
    font-size: 14px;
    padding: 20px;
    text-align: center;
  }

  /* Any other mobile-specific styling */
}

@media only screen and (min-width: 769px) {
    .time-m1{
        display:none;
    }
    
}
/* General Section Styling */
.study-tips {
  background-color: #f7f9fc;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

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

/* Title Styling */
.section-title {
  font-size: 36px;
  text-align: center;
  color: #2d465e;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Grid Layout for Tips */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 20px; /* space between the columns */
}

/* Individual Tip Styling */
.tip {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tip-title {
  font-size: 24px;
  color: #0056b3;
  margin-bottom: 15px;
}

.tip-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
.study-tips i {
  color: #FFC107; /* Change icon color */
  
  margin-right: 80px; /* Add space between icon and text */
}
.study-tips .icons{
    font-size:1.5rem;
    text-align:center;
}

.study-tips .tip-title i {
  font-size: 1.5em; /* Adjust size for tip title icons */
}


/* Responsive Design */
@media (max-width: 768px) {
    .teas-exam-structure h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
    color: #2d465e;
    font-weight: 600;
}
.benefits-section h1 {
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #2d465e;
}
  .section-title {
    font-size: 28px;
  }

  .tips-grid {
    grid-template-columns: 1fr; /* Stack tips vertically on smaller screens */
  }

  .tip-title {
    font-size: 20px;
  }

  .tip-description {
    font-size: 14px;
  }
}


.container5 {
    max-width: 1500px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container5  h1 {
    text-align: center;
   color: #2d465e;
}

.step {
    margin-bottom: 20px;
}

.collapsible {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.collapsible:hover {
    background-color: #0056b3;
}
.collapsible.active {
    background-color: #0056b3; /* Maintain the hover color for active step */
}

.content {
    padding: 0 15px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    border-radius: 5px;
    margin-bottom: 10px;
}

.content p {
    margin: 15px 0;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


.content-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.content-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.exam-scoring {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    color: #2d465e;
    margin-bottom: 20px;
    text-align: center;
}

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

.scoring-details, .passing-scores, .exam-retake {
    background-color: #e3f2fd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.5rem;

    margin-bottom: 15px;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.9rem;
    }
}


.container6 {
    max-width: 2000px;
    margin-top:20px;
   
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container6  h1 {
    text-align: center;
   color: #2d465e;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px;
  align-items:left;
}

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

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

.faq-answer {
  display: none;
  padding: 15px;
  background: #fff;
  font-size: 14px;
}

.chevron {
  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 */
}

/* Media queries for responsiveness */

/* iPhone 7 and similar devices (up to 375px width) */
@media (max-width: 375px) {
  .faq-question {
    font-size: 14px;
    padding: 12px;
  }

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

  .chevron {
    font-size: 14px; /* Adjust chevron size */
  }
}

/* iPhone 13 and other devices with similar width (up to 390px width) */
@media (max-width: 390px) {
  .faq-question {
    font-size: 15px;
    padding: 14px;
  }

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

  .chevron {
    font-size: 16px; /* Adjust chevron size */
  }
}

/* General styling for tablets and smaller screens */
@media (max-width: 768px) {
  .faq-container {
    padding: 15px;
  }

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

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




/* General Styles */
.next-step {
  background: #f9f9f9; /* Light background color */
  padding: 40px 20px;
  text-align: center;
}

.next-step .container {
  max-width: 800px;
  margin: 0 auto;
}

.next-step .text-content {
  padding: 20px;
}

.next-step h2 {
  font-size: 2em;
  font-weight:600;
  color: #2d4663; /* Darker text color for the heading */
  margin-bottom: 20px;
}

.next-step p {
  font-size: 1.1em;
  color: #555; /* Medium text color for the paragraph */
  margin-bottom: 30px;
}

.next-step .cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  color: #fff; /* White text color */
  background-color: #007bff; /* Blue background color */
  border-radius: 5px;
  text-decoration: none;
}

.next-step .cta-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .next-step h2 {
    font-size: 1.75em; /* Slightly smaller heading on tablets and smaller screens */
  }

  .next-step p {
    font-size: 1em; /* Slightly smaller text on tablets and smaller screens */
  }

  .next-step .cta-button {
    padding: 12px 25px; /* Adjust button padding on smaller screens */
    font-size: 1em; /* Smaller font size on smaller screens */
  }
}

@media (max-width: 576px) {
  .next-step h2 {
    font-size: 1.5em; /* Smaller heading on small screens like iPhone 7 */
  }

  .next-step p {
    font-size: 0.9em; /* Smaller text on small screens */
    margin-bottom: 20px; /* Reduced margin-bottom for paragraph */
  }

  .next-step .cta-button {
    padding: 10px 20px; /* Adjust button padding for very small screens */
    font-size: 0.9em; /* Smaller font size for very small screens */
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #why-us .steps {
    margin-left: 20%;
    margin-bottom: 40px;
}
    .container3 {
    margin-top: 20px;
    margin-left: 5%;
    width: 75%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
}
  #services {
    margin-top: 30px; /* Increase margin-top slightly for better spacing */
  }

  #services .section-title p {
    font-size: 24px; /* Adjust font size for the section title */
    text-align: center; /* Center align the title */
    margin-bottom: 20px; /* Add some margin below the title */
  }

  #services .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Adjust spacing between icon boxes */
  }

  #services .col-md-3 {
    flex: 0 0 45%; /* Two columns per row */
    max-width: 45%;
    margin-bottom: 30px; /* Adjust bottom margin for better spacing */
  }

  #services .icon-box {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  #services .icon {
    font-size: 36px;
    color: #2a9d8f; /* Icon color */
    margin-bottom: 10px;
  }

  #services .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
  }

  #services .description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
}

/*----------------------------------------
Why Us
---------------------------------------------*/
#why-us h3{
  color:#fff;
  text-align: center;
  justify-content: center;

}
#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 .option{
      margin-left:100px;
  }

#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: 40px;
}

#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 p{
    font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color:#fff;
}

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

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

 
/* Media query for mobile devices */
@media (max-width: 767px) {
      #why-us .steps {
          
    flex-direction: column; /* Display columns on mobile */
    width:160%;
        margin-left:30px;
 margin-bottom:100px;
 

  }
  #why-us .option{
      margin-left:-20px;
  }

  #why-us .col-lg-3 {
    width:100%; /* Full width for each column on small screens */
    margin-bottom: 20px;
  }
    #why-us .step {
       
           padding: 40px 40px 40px 40px; /* Increase padding for better spacing on mobile */
    margin-left: 0; /* Reset margin-left for full-width steps */
    width: 100%; /* Ensure full width for steps on mobile */
            margin-bottom: 30px;
  }



 
}


/*--------------------------------------------------------------
# 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;
  
  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 {
    height:auto;
  margin-top:90px;
}
.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;

      
   }

   
}