: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: #003189;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0562e8;
  /* 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. */
}

.mr50{padding-left: 110px;}

.row.gy-4.contact_us>* {
    width: auto;
}
.row.gy-4.contact_us {
    justify-content: space-around;
}

/* 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: #003189;
  /* The default color of the main navmenu links */
  --nav-hover-color: #0562e8;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3498db;
  /* 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: #f4fafd;
  --surface-color: #ffffff;
}

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

.ul-style {
  list-style-type: square !important;
  list-style: inside;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Montserrat", sans-serif;
}

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

a:hover {
  color:#3498db;
  text-decoration: none;
}

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

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

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

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

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

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

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


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: #000;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/*--------------------------------------------------------------
# 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: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    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: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #000;
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

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

.footer .social-links {
  margin-top: 20px;
}

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

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

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# 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(--default-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 {
  /* --background-color: color-mix(in srgb, var(--default-color), transparent 96%); */
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  padding: 15px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  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 70%);
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
/* Base Styles */
.section-title {
  text-align: center;
  padding-bottom: 60px;
  /* Default padding */
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  /* Scalable font size */
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  /* Default line width */
  height: 2px;
  background: var(--accent-color);
  /* Use a CSS variable for easy theme changes */
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
  /* Add spacing around the lines */
}

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

.section-title p {
  margin-bottom: 0;
  font-size: 1rem;
  /* Scalable paragraph font */
  line-height: 1.5;
  /* Improved readability */
}

/* Responsive Breakpoints */

/* Large devices (desktops, >1200px) */
@media (min-width: 1200px) {
  .section-title {
    /* padding-bottom: 80px; */
    /* Larger padding for bigger screens */
  }

  .section-title h2 {
    font-size: 2.5rem;
    /* Slightly larger font */
  }

  .section-title h2:before,
  .section-title h2:after {
    width: 60px;
    /* Extend decorative lines */
  }
}

/* Medium devices (tablets, 768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .section-title {
    padding-bottom: 60px;
    /* Keep consistent padding */
  }

  .section-title h2 {
    font-size: 2.2rem;
    /* Adjust font size slightly smaller */
  }

  .section-title h2:before,
  .section-title h2:after {
    width: 50px;
    /* Keep line size reasonable */
  }

  .section-title p {
    font-size: 1rem;
    /* Maintain readability */
  }
}

/* Small devices (phones, <768px) */
@media (max-width: 767px) {
  .section-title {
    padding-bottom: 50px;
    /* Reduce padding for small screens */
  }

  .section-title h2 {
    font-size: 1.8rem;
    /* Smaller font for phones */
  }

  .section-title h2:before,
  .section-title h2:after {
    width: 40px;
    /* Shorter lines for compact spacing */
  }

  .section-title p {
    font-size: 0.9rem;
    /* Smaller paragraph text */
  }
}

/* Extra small devices (very small phones, <480px) */
@media (max-width: 480px) {
  .section-title {
    padding-bottom: 40px;
    /* Further reduce padding */
  }

  .section-title h2 {
    font-size: 23px;
    /* Compact font size */
  }

  .section-title h2:before,
  .section-title h2:after {
    width: 30px;
    /* Minimal line width */
  }

  .section-title p {
    font-size: 0.8rem;
    /* Small text for extra small screens */
  }
}

/* hero section */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.description {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.description p {
  max-width: 36rem;
  text-align: center;
  margin: 1rem 0;
}

.masthead {
  background-color: #000;
  padding-bottom: 12rem;
  margin-bottom: 2rem;
  position: relative;
  color: var(--color-white);
}

.header {
  padding-top: 2rem;
}

.header-menu {
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 640px) {
  .header-menu {
    flex-direction: column;
  }
}

.header-menu nav ul {
  display: flex;
  list-style: none;
  padding-left: 0;
}

.header-menu nav ul>li {
  margin: 0 1.25rem;
}

.header-menu nav ul>li a {
  text-decoration: none;
  color: var(--color-white);
}

.header-menu .header-cta {
  background-color: var(--color-white);
  color: var(--color-primary);
  text-decoration: none;
  padding: .625rem 1.25rem;
  border-radius: 4px;
}

.logo {
  font-weight: 600;
  margin: 0;
}

.masthead::after {
  content: '';
  display: block;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1920' height='135.212' viewBox='0 0 1920 135.212'%3E%3Cpath id='Path_2' data-name='Path 2' d='M0,1070V979.431s287.752,78.186,927.752,0S1920,949.536,1920,949.536V1070Z' transform='translate(0 -934.788)' fill='%23fff'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
}

.masthead .content {
  margin-top: 3rem;
}

@media (max-width: 640px) {
  .content-container {
    flex-direction: column;
  }
}

.masthead .left-column {
  position: relative;
}

@media (max-width: 640px) {
  .masthead .left-column .hero-img {
    text-align: center;
    margin-bottom: 2rem;
  }
}

/* .masthead .left-column .img-device {
  height: 30rem;
  object-fit: contain;
} */

.masthead .right-column .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  /* max-width: 70%; */
  margin: 0 auto;
}

.hero-content p {
  margin-top: 1rem;
  font-size: large;
}

/* Shine Effect Button */
.shine-button {
  position: relative;
  padding: 1.2rem 2.4rem;
  font-size: 1.1rem;
  color: white;
  background: linear-gradient(45deg, #2563eb, #4f46e5);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
}

.shine-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.shine-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.5s ease;
}

.shine-button:hover::before {
  transform: rotate(45deg) translateY(100%);
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
/* vlauable paterns */

.clients {
  padding: 25px 0;
  background-color: #F9FAFE;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  max-width: 55%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

.swan-group {
  max-width: 20%;
  display: block;
  margin: 0 auto;
}

.about-img-text {
  text-align: center;
  font-size: xx-large;
  font-family: "Montserrat", sans-serif;
  margin-top: 28px;
  color: #2365AF;
  font-weight: 500;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .clients .client-logo {
    width: 50%;
  }

  .swan-group {
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .clients .client-logo {
    width: 100%;
  }

  .swan-group {
    max-width: 60%;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  right: -80px;
  top: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item:after {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  right: -140px;
  top: -140px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 35px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.services .service-item h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--heading-color);
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin: 10px 0 0 0;
}

.services .service-item:hover:before,
.services .service-item:hover:after {
  background: var(--accent-color);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .service-item:hover h4 a,
.services .service-item:hover p {
  color: var(--contrast-color);
}

.services .service-item:hover i {
  background: var(--surface-color);
  color: var(--accent-color);
}

.container.section-title.aos-init.aos-animate.patners {
  padding: 0px;
}

/* Technology icon */
.Icon {
  width: 40px;
  margin: 5px;
  padding-right: 6px;
}

/* ended technology icon */
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color) !important;
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

.BG-portfolio {
  inset: 0;
  z-index: -1;
  /* background-image: linear-gradient(90deg, rgba(4, 18, 31, .96) -1.12%, rgba(20, 114, 182, .96) 100%); */
  background-color: #003189;
  height: 60vh;
  width: 100%;

}

button.portfolio-button {
  padding: 10px 50px;
  font-size: 20px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 35px;

}

button.portfolio-button:hover {
  background-color: #0056b3;
}

.p-portfolio {
  font-size: x-large;
  font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/contact-bg.webp");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


/* Contactt Us Page */


.contact-page-sec .contact-page-form h2 {
  color: #071c34;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}

.contact-page-form.contact-form input {
  margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
  height: 110px;
}

.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}

.contact-info-icon i {
  font-size: 48px;
  color: #d3e0f1;
}

.contact-info-text p {
  margin-bottom: 0px;
}

.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-info-text span {
  color: #adadad;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  width: 100%;
}

.contact-page-form input {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}

.contact-page-form .message-input {
  display: inline-block;
  width: 100%;
  padding-left: 0;
}

.single-input-field textarea {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"] {
  background: #0562e8 none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
}

.single-input-fieldsbtn input[type="submit"]:hover {
  background: #071c34;
  transition: all 0.4s ease-in-out 0s;
  border-color: #071c34
}

.single-input-field h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}

.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}

.contact-page-form form {
  padding: 20px 15px 0;
}


/* technology  */
:root {
  --color-primary: #003189;
  --color-text: #545d7a;
  --color-white: #fff;
  --color-title: #242e4c;
  --color-background: #f7f8fb;
  --color-border: #dae1f5;
  /* Fonts */
  --font-family: "Montserrat", sans-serif;
  --fs-sm: 1.4rem;
  --fs-md: 1.6rem;
  --fs-lg: 2.2rem;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

}



.accordion__wrapper {

  box-shadow: var(--shadow);
  border-radius: 2.5rem;
  width: 100%;
  max-width: 60rem;

}

.accordion__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  text-align: center;
  margin-bottom: 4rem;

}

.accordion {
  border-bottom: 0.1rem solid var(--color-border);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.accordion__icon {
  background-color: var(--color-primary);
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--color-white);
  flex-shrink: 0;
}

.accordion__question {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--color-title);
}

.accordion__answer {
  padding: 2rem 0;
}

.accordion__content {
  overflow: hidden;
  height: 0;
  transition: var(--transition);
  font-size: var(--fs-sm);
}

@media screen and (min-width: 580px) {
  .accordion__wrapper {
    /* padding: 5rem 8rem; */
    margin: auto;
  }
}

/* Ended technology */

/* Footor */

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--surface-color);
  line-height: 30px;
  margin-top: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

.footer {
  background: #000;
  padding-top: 80px;
  padding-bottom: 40px;
  font-family: "Montserrat", sans-serif;
}

.single_footer {}

@media only screen and (max-width:768px) {
  .single_footer {
    margin-bottom: 30px;
  }
}

.single_footer h4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}

.single_footer h4::after {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  background: #fff;
  margin-top: 20px;
}

.single_footer p {
  color: #fff;
}

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

.single_footer ul li {}

.single_footer ul li a {
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 36px;
  font-size: 15px;
  text-transform: capitalize;
}

.single_footer ul li a:hover {
  color: #003189;
}

.single_footer_address {}

.single_footer_address ul {}

.single_footer_address ul li {
  color: #fff;
}

.single_footer_address ul li span {
  font-weight: 400;
  color: #fff;
  line-height: 28px;
}

.contact_social ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

/*START SOCIAL PROFILE CSS*/
.social_profile {
  margin-top: 40px;
}

.social_profile ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

.social_profile ul li {
  float: left;
}

.social_profile ul li a {
  text-align: center;
  border: 0px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  margin: 0px 5px;
  font-size: 18px;
  color: #fff;
  border-radius: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width:768px) {
  .social_profile ul li a {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width:480px) {
  .social_profile ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.social_profile ul li a:hover {
  background: #003189;
  color: #fff;
  border: 0px;
}

/*END SOCIAL PROFILE CSS*/
.copyright {
  margin-top: 70px;
  padding-top: 40px;
  color: #fff;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}

.copyright a {
  color: #acafb3;
  transition: all 0.2s ease 0s;
}

.copyright a:hover {
  color: #000;
}

/*======================
    404 page
=======================*/


.page_404 {
  padding: 40px 0;
  background: #fff;
  font-family: "Montserrat", sans-serif;
}

.page_404 img {
  width: 100%;
}

.four_zero_four_bg {

  background-image: url(https://cdn.dribbble.com/users/722246/screenshots/3066818/404-page.gif);
  height: 628px;
  background-position: center;
  width: 95%;
}


.four_zero_four_bg h1 {
  font-size: 80px;
}

.four_zero_four_bg h3 {
  font-size: 80px;
}

.link_404 {
  color: #fff !important;
  padding: 10px 20px;
  background: #003189;
  margin: 20px 0;
  display: inline-block;
  width: 25%;
}

.contant_box_404 {
  margin-top: -50px;
}

/* Download Button  */
button {
  padding: 15px 30px;
  font-size: 18px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #0056b3;
}

button:active {
  transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 600px) {
  button {
    font-size: 16px;
    padding: 12px 25px;
  }
}

/* blog section */
.seperator {
  margin-bottom: 30px;
  width: 35px;
  height: 3px;
  background: #777;
  border: none;
}

.title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.title .row {
  padding: 50px 0 0;
}

.title h1 {
  text-transform: uppercase;
}

.title .seperator {
  margin: 0 auto 10px;
}

.item {
  position: relative;
  margin-bottom: 30px;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.item .item-in {
  background: #fff;
  padding: 0 0 25px 0;
  position: relative;
}

.item .item-in:hover:before {
  width: 100%;
}

.item .item-in::before {
  content: "";
  position: absolute;
  bottom: 0px;
  height: 2px;
  width: 0%;
  background: #333333;
  right: 0px;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
}

.item h4 {
  font-size: 18px;
  margin-top: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.item p {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;

}

.item a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #666666;
  margin-top: 10px;
}

.item a i {
  opacity: 0;
  padding-left: 0px;
  transition: 0.4s;
  font-size: 24px;
  display: inline-block;
  top: 5px;
  position: relative;
}

.item a:hover {
  text-decoration: none;
}

.item a:hover i {
  padding-left: 10px;
  opacity: 1;
  font-weight: 300;
}

.item .icon {
  position: absolute;
  top: 27px;
  left: -16px;
  cursor: pointer;
}

.item .icon a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #999;
  text-transform: none;
}

.item .icon svg {
  width: 32px;
  height: 32px;
  float: left;
}

.item .icon .icon-topic {
  opacity: 0;
  padding-left: 0px;
  transition: 0.4s;
  display: inline-block;
  top: 0px;
  position: relative;
}

.item .icon:hover .icon-topic {
  opacity: 1;
  padding-left: 10px;
}

@media only screen and (max-width: 768px) {
  .item .icon {
    position: relative;
    top: 0;
    left: 0;
  }
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title-nav {
  background-color:
    color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
  margin-bottom: 40px;
}

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

.section-blog {
  padding: 60px 0;
}

.section-blog .header-section {
  margin-bottom: 30px;
  padding: 45px 75px 53px;
  background-color: #f4fafd;
  color: #003189;
  border-radius: 5px;
  text-align: center;
}

/* Responsive Layout Updates */
.row-blog {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: "Montserrat", sans-serif;
}

.section-blog {
  padding: 60px 20px;
}

.section-blog .single-post {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.section-blog .single-post .infos {
  padding: 20px;
}

.section-blog .single-post .title-post a {
  font-size: 18px;
  color: #003189;
  font-weight: 700;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

.section-blog .single-post p {
  font-size: 16px;
  color: #555;
  margin: 10px 0;
  font-weight: 400;
}

.section-blog .single-post .by-and-date {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.blog-btn {
  align-self: flex-start;
  background-color: #147de7;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.blog-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .blog-btn {
    align-self: center;
    width: 100%;
    text-align: center;
  }

  .section-blog .single-post .infos {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px; */
  }
}

@media (max-width: 576px) {
  .section-blog .single-post {
    flex-direction: column;
    gap: 10px;
  }

  .section-blog .single-post .title-post a {
    font-size: 16px;
  }

  .section-blog .single-post p {
    font-size: 13px;
  }

  .blog-btn {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .row-blog {
    gap: 10px;
    /* Reduce gap for smaller screens */
  }
}

/* Media query for medium-sized devices (e.g., tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
  .row-blog {
    gap: 0;
    /* Medium gap for tablets */
  }
}

/* Media query for larger devices (e.g., desktops) */
@media (min-width: 1025px) {
  .row-blog {
    gap: 25px;
    /* Increase gap for larger screens */
  }
}

/* Blog-details */

@media (max-width: 768px) {
  body {
    height: auto;
  }
}

.card-blog {
  max-width: 75rem;
  width: 100%;
  background-color: #fff;
  padding: 60px;
  border-radius: 15px;
  box-shadow: 6px 6px 12px rgba(13, 110, 253, 0.25);
  margin: auto;
  margin-bottom: 20px;
}

@media (max-width: 850px) {
  .card-blog {
    width: 90%;
  }

  @media (max-width: 768px) {
    .card-blog {
      margin: 100px auto;
    }
  }
}

.card-blog .header {

  flex-wrap: wrap;
  margin-bottom: 20px;
  text-align: center;
}

.card-blog .header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
  border-bottom: 2px solid #8080801c;
  padding-bottom: 25px;

}

.card-blog p {
  font-size: 16px;
  width: 100%;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  color: #003189;
}

.blog-heading {
  color: #0562e8;
  font-family: "Montserrat", sans-serif;
}

.sub-points-blogs {
  padding-left: 30px;
  font-family: "Montserrat", sans-serif;
  color: black;
}

.card-blog .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 430px;
  width: 100%;
}

.card-blog .categories p {
  font-size: 16px;
  color: #494949;
  margin-top: 20px;
  margin-bottom: unset;
}

.card-blog .categories .category {
  background-color: #EFF5FF;
  border-radius: 45px;
  color: #2E29FF;
  font-size: 16px;
  padding: 15px 25px;
}

/*  Ended Blog details*/

/* Blog Footor */
.testimonial-container {
  background-color: #0562e8;
  color: white;
  border-radius: 15px;
  margin: 20px auto;
  padding: 50px 80px;
  position: relative;
  max-width: 75rem;
  width: 100%;
}

.fa-quote {
  color: rgba(255, 255, 255, 0.3);
  font-size: 28px;
  position: absolute;
  top: 70px;
}

.fa-quote-left {
  left: 40px;
}

.fa-quote-right {
  right: 40px;
}

.testimonial {
  line-height: 28px;
  text-align: justify;
}

.user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user .user-image {
  border-radius: 50%;
  height: 75px;
  width: 75px;
  object-fit: cover;
}

.user .user-details {
  margin-left: 10px;
}

.user .username {
  margin: 0;
  color: #fff;
}

.user .role {
  font-weight: normal;
  margin: 10px 0;
  color: #fff;
}

.Icon-Blog {
  display: flex;
  position: relative;
  right: 30%;
  bottom: 64px;
  font-size: xxx-large;
  color: #fff;
}


@keyframes grow {
  0% {
    transform: scaleX(0);
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    padding: 20px 30px;
  }

  .fa-quote {
    display: none;
  }
}

/* Director Message */
.card-Director::after,
.card-Director img {
  border-radius: 50%;
}

.card-Director {
  padding: 2.5rem 2rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .5);
  box-shadow: 0 0 30px rgba(0, 0, 0, .15);
  margin: 1rem;
  position: relative;
  transform-style: preserve-3d;
  overflow: hidden;
  margin: auto;
}

.card-Director::before,
.card-Director::after {
  content: '';
  position: absolute;
  z-index: -1;
}

.card-Director::before {
  width: 100%;
  height: 100%;
  border: 1px solid #FFF;
  border-radius: 10px;
  top: -.7rem;
  left: -.7rem;
}

.card-Director::after {
  height: 15rem;
  width: 15rem;
  background-color: #0562e8;
  top: -8rem;
  right: -8rem;
  box-shadow: 2rem 6rem 0 -3rem #FFF
}

.card-Director img {
  width: 8rem;
  min-width: 80px;
  box-shadow: 0 0 0 5px #FFF;
}

.infos {
  margin-left: 1.5rem;
}

.name {
  margin-bottom: 1rem;
}

.name h2 {
  font-size: 1.3rem;
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  color: #0562e8;
}

.name h4 {
  font-size: large;
  color: #333
}

.text {
  font-size: 17px;
  margin-bottom: 1rem;
}

.stats {
  margin-bottom: 1rem;
}

.stats li {
  min-width: 5rem;
}

.stats li h3 {
  font-size: .99rem;
}

.stats li h4 {
  font-size: .75rem;
}

.links button {
  font-family: "Montserrat", sans-serif;
  min-width: 120px;
  padding: .5rem;
  border: 1px solid #222;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all .25s linear;
}

.links .follow,
.links .view:hover {
  background-color: #222;
  color: #FFF;
}

.links .view,
.links .follow:hover {
  background-color: transparent;
  color: #222;
}

@media screen and (max-width: 450px) {
  .card-Director {
    display: block;
  }

  .infos {
    margin-left: 0;
    margin-top: 1.5rem;
  }

  .links button {
    min-width: 100px;
  }
}

.Director-section {
  font-family: "Montserrat", sans-serif;
}

/* Feedback form */
/* QR Code Box */
#qrCodeBox {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 20px;
}

.qrCodeSquareFrame {
  width: 320px;
  height: 320px;
  background: #2b7dfa;
  border-radius: 10px;
  margin: 0 auto 20px;
  border: solid 1px #4677c6;
  position: relative;
}

.text-QR {
  font-size: 16px;
  text-align: center;
  color: #60699a;
}

.text h1 {
  font-size: 20px;
  font-weight: 700;
  color: #101b39;
  margin-bottom: 10px;
}

.text p {
  font-size: 14px;
  line-height: 1.5;
}

/* Feedback Modal */
.feedback-modal {
  background-color: #f8faff;
  border-radius: 20px;
  padding: 30px;
  max-width: 666px;
  width: 100%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.feedback-modal h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.feedback-modal p {
  font-size: 16px;
  margin-bottom: 20px;
}

.rating-options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.rating-options label {
  text-align: center;
  cursor: pointer;
  border: 2px solid #e5edff;
  padding: 15px;
  border-radius: 5px;
  flex: 1;
  max-width: 90px;
  box-sizing: border-box;
  transition: box-shadow 0.3s, transform 0.3s;
}

.rating-options .emoji {
  font-size: 20px;
  margin-bottom: 5px;
}

textarea {
  width: 100%;
  padding: 8px;
  border: 2px solid #a3b8e8;
  border-radius: 5px;
  resize: none;
  font-size: 14px;
  margin-bottom: 20px;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

button {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

#submit {
  background-color: #0562e8;
  color: #ffffff;
}

#cancel {
  background-color: #ffffff;
  color: #60699a;
  border: 1px solid #60699a;
}

.button-container {
  margin: 15px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive Design */
@media (max-width: 720px) {
  body {
    flex-direction: column;
  }

  .feedback-modal {
    padding: 20px;
    width: 90%;
  }

  .rating-options {
    justify-content: center;
  }

  .actions {
    flex-direction: column;
    gap: 10px;
  }
}

.div-QR {
  background-color: #f8faff;
  border-radius: 20px;
  padding: 30px;
  max-width: 666px;
  width: 100%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;

}

.qr-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* Adjust the gap between the images */
}

.img-QR {
  border-radius: 10px;
  width: 50%;
  /* Adjust the size to fit within the container */
}

.heading-QR {

  margin: 20px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;

}

.title-QR {
  font-family: "Montserrat", sans-serif;
  font-size: x-large;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  /* font-size: xx-large; */


}

@media (max-width: 992px) {
  .feedback-modal {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
  }

  .qr-row {
    flex-direction: column;
    gap: 10px;
  }

  .img-QR {
    width: 70%;
    /* Adjust the size for tablets */
    margin: 0 auto;
  }

  .actions {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .feedback-modal {
    padding: 15px;
    width: 95%;
  }

  .rating-options {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .qr-row {
    gap: 15px;
  }

  .img-QR {
    width: 80%;
    /* Smaller image for mobile */
  }

  .heading-QR {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .feedback-modal {
    padding: 10px;
    width: 100%;
  }

  .rating-options label {
    flex: 1 0 calc(50% - 10px);
    /* Two columns for small devices */
    max-width: 100%;
  }

  .qr-row {
    flex-direction: column;
    align-items: center;
  }

  .img-QR {
    width: 90%;
  }

  .actions {
    flex-direction: column;
  }
}

/* Resource page Design */
.course-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.course-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.course-header {
  background-color: #e3e6fc;
  color: #4a4eb7;
  padding: 15px 16px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.course-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 12px;
  margin: 20px;
}

.course-description {
  font-size: 14px;
  margin: 12px 0;
  color: #6c757d;
  margin: 15px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6c757d;
  margin: 20px;
}

i.fa-regular.fa-bookmark {
  position: relative;
  display: flex;
  justify-content: end;
  bottom: 30px;
  margin-right: 35px;
  font-size: 20px;
}


.faq-sidebar a:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Container */
.container-resource {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Main Content */
main {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-heading {
  font-size: 1.5rem;
  color: #0056b3;
  margin-top: 20px;
  margin-bottom: 10px;
}

.sub-points-blogs li {
  list-style-type: square;
  margin-bottom: 15px;
}

.sub-points-blogs h5 {
  font-size: 1.2rem;
  color: #333;
}

.sub-points-blogs p {
  font-size: 1rem;
  margin-top: 5px;
}

/* Sidebar */
.faq-sidebar {
  max-width: 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 20px;
  height: fit-content;
}

.faq-sidebar h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.faq-sidebar a {
  display: block;
  color: #007bff;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 1rem;
}

.faq-sidebar a:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .faq-sidebar {
    position: static;
    max-width: 100%;
    margin-top: 20px;
  }

  .blog-heading {
    font-size: 1.3rem;
  }

  .sub-points-blogs h5 {
    font-size: 1.1rem;
  }

  .faq-sidebar h3 {
    font-size: 1.2rem;
  }

  .faq-sidebar a {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .blog-heading {
    font-size: 1.2rem;
  }

  .sub-points-blogs h5 {
    font-size: 1rem;
  }

  .faq-sidebar h3 {
    font-size: 1rem;
  }
}

/* about us page  */
/* who we are   */


.illustration {
  max-width: 90%;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (min-width: 768px) {
  .about-section {
    padding: 25px 80px;
  }

  .about-section h1 {
    font-size: 3rem;
  }

  .about-section p {
    font-size: 15px;
  }
}

/* our vision */
.core-values {
  background: linear-gradient(11deg, #3a7cf1, #093c94);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.core-value-heading {
  color: #fff;
  font-weight: 700;
}

.core-values ul {
  list-style: none;
  padding: 0;
}

.core-values li {
  margin-bottom: 10px;
}

.mission,
.vision {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
}


@media (min-width: 768px) {
  .flex-container {
    display: flex;
    /* gap: 20px; */
  }

  .content-section {
    display: flex;
  }

  .core-values {
    flex: 1;
  }

  .mission-vision {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
  }
}

/* services */
.service-item-about {
  text-decoration: none;
  padding: 50px 25px;
  color: #000;
  background-color: #fff;
  border-radius: 25px;
  border-radius: 25px;
  box-shadow: 2px 2px 10px rgba(61, 61, 61, 0.596);
  transition: all 300ms ease, transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  width: 49%;
  font-family: "Montserrat", sans-serif;
}

.service-item-about:hover .title {
  color: #fff !important;
}

.service-item-about:hover {
  background-color: #0562e8;
  color: #fff !important;
}

.service-item-about:hover {
  transform: translateY(-20px);
  transition-duration: 300ms;
}

.service-item-about::after:hover {
  background-color: #fff;
  color: #0562e8;
}

.service-item-about::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 25px 0;
  cursor: pointer;
  transition: inherit;
  box-shadow: inset 4px 4px 7px rgba(61, 61, 61, 0.596);
  background-color: #003189;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9JzMwMHB4JyB3aWR0aD0nMzAwcHgnICBmaWxsPSIjZmZmZmZmIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0iTGF5ZXIgMSIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHg9IjBweCIgeT0iMHB4Ij48dGl0bGU+NTI8L3RpdGxlPjxwYXRoIGQ9Ik04MS4zMDMyOSwzOC41MjkzOUExNC4wMTgsMTQuMDE4LDAsMSwwLDYxLjQ3NywxOC43MDY3MUw0Ny4wMDMxNSwzMy4xNzkxNGExNC4wMzAzNywxNC4wMzAzNywwLDAsMCwwLDE5LjgyMTcxLDQuODAxMTMsNC44MDExMywwLDAsMS02Ljc4OTc5LDYuNzg5ODcsMjMuNjQzMjcsMjMuNjQzMjcsMCwwLDEsMC0zMy40MDE0NUw1NC42ODcyMSwxMS45MTY4NEEyMy42MjAzLDIzLjYyMDMsMCwwLDEsODguMDkzMDgsNDUuMzE5MjdMODAuOTIzOCw1Mi40ODcxMWE0LjgwMTE0LDQuODAxMTQsMCwwLDEtNi43ODk4LTYuNzg5ODdaTTExLjkwNzQxLDg4LjA5MzlhMjMuNjUwNTMsMjMuNjUwNTMsMCwwLDAsMzMuNDA1ODYtLjAwMUw1OS43ODY2NCw3My42MjE0N2EyMy42MTU4MywyMy42MTU4MywwLDAsMCwwLTMzLjQwMTQ1LDQuODAxMTQsNC44MDExNCwwLDAsMC02Ljc4OTc5LDYuNzg5ODgsMTQuMDE1MzEsMTQuMDE1MzEsMCwwLDEsMCwxOS44MjI2OEwzOC41MjM0OCw4MS4zMDRBMTQuMDE4LDE0LjAxOCwwLDEsMSwxOC42OTcyLDYxLjQ4MTM1TDI1Ljg2Niw1NC4zMTM1YTQuODAxMTQsNC44MDExNCwwLDAsMC02Ljc4OTgtNi43ODk4N2wtNy4xNjg3OSw3LjE2Nzg1QTIzLjY0NDg5LDIzLjY0NDg5LDAsMCwwLDExLjkwNzQxLDg4LjA5MzlaIj48L3BhdGg+PC9zdmc+");
}

.service-item-about:hover:after {
  background-color: #fff;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9JzMwMHB4JyB3aWR0aD0nMzAwcHgnICBmaWxsPSIjZmI2ZjNjIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGRhdGEtbmFtZT0iTGF5ZXIgMSIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHg9IjBweCIgeT0iMHB4Ij48dGl0bGU+NTI8L3RpdGxlPjxwYXRoIGQ9Ik04MS4zMDMyOSwzOC41MjkzOUExNC4wMTgsMTQuMDE4LDAsMSwwLDYxLjQ3NywxOC43MDY3MUw0Ny4wMDMxNSwzMy4xNzkxNGExNC4wMzAzNywxNC4wMzAzNywwLDAsMCwwLDE5LjgyMTcxLDQuODAxMTMsNC44MDExMywwLDAsMS02Ljc4OTc5LDYuNzg5ODcsMjMuNjQzMjcsMjMuNjQzMjcsMCwwLDEsMC0zMy40MDE0NUw1NC42ODcyMSwxMS45MTY4NEEyMy42MjAzLDIzLjYyMDMsMCwwLDEsODguMDkzMDgsNDUuMzE5MjdMODAuOTIzOCw1Mi40ODcxMWE0LjgwMTE0LDQuODAxMTQsMCwwLDEtNi43ODk4LTYuNzg5ODdaTTExLjkwNzQxLDg4LjA5MzlhMjMuNjUwNTMsMjMuNjUwNTMsMCwwLDAsMzMuNDA1ODYtLjAwMUw1OS43ODY2NCw3My42MjE0N2EyMy42MTU4MywyMy42MTU4MywwLDAsMCwwLTMzLjQwMTQ1LDQuODAxMTQsNC44MDExNCwwLDAsMC02Ljc4OTc5LDYuNzg5ODgsMTQuMDE1MzEsMTQuMDE1MzEsMCwwLDEsMCwxOS44MjI2OEwzOC41MjM0OCw4MS4zMDRBMTQuMDE4LDE0LjAxOCwwLDEsMSwxOC42OTcyLDYxLjQ4MTM1TDI1Ljg2Niw1NC4zMTM1YTQuODAxMTQsNC44MDExNCwwLDAsMC02Ljc4OTgtNi43ODk4N2wtNy4xNjg3OSw3LjE2Nzg1QTIzLjY0NDg5LDIzLjY0NDg5LDAsMCwwLDExLjkwNzQxLDg4LjA5MzlaIj48L3BhdGg+PC9zdmc+");
}

.description {
  text-align: justify;
}

ul.row.row-cols-3.mt-4 {
  justify-content: space-between;
}

@media (max-width: 480px) {
  .service-item-about {
    padding: 30px 15px;
    font-size: 14px;
    width: 100%;
  }

  .service-item-about::after {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 540px) {
  .service-item-about {
    padding: 30px 15px;
    font-size: 14px;
    width: 100%;
  }

  .service-item-about::after {
    width: 30px;
    height: 30px;
  }
}