/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto",  sans-serif;
    --heading-font: "Roboto",  sans-serif;
    --nav-font: "Roboto",  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: #0d0460;
     /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #e88f13;
    --accent-color2: #fff;
    /* --accent-color: #e88f13; */
    --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. */
  }
  .my-link{
    color: #04135f;
  }
  .my-link:hover{
    color: var(--accent-color);
  }

  .my-heading{
    margin-top: 100px;
  }

  @media (max-width:1024px) {
    .my-heading{
      margin-top: 80px;
    }
  }
  /* 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: #212529;  /* The default color of the main navmenu links */
    /* --nav-hover-color: #0d83fd; Applied to main navmenu links when they are hovered over or active */
    --nav-hover-color: #e88f13;
    --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: #0d83fd; Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
    --nav-dropdown-hover-color: #e88f13; 
  }
  
  /* 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: #fff;
    --surface-color: #ffffff;
  }
  
  .dark-background {
    /* --background-color: #0d83fd; */
    --background-color: #fff;
    /* --background-color: #e88f13; */
    --default-color: #ffffff;
    --heading-color: #ffffff;
    /* --surface-color: #409dfd; */
    --surface-color: #e88f13;
    --contrast-color: #ffffff;
  }
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  body {
    color: var(--accent-color2);
    /* color: var(--default-color); */
    /* background-color: var(--background-color); */
    font-family: var(--default-font);
  }
  
  a {
    color: var(--accent-color2);
    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(--accent-color);
    /* color: var(--heading-color); */
    font-family: var(--heading-font);
  }
  
 
  
  /*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
  .header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
  }
  
  .header .header-container {
    background: var(--surface-color);
    border-radius: 50px;
    padding: 5px 25px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  .scrolled .header .header-container {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
  }
  
  .header .logo {
    line-height: 1;
    padding-left: 5px;
  }
  header a{
    cursor: pointer;
  }
  .header .dropdown a>span:hover{
    color: var(--accent-color);
    text-decoration: underline;
  }
  header li a:hover{
    color: var(--accent-color);
    text-decoration: underline;
  }
  .header .logo img {
    max-height: 36px;
    margin-right: 8px;
  }
  
  .header .logo h1 ,P{
    font-size: 15px;
    margin: 0;
    font-weight: 800;
    color: var(--heading-color);
  }
  .header .logo h1 {
    padding-top: 6px;   
    color: #113b63;
    text-align: left;
  }
  .header .logo P{
    color: var(--accent-color);
    font-weight: 900;
    letter-spacing: 3px;

  }
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 20px;
    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 {
      padding-top: 10px;
    }
  
    .header .header-container {
      margin-left: 10px;
      margin-right: 10px;
      padding: 10px 5px 10px 15px;
    }
  
    .header .logo {
      order: 1;
    }
  
    .header .btn-getstarted {
      order: 2;
      margin: 0 10px 0 0;
      padding: 6px 15px;
    }
  
    .header .navmenu {
      order: 3;
    }
  }
  
  /*--------------------------------------------------------------
  # 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: 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;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Footer
  --------------------------------------------------------------*/
  .footer {
    color: var(--accent-color2);
    /* background-color: #9e95ea45; */
    background-color: #1a0d93;
    /* background-color: var(--background-color); */
    font-size: 14px;
    position: relative;
  }
  
  .footer .footer-top {
    padding-top: 50px;
  }
  
  .footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
  }
  
  .footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
  }
  
  .footer .footer-about .logo span {
    color: var(--accent-color2);
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .footer .footer-about .myfootText>p {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
  }
  
  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    /* color: color-mix(in srgb, var(--default-color), transparent 20%); */
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .footer .social-links a:hover {
    color: var(--accent-color2);
    border-color: var(--accent-color);
  }
  
  .footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
  }
  
  .footer .footer-links {
    margin-bottom: 30px;
  }
  
  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
  }
  
  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    line-height: 60px;
  }
  
  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  .footer .footer-links ul a {
    /* color: color-mix(in srgb, var(--default-color), transparent 30%); */
    color: #fff;
    display: inline-block;
    line-height: 1;
  }
  
  .footer .footer-links ul a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .footer .footer-contact p {
    margin-bottom: 5px;
  }
  
  .footer .copyright1 {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    color: #fff !important;
  }
  
  /*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
  .scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    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;
    bottom: 15px;
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Page Titles & Breadcrumbs
  --------------------------------------------------------------*/
  .page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 170px 0 80px 0;
    text-align: center;
    position: relative;
  }
  
  .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 70%);
  }
  
  /*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
  section,
  .section {
    color: var(--accent-color2);
    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: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .section-title p {
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  .hero {
    position: relative;
    padding-top: 160px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
  }
  .hero h1{
    text-align: left;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
    pointer-events: none;
  }
  
  .hero .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero .hero-content h1 .accent-text {
    color: var(--accent-color);
  }
  
  @media (max-width: 992px) {
    .hero .hero-content {
      text-align: center;
      margin-bottom: 3rem;
    }
  
    .hero .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .hero .hero-content .hero-buttons {
      justify-content: center;
    }
  }
  
  @media (max-width: 575px) {
    .hero .hero-content h1 {
      font-size: 2rem;
    }
    .hero h1{
      text-align: center;
    }
  }
  
  .hero .company-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 500;
  }
  
  .hero .company-badge i {
    font-size: 1.25rem;
  }
  
  .hero .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .hero .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 20%);
    border-color: color-mix(in srgb, var(--accent-color), black 20%);
  }
  
  .hero .btn-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .hero .btn-link:hover {
    color: var(--accent-color);
  }
  
  .hero .btn-link i {
    font-size: 1.5rem;
    vertical-align: middle;
  }
  
  .hero .hero-image {
    position: relative;
    text-align: center;
    z-index: 1;
  }
  
  .hero .hero-image img {
    max-width: 100%;
    height: auto;
  }
  
  .hero .customers-badge {
    position: absolute;
    bottom: 10px;
    right: 30px;
    background-color: var(--surface-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    animation: float-badge 3s ease-in-out infinite;
    will-change: transform;
  }
  
  .hero .customers-badge .customer-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .hero .customers-badge .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--surface-color);
    margin-left: -8px;
  }
  
  .hero .customers-badge .avatar:first-child {
    margin-left: 0;
  }
  
  .hero .customers-badge .avatar.more {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .hero .customers-badge p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  @media (max-width: 992px) {
    .hero .customers-badge {
      position: static;
      margin: 1rem auto;
      max-width: 250px;
    }
  }
  
  .hero .stats-row {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    background-color: var(--surface-color);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
  }
  
  .hero .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
  }
  
  .hero .stat-item .stat-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 50px;
    transition: 0.3s;
  }
  
  .hero .stat-item .stat-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
  }
  
  .hero .stat-item:hover .stat-icon {
    background-color: var(--accent-color);
  }
  
  .hero .stat-item:hover .stat-icon i {
    color: var(--contrast-color);
  }
  
  .hero .stat-item .stat-content {
    flex-grow: 1;
  }
  
  .hero .stat-item .stat-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
  }
  
  .hero .stat-item .stat-content p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
  }
  
  @media (max-width: 575px) {
    .hero .stat-item {
      padding: 1.5rem;
    }
  }
  
  @keyframes float-badge {
    0% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-10px);
    }
  
    100% {
      transform: translateY(0);
    }
  }
  
  /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
 
  .about .about-meta {
    color: var(--accent-color) !important;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
   
  }
  
  .about .about-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--accent-color2);
  }
  .about .about-description {
font-weight: 400;
font-size: large;
  }
  @media (max-width: 992px) {
    .about .about-title {
      font-size: 2rem;
    }
  }
  
  .about .about-description {
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--accent-color2);
    /* color: color-mix(in srgb, var(--default-color), transparent 20%); */
  }
  
  .about .feature-list-wrapper {
    margin-bottom: 2rem;
    color: var(--accent-color2);
    font-weight: 500;
  }
  
  .about .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .about .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .about .feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
  }
  
  .about .profile .profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .about .profile .profile-name {
    font-size: 1.125rem;
    margin: 0;
  }
  
  .about .profile .profile-position {
    color: var(--accent-color);
    margin: 0;
    font-size: 0.875rem;
  }
  
  .about .contact-info {
    padding: 1rem 1.5rem;
    background-color: var(--surface-color);
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  }
  
  .about .contact-info i {
    color: var(--accent-color);
    font-size: 1.5rem;
  }
  
  .about .contact-info .contact-label {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.875rem;
    margin: 0;
  }
  
  .about .contact-info .contact-number {
    font-weight: 600;
    margin: 0;
  }
  
  .about .image-wrapper {
    position: relative;
  }
  
  @media (max-width: 992px) {
    .about .image-wrapper {
      padding-left: 0;
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
  }
  
  @media (max-width: 992px) {
    .about .image-wrapper .images {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 992px) {
    .about .image-wrapper .main-image {
      margin-left: 0;
    }
  }
  
  .about .image-wrapper .small-image {
    position: absolute;
    top: 5%;
    left: -10%;
    width: 45%;
    height: 50%;
    border: 8px solid var(--background-color);
  }
  
  @media (max-width: 992px) {
    .about .image-wrapper .small-image {
      position: static;
      width: 100%;
      margin: 0 auto;
      border: 0;
    }
  }
  
  .about .image-wrapper .experience-badge {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background-color: var(--accent-color);
    color: var(--accent-color2);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 200px;
    animation: experience-float 3s ease-in-out infinite;
  }
  
  @media (max-width: 992px) {
    .about .image-wrapper .experience-badge {
      position: static;
      width: fit-content;
      margin: 0 auto;
    }
  }
  
  .about .image-wrapper .experience-badge h3 {
    color: var(--contrast-color);
    font-size: 2.5rem;
    margin: 0;
    line-height: 0.5;
  }
  
  .about .image-wrapper .experience-badge h3 span {
    font-size: 1rem;
    display: inline-block;
    margin-left: 0.25rem;
  }
  
  .about .image-wrapper .experience-badge p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: var(--accent-color2);
  }
  
  @keyframes experience-float {
    0% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-10px);
    }
  
    100% {
      transform: translateY(0);
    }
  }
  
  /*--------------------------------------------------------------
  # Features Section
  --------------------------------------------------------------*/
  .features .nav-tabs {
    border: 0;
    background-color: var(--accent-color2);
    /* background-color: color-mix(in srgb, var(--default-color), transparent 96%); */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 6px;
    width: auto;
  }
  
  .features .nav-item {
    margin: 0;
    padding: 0 5px 0 0;
  }
  
  .features .nav-item:last-child {
    padding-right: 0;
  }
  
  .features .nav-link {
    background-color: none;
    color: var(--heading-color);
    padding: 10px 30px;
    transition: 0.3s;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    margin: 0;
  }
  
  @media (max-width: 468px) {
    .features .nav-link {
      padding: 8px 20px;
    }
  }
  
  .features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
  }
  
  .features .nav-link h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
  }
  
  .features .nav-link:hover {
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  }
  
  .features .nav-link:hover h4 {
    color: var(--accent-color);
  }
  
  .features .nav-link.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
  }
  
  .features .nav-link.active h4 {
    color: var(--contrast-color);
  }
  
  .features .tab-content {
    margin-top: 30px;
  }
  
  .features .tab-pane h3 {
    /* color: var(--heading-color); */
    color: var(--accent-color2);
    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 {
    --default-color: #555;
    --heading-color: #333;
    padding: 100px;
  }
  
  .features-cards .feature-box {
    height: 100%;
    padding: 40px 30px;
    border-radius: 10px;

  }
  
  .features-cards .feature-box i {
    font-size: 44px;
    display: inline-block;
    line-height: 0;
    color: var(--accent-color);
    margin-bottom: 20px;
  }
  
  .features-cards .feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
  }
  
  .features-cards .feature-box p {
    font-size: 15px;
    margin-bottom: 0;
  }
  
  .features-cards .feature-box.orange {
    background-color: #fff3e2;
    text-align: center;
  }
  
  .features-cards .feature-box.orange i {
    color: #edb86e;
  }
  
  .features-cards .feature-box.blue {
    background-color: #deedfd;
    text-align: center;
  }

  
  .features-cards .feature-box.blue i {
    color: #20a5f8;
  }
  
  .features-cards .feature-box.green {
    background-color: #d5f1e4;
    text-align: center;

  }
  
  .features-cards .feature-box.green i {
    color: #48c88a;
  }
  
  .features-cards .feature-box.red {
    background-color: #fdeded;
    text-align: center;
  }
  
  .features-cards .feature-box.red i {
    color: #f28484;
  }
  @media (max-width: 480px) {
    .features-cards{
      padding: 20px 10px;
    }

  }
  
  
  
  /*--------------------------------------------------------------
  # Features 2 Section
  --------------------------------------------------------------*/
  .features-2{
    background-image: url("images/photo-gal/Drone-Gallery/Career path 2.jpg");
    background-clip: var(--default-color);
    background: #fff !important;
    object-fit: cover;
    
  }
  .features-2 .feature-item .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  }
  
  .features-2 .feature-item .feature-icon i {
    font-size: 24px;
    color: var(--accent-color);
    cursor: pointer;
  }
  
  .features-2 .feature-item .feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .features-2 .feature-item .feature-content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 15px;
    margin-bottom: 0;
  }
  
  .features-2 .phone-mockup {
    position: relative;
    padding: 30px 0;
  }
  
  .features-2 .phone-mockup img {
    min-width: 380px;
    height: auto;
    /* min-height: 600px; */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  }
  
  @media (max-width: 991.98px) {
    .features-2 .feature-item {
      text-align: center !important;
      margin-bottom: 2rem;
    }
  
    .features-2 .feature-item .d-flex {
      flex-direction: column;
      text-align: center;
      justify-content: center !important;
    }
  
    .features-2 .phone-mockup {
      margin: 3rem 0;
    }
  }
  .features-2 .bi-star {
    color: var(--accent-color); /* Default color */
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
  }
  
  .features-2 .bi-star-fill.active {
    color: #ffd700; /* Gold for active state */
    transform: scale(1.2); /* Slightly enlarge the icon when active */
  }
  .feature-content:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
  }
  /*--------------------------------------------------------------
  # Call To Action Section
  --------------------------------------------------------------*/
  .call-to-action .container {
    background: var(--accent-color);
    color: var(--contrast-color);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 4rem 2rem;
  }
  
  .call-to-action .content h2,
  .call-to-action .content p {
    color: var(--contrast-color);
    position: relative;
    z-index: 2;
  }
  
  .call-to-action .btn-cta {
    background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
    color: var(--contrast-color);
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--contrast-color);
    position: relative;
    z-index: 2;
  }
  
  .call-to-action .btn-cta:hover {
    background-color: var(--contrast-color);
    color: var(--accent-color);
  }
  
  .call-to-action .shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
  }
  
  .call-to-action .shape svg {
    width: 100%;
    height: 100%;
  }
  
  .call-to-action .shape svg path {
    fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
  }
  
  .call-to-action .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    opacity: 0.1;
    transform: rotate(45deg);
    animation: shapes-float 3s ease-in-out infinite;
  }
  
  .call-to-action .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    opacity: 0.15;
    transform: rotate(-15deg);
    animation: shapes-float 4s ease-in-out infinite;
  }
  
  .call-to-action .shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    opacity: 0.08;
    transform: rotate(15deg);
  }
  
  .call-to-action .dots {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    color: var(--contrast-color);
  }
  
  .call-to-action .dots svg {
    width: 100%;
    height: 100%;
  }
  
  .call-to-action .dots-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    left: 10%;
    opacity: 0.1;
    transform: rotate(15deg);
    animation: shapes-float 4s ease-in-out infinite;
  }
  
  .call-to-action .dots-2 {
    width: 150px;
    height: 150px;
    bottom: 20px;
    right: 15%;
    opacity: 0.15;
    transform: rotate(-10deg);
  }
  
  @keyframes shapes-float {
  
    0%,
    100% {
      transform: scale(0.8) rotate(45deg) translateY(0);
    }
  
    50% {
      transform: scale(0.8) rotate(45deg) translateY(-20px);
    }
  }
  
  @media (max-width: 992px) {
    .call-to-action .container {
      padding: 3rem 1.5rem;
    }
  
    .call-to-action .shape-1 {
      width: 200px;
      height: 200px;
    }
  
    .call-to-action .shape-2 {
      width: 150px;
      height: 150px;
    }
  
    .call-to-action .shape-3 {
      width: 100px;
      height: 100px;
    }
  
    .call-to-action .dots-1 {
      width: 150px;
      height: 150px;
    }
  
    .call-to-action .dots-2 {
      width: 120px;
      height: 120px;
    }
  
    .call-to-action .dots-3 {
      width: 80px;
      height: 80px;
    }
  }
  
  @media (max-width: 575px) {
    .call-to-action .container {
      border-radius: 0;
    }
  }
  
  /*--------------------------------------------------------------
  # Clients Section
  --------------------------------------------------------------*/
  .clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
  }
  
  .clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
  }
  
  .clients .swiper-wrapper {
    height: auto;
  }
  
  .clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  }
  
  .clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
  
  /*--------------------------------------------------------------
  # Stats Section
  --------------------------------------------------------------*/
  .stats .stats-item {
    padding: 30px;
    width: 100%;
  }
  
  .stats .stats-item span {
    color: var(--heading-color);
    font-size: 48px;
    display: block;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .stats .stats-item span:after {
    content: "";
    position: absolute;
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .stats .stats-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 500;
  }
  
  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services .service-card {
    height: 100%;
    padding: 30px;
    background: var(--surface-color);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .services .service-card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  }
  
  .services .service-card:hover .icon {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .services .service-card:hover .read-more {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
  }
  
  .services .service-card .icon {
    width: 60px;
    height: 60px;
    margin-right: 30px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--accent-color);
    font-size: 28px;
    transition: all 0.3s ease;
    line-height: 1;
  }
  
  .services .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .services .service-card p {
    margin-bottom: 25px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 15px;
    line-height: 1.6;
  }
  
  .services .service-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .services .service-card .read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  
  .services .service-card .read-more:hover i {
    transform: translateX(5px);
  }
  
  /*--------------------------------------------------------------
  # Pricing Section
  --------------------------------------------------------------*/
  .pricing .pricing-card {
    height: 100%;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .pricing .pricing-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .pricing .pricing-card.popular {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .pricing .pricing-card.popular h3,
  .pricing .pricing-card.popular h4 {
    color: var(--contrast-color);
  }
  
  .pricing .pricing-card.popular .price .currency,
  .pricing .pricing-card.popular .price .amount,
  .pricing .pricing-card.popular .price .period {
    color: var(--contrast-color);
  }
  
  .pricing .pricing-card.popular .features-list li {
    color: var(--contrast-color);
  }
  
  .pricing .pricing-card.popular .features-list li i {
    color: var(--contrast-color);
  }
  
  .pricing .pricing-card.popular .btn-light {
    background: var(--contrast-color);
    color: var(--accent-color);
  }
  
  .pricing .pricing-card.popular .btn-light:hover {
    background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  }
  
  .pricing .pricing-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--contrast-color);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
  }
  
  .pricing .pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .pricing .pricing-card .price {
    margin-bottom: 1.5rem;
  }
  
  .pricing .pricing-card .price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    line-height: 1;
  }
  
  .pricing .pricing-card .price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .pricing .pricing-card .price .period {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .pricing .pricing-card .description {
    margin-bottom: 2rem;
    font-size: 0.975rem;
  }
  
  .pricing .pricing-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .pricing .pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
  }
  
  .pricing .pricing-card .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .pricing .pricing-card .features-list li i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
  }
  
  .pricing .pricing-card .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    border-radius: 50px;
  }
  
  .pricing .pricing-card .btn.btn-primary {
    background: var(--accent-color);
    border: none;
    color: var(--contrast-color);
  }
  
  .pricing .pricing-card .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
  }
  
  /*--------------------------------------------------------------
  # Faq Section
  --------------------------------------------------------------*/
  .faq .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
  }
  
  .faq .faq-description {
    font-size: 1rem;
    color: var(--default-color);
    margin-bottom: 2rem;
  }
  
  .faq .faq-arrow {
    color: var(--accent-color);
  }
  
  .faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
  }
  
  .faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  
  .faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
  }
  
  .faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
  }
  
  .faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  
  .faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
  }
  
  .faq .faq-container .faq-active h3 {
    color: var(--accent-color);
  }
  
  .faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
  }
  
  .faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Call To Action 2 Section
  --------------------------------------------------------------*/
  .call-to-action-2 {
    padding: 80px 0;
  }
  
  .call-to-action-2 .container {
    position: relative;
    z-index: 3;
  }
  
  .call-to-action-2 h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--default-color);
  }
  
  .call-to-action-2 p {
    color: var(--default-color);
  }
  
  .call-to-action-2 .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
    color: var(--contrast-color);
  }
  
  .call-to-action-2 .cta-btn:hover {
    border-color: var(--contrast-color);
  }
  
  /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
  .contact .info-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
  }
  
  .contact .info-box h3 {
    color: var(--contrast-color);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  @media (max-width: 767.98px) {
    .contact .info-box h3 {
      font-size: 1.75rem;
    }
  }
  
  .contact .info-box p {
    opacity: 0.8;
    margin-bottom: 2rem;
  }
  
  .contact .info-box a {
    color: var(--contrast-color);
  }
  
  @media (max-width: 992px) {
    .contact .info-box {
      padding: 1.5rem;
    }
  }
  
  .contact .info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact .info-item:last-child {
    margin-bottom: 0;
  }
  
  .contact .info-item .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
  }
  
  .contact .info-item .icon-box i {
    font-size: 1.5rem;
    color: var(--contrast-color);
  }
  
  .contact .info-item:hover .icon-box {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
  }
  
  .contact .info-item .content h4 {
    color: var(--contrast-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .contact .info-item .content p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
  }
  
  .contact .info-item .content p:last-child {
    margin-bottom: 0;
  }
  
  .contact .contact-form {
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 80%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  }
  

  @media (max-width: 992px) {
    .contact .contact-form {
      padding: 1.5rem;
    }
  }
  
  .contact .contact-form h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  @media (max-width: 768px) {
    .contact .contact-form h3 {
      font-size: 1.75rem;
    }
  }
  
  .contact .contact-form p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
  }
  
  .contact .contact-form .form-control,
  .contact .contact-form .form-select {
    padding: 0.875rem 1.25rem;
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
    color: var(--default-color);
  }
  
  .contact .contact-form .form-control:focus,
  .contact .contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
  }
  
  .contact .contact-form .form-control::placeholder,
  .contact .contact-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .contact .contact-form .btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
  }
  
  .contact .contact-form .btn i {
    font-size: 1.25rem;
  }
  
  .contact .contact-form .btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
  }
  
  /*--------------------------------------------------------------
  # Service Details Section
  --------------------------------------------------------------*/
  .service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service-details .service-box+.service-box {
    margin-top: 30px;
  }
  
  .service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  
  .service-details .services-list {
    background-color: var(--surface-color);
  }
  
  .service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: 0.3s;
  }
  
  .service-details .services-list a:first-child {
    margin-top: 0;
  }
  
  .service-details .services-list a i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--accent-color);
  }
  
  .service-details .services-list a.active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
  }
  
  .service-details .services-list a.active i {
    color: var(--contrast-color);
  }
  
  .service-details .services-list a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
  }
  
  .service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0;
  }
  
  .service-details .download-catalog a:last-child {
    padding-bottom: 0;
  }
  
  .service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-color);
  }
  
  .service-details .download-catalog a:hover {
    color: var(--accent-color);
  }
  
  .service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
  }
  
  .service-details .help-box .help-icon {
    font-size: 48px;
  }
  
  .service-details .help-box h4,
  .service-details .help-box a {
    color: var(--contrast-color);
  }
  
  .service-details .services-img {
    margin-bottom: 20px;
  }
  
  .service-details h3 {
    font-size: 26px;
    font-weight: 700;
  }
  
  .service-details p {
    font-size: 15px;
  }
  
  .service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
  }
  
  .service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Starter Section Section
  --------------------------------------------------------------*/
  .starter-section {
    /* Add your styles here */
  }
   
  /*--------------------------------------------------------------
  # Unique course Section
  --------------------------------------------------------------*/
  /* Section Styles */
/* Section Co */
.unique-sectionCo {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)), 
  url("images/drone-corse-img/ddrone-flying.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed; /* Keeps the background image fixed while scrolling */
object-fit: contain;
background-clip: var(--default-color);
background-color: #fff !important; /* Fallback color */
position: relative;
color: #fff; /* Ensures text is white */
}

/* Heading Style */
.unique-headddy {
  /* font-size: 2.5rem; */
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.4);
}

.unique-headddy span {
  animation: unique-flashEffect 1s ease-in-out infinite;
}

@keyframes unique-flashEffect {
  0% {
    color: #fff;
    text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.4);
  }
  50% {
    color: #f39c12;
    text-shadow: 0px 5px 20px rgba(255, 0, 0, 0.6);
  }
  100% {
    color: #fff;
    text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.4);
  }
}

/* Horizontal Layout for Courses */
.unique-course-container.unique-horizontal-layout {
  display: flex;
  position: relative;
  max-width: 1000px;
  margin:2em auto;
  align-items: center;
  justify-content: space-between;
}

/* Image Container */
.unique-image-container {
  flex: 1.5;
  position: relative;
  overflow: hidden;
  /* border-radius: 15px; */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: transform 1.5s ease, opacity 1.5s ease;

}

.unique-image-container-left {
  animation: imageSlideInLeft 1.5s ease-in-out;
  animation-delay: 0.2s;
}

.unique-image-container-right {
  animation: imageSlideInRight 1.5s ease-in-out;
  animation-delay: 0.2s;
}

/* Text Container */
.unique-text-container-left,
.unique-text-container-right {
  flex: 1;
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: transform 1.5s ease, opacity 1.5s ease;
  opacity: 0;
}

/* .unique-text-container-left {
  animation: textSlideInRight 1.5s ease-in-out;
  animation-delay: 0.2s;
}

.unique-text-container-right {
  animation: textSlideInLeft 1.5s ease-in-out;
  animation-delay: 0.2s;
} */

/* Parallax Effect on Image */
.unique-img-parallax {
  width: 100%;
  height: auto;
  transform: scale(1.1);
  transition: transform 0.8s ease, filter 0.5s ease;
}

.unique-img-parallax:hover {
  transform: scale(1);
  filter: brightness(1.1);
}

/* Ripple Button */
.unique-ripple-button {
  background-color: #ff3e55;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.unique-ripple-button:hover {
  background-color: #ff3e55;
  font-size: 15px;
  transform: translateX(-2px);
}

.unique-ripple-button:active {
  transform: translateX(1px);
}

/* Ribbon Style */
.unique-ribbon {
  position: absolute;
  top: -10px;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: white;
  font-weight: bold;
  background: #ff3e55;
  z-index: 3;
  transform: rotate(-45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.unique-ribbon-right {
  left: -10px;
}

.unique-ribbon-left {
  right: -10px;
  transform: rotate(45deg);
}

/* Animation for Sliding in Images and Text */
@keyframes imageSlideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes imageSlideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes textSlideInLeft {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes textSlideInRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.unique-animate{
  transform: translateX(0);
  opacity: 1;
}
/* Mobile Responsiveness */
/* Section Styling for Mobile */
@media (max-width: 768px) {
  .unique-sectionCo {
    padding: 40px 10px;
  }

  .unique-headddy {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .unique-course-container.unique-horizontal-layout {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center-align content */
  }

  .unique-image-container {
    width: 90%; /* Adjust image width */
    margin-bottom: 20px; /* Add spacing between text and image */
    order: 1;
  }

  .unique-text-container-left,
  .unique-text-container-right {
    width: 90%; /* Adjust width for smaller screens */
    margin: 0 auto; /* Center the text container */
    order: 2;
  }

  .unique-ripple-button {
    width: 90%;
    padding: 12px 18px;
    font-size: 14px;
  }
}
/* Section Styling for Tablets */
@media (max-width: 1024px) {
  .unique-sectionCo {
    padding: 50px 15px;
  }

  .unique-headddy {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .unique-course-container.unique-horizontal-layout {
    flex-direction: row; /* Align items horizontally */
    gap: 15px;
  }

  .unique-image-container {
    flex: 1;
    width: 45%;
  }

  .unique-text-container-left,
  .unique-text-container-right {
    flex: 1;
    width: 45%;
  }

  .unique-ripple-button {
    padding: 10px 20px;
    font-size: 16px;
  }
}
/* Section Styling for Large Screens */
@media (min-width: 1200px) {
  .unique-sectionCo {
    padding: 70px 30px;
  }

  .unique-headddy {
    font-size: 2.5rem;
  }

  .unique-course-container.unique-horizontal-layout {
    max-width: 1200px;
    justify-content: space-around;
  }

  .unique-image-container {
    width: 40%;
  }

  .unique-text-container-left,
  .unique-text-container-right {
    width: 40%;
  }
}
/* Section Styling for Small Screens */
@media (max-width: 480px) {
  .unique-sectionCo {
    padding: 20px 10px; /* Reduced padding for small screens */
    background-position: center;
    background-size: cover;
  }
  .features-overlay{
    display: flex !important;
    flex-direction: column !important; 
  }

  /* Adjust Heading */
  .unique-headddy {
    font-size: 1.5rem; /* Smaller heading size */
    line-height: 1.2;
    margin-bottom: 15px;
  }

  /* Stack Elements Vertically */
  .unique-course-container.unique-horizontal-layout {
    flex-direction: column !important; /* Stack items */
    align-items: center; /* Center align for better balance */
    gap: 20px; /* Add spacing between items */
  }

  /* Image Container */
  .unique-image-container {
    width: 100%; /* Full width for small screens */
    margin-bottom: 15px; /* Spacing below the image */
    box-shadow: none; /* Simplify visuals for small screens */
  }

  /* Parallax Image Responsiveness */
  .unique-img-parallax {
    width: 100%; /* Full width */
    height: auto; /* Maintain aspect ratio */
    transform: none; /* Disable parallax zoom for smaller devices */
  }

  /* Text Container Adjustments */
  .unique-text-container-left,
  .unique-text-container-right {
    width: 100%; /* Full width */
    margin: 0 auto; /* Center text containers */
    padding: 10px; /* Smaller padding for tighter layout */
    text-align: center; /* Center-align text */
    box-shadow: none; /* Simplify visuals for small screens */
  }
  .image-slider {
    display: flex; /* Arrange images horizontally */
    gap: 10px; /* Add spacing between images */
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Prevent vertical scrolling */
    scroll-snap-type: x mandatory; /* Snap scrolling for better UX */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #007bff #eaeaea; /* Thumb and track colors */
    padding: 10px; /* Optional: add padding for better visuals */
  }
  
  .image-slider::-webkit-scrollbar {
    height: 6px; /* Horizontal scrollbar height */
  }
  
  .image-slider::-webkit-scrollbar-thumb {
    background-color: #007bff; /* Thumb color */
    border-radius: 10px; /* Rounded scrollbar thumb */
  }
  
  .image-slider::-webkit-scrollbar-track {
    background-color: #eaeaea; /* Track color */
  }
  
  .image-slider img {
    flex-shrink: 0; /* Prevent images from shrinking */
    width: 90%; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Adjust image fit */
    scroll-snap-align: center; /* Align images centrally when scrolling */
    border-radius: 10px; /* Optional: rounded corners */
  }
  
  /* Ribbon Adjustments */
  .unique-ribbon {
    font-size: 0.7rem; /* Smaller font for ribbons */
    padding: 5px 10px;
    transform: none; /* Straight ribbon */
    position: relative; /* Adjust for layout */
    top: auto;
    right: auto;
    left: auto;
  }

  /* Button Adjustments */
  .unique-ripple-button {
    width: 100%; /* Full width for buttons */
    padding: 12px 10px; /* Adjust padding */
    font-size: 14px; /* Smaller font size */
    border-radius: 20px; /* Maintain rounded corners */
  }

  /* Adjust Animations for Small Screens */
  @keyframes imageSlideInLeft{
    0% {
      transform: translateY(-50%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes imageSlideInRight{
    0% {
      transform: translateY(-50%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Remove Hover Effects for Simplicity */
  .unique-img-parallax:hover {
    transform: none;
    filter: none;
  }
}


/*--------------------------------------------------------------
  # blog Section Section
  --------------------------------------------------------------*/
/* Blog Unique Styles */
/* General Blog Styles */
.blog-unique {
  padding: 40px 0;
  text-align: left;
}
.blog-unique .media-unique h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}
.blog-unique .media-unique .post-meta-unique {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000 !important;
}
.blog-unique .media-unique a {
  width: 40%;
  color: var(--accent-color) !important;
}
.blog-unique .media-unique h3:hover {
  font-weight: 800;
}
.blog-unique .blog-img-unique {
  width: 160px;
  height: 120px;
  transition: transform 0.5s ease;
}
.blog-unique .blog-img-unique:hover {
  transform: scale(1.1); /* Slight zoom-in effect */
}
.blog-unique .blog-text-b-unique {
  margin-left: 10px;
}
.readmore-unique {
  color: #007bff;
  text-decoration: none;
}
.readmore-unique:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .blog-unique .media-unique {
    flex-direction: column; /* Stack the image and text */
    align-items: center;
    text-align: left;
  }
  .blog-unique .media-unique > a {
    width: 100%;
    margin-bottom: 15px;
  }
  .blog-unique .blog-img-unique {
    width: 100%; /* Full width for smaller screens */
    height: auto;
  }
  .blog-unique .blog-text-b-unique {
    margin-left: 0; /* Center-align text */
  }
}

@media (max-width: 767.98px) {
  .blog-unique {
    padding: 20px 0;
  }
  .blog-unique .media-unique h3 {
    font-size: 18px;
  }
  .blog-unique .media-unique .post-meta-unique {
    font-size: 12px;
  }
  .blog-unique .media-unique a {
    width: 100%;
    margin-bottom: 20px;
  }
  .blog-unique .media-unique {
    margin-bottom: 30px;
  }
  .blog-unique .blog-img-unique {
    width: 100%; /* Full width for smaller screens */
    height: auto;
    transition: none; /* Disable hover effects for touch devices */
  }
  .readmore-unique {
    font-size: 14px;
  }
}

/* contact us */

/* Default Layout (Desktop) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* Image spans 2x, other columns 1x */
  grid-template-rows: auto; /* Single row for larger screens */
  gap: 20px;
  padding: 20px;
}

.contact-image {
  grid-row: span 2; /* Image spans two rows */
  grid-column: 1 / 2; /* Image is in the first column */
}

.contact-image .feature-img-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 580px; /* Consistent image height */
}

.contact-item {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
  margin-top: 10px;
  font-size: 1.25rem;
  color: #333;
}

.contact-item p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

.contact-item a {
  color: #007bff;
  text-decoration: none;
}

.contact-item span {
  display: inline-block;
  margin-bottom: 10px;
  color: #007bff;
}

address {
  font-style: normal;
}

/* Media Queries for Responsiveness */
/* Tablet (1024px or smaller) */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr; /* One-column layout for tablet */
    grid-template-rows: auto auto auto; /* Stacked rows for addresses and contacts */
    gap: 20px; /* Add space between items */
  }

  .contact-image {
    grid-column: 1; /* Image spans across the first column */
    grid-row: 1; /* Image is the first element */
    padding: 15px; /* Add padding around the image */
  }

  .contact-item {
    grid-column: 1; /* Items stack in the first column */
    padding: 20px; /* Add padding to contact items */
    margin-bottom: 15px; /* Space between items */
  }

  #contactRajesh, #contactPreetam {
    grid-column: 1; /* Contacts are stacked in the same column */
    padding: 20px; /* Add padding to contact items */
    margin-bottom: 15px; /* Space between contacts */
  }
}

/* Mobile (768px or smaller) */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr; /* Single column layout */
    grid-template-rows: auto auto auto auto; /* Stack the content under the image */
    gap: 20px; /* Add space between items */
    padding: 15px; /* Add padding around the grid */
  }

  .contact-image {
    grid-column: 1; /* Image spans across all three columns */
    grid-row: 1; /* Image is first */
    padding: 15px; /* Add padding around the image */
  }

  .contact-item {
    grid-column: 1; /* Items take equal width */
    grid-row: auto; /* Each item has its own row */
    padding: 25px;
    min-height: 55vmin;
    height: auto; /* Adjust height to fit content */
    margin-bottom: 20px; /* Space between items */
  }

  /* Adjust text and padding for mobile */
  .contact-item h3 {
    font-size: 1.125rem; /* Slightly smaller headings */
  }

  .contact-item p {
    font-size: 0.9rem; /* Smaller text for mobile */
  }

  .contact-image .feature-img-bg {
    min-height: 300px; /* Adjust image height for mobile screens */
  }
}

/* Extra Small Screens (576px or smaller) */
@media (max-width: 576px) {
  .contact-grid {
    gap: 10px; /* Smaller gap for very small screens */
    padding: 10px; /* Reduce padding for smaller screens */
  }

  .contact-item {
    padding: 10px; /* Smaller padding */
    margin-bottom: 15px; /* Space between items */
  }

  .contact-item h3 {
    font-size: 1rem; /* Further reduce heading size */
  }

  .contact-item p {
    font-size: 0.85rem; /* Further reduce text size */
  }

  .contact-image .feature-img-bg {
    min-height: 250px; /* Further adjust image height for very small screens */
  }
}

/* faq */
.sectionfaq {
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url("images/Drone-Gallery/backIconjpg.jpg") no-repeat center;
  background-size: cover; */
  background-color: #0d0460 !important;
  justify-content: center;
  align-items: center;
  /* font-family: var(--font-family-sans-serif); */
  box-sizing: content-box;
  overflow: hidden;
  padding: 20px;
}
.sectionfaq .center{
  display: flex;

}

.sectionfaq .center .head {
  /* width: 10%; */
  /* max-width: 760px; */
  margin: 350px auto;
  text-align: center;
  color: aliceblue;
  text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.9);
color: #fff; 
text-align: center; 
text-shadow: 0px 10px 10px rgba(244, 242, 242, 0.285)
}

.sectionfaq .wrapper {
  width: 100%;
  max-width: 760px;
  margin: 20px auto;
}

.sectionfaq .faq {
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

/* Question Button Style */
.sectionfaq .que {
  width: 100%;
  background-color: #fff;
  color: black;
  cursor: pointer;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  text-align: left;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  overflow-x: hidden;
}

.sectionfaq .que i {
  transition: transform 0.3s ease;
}

/* Hover and Active State for Button */
.que:hover,
.que.active {
  background-color: #f7f3f7;
}

/* Answer Panel Style */
.sectionfaq .ans {
  padding: 0 15px;
  background-color: transparent;

  max-height: 0; /* Start with the answer hidden */
  display: block;
  font-size: 16px;
  overflow: hidden;
  color: #fff !important;
  transition: max-height 0.5s ease-out; /* Smooth transition for max-height */
}
.sectionfaq .ans p{
  color: #fff !important;
}
/* Show Answer When Active */
.faq.active .ans {
  max-height: 500px; /* Set to a high enough value to accommodate content */
  padding: 15px; /* Add padding when answer is visible */
  color: #fff !important;
}
 
/* Rotate arrow when active */
.que.active i {
  transform: rotate(180deg);
}
/* Responsive Styles */
@media (max-width: 768px) {
  .sectionfaq .center .head {
    max-width: 90%;
    font-size: 2.2em;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.6); /* Lighter shadow on smaller screens */
    margin: 20px auto; /* Added margin for better alignment */
    /* padding: 0 10px; Added padding to ensure text doesn't touch the edges */
  }

  .sectionfaq .center {
    display: flex;
    flex-direction: column;
    margin: 0; /* Ensure no extra margin here */
    padding: 0; /* Ensure no extra padding here */
  }

  .sectionfaq .wrapper {
    max-width: 90%;
  }

  .sectionfaq .que {
    padding: 12px;
    font-size: 16px;
  }

  .sectionfaq .ans {
    font-size: 14px;
    /* padding: 10px; */
    max-height: 0; /* Ensuring answers start hidden */
    overflow: hidden;
    transition: max-height 0.5s ease-out;
  }
}

@media (max-width: 480px) {
  .sectionfaq .center .head {
    font-size: 2em;
    font-weight: 800 !important;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5); /* Even lighter shadow for very small screens */
    margin: 15px auto; /* Adjust margin for smaller screens */
    padding: 0 8px; /* Adjust padding for small screens */
    /* width: 0px; */
  }

  .sectionfaq .que {
    padding: 10px;
    
    font-size: 15px;
    /* flex-direction: column; */
    align-items: flex-start;
  }
  .fa-caret-down{
padding-top: 7px;
padding-left: 5px;
  }

  .sectionfaq .ans {
    font-size: 13px;
    /* padding: 8px; */
    max-height: 0; /* Ensure answers are hidden initially */
    overflow: hidden;
    transition: max-height 0.5s ease-out;
  }

  .sectionfaq {
    /* padding: 10px; */
  }
}
/* courseimage */
/* General Section Styling */
#courses {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

/* Headline Styling */
/* .unique-headddy {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
} */
.unique-styled-title{
  font-size: 1.5rem;
}
.unique-headddy span {
  color: #007bff; /* Highlight text color */
  background: linear-gradient(to right, #007bff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.unique-card,
.unique-card-body {
  background: transparent; /* Removes any background color */
  box-shadow: none;
}
/* .unique-headddy::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #007bff;
  margin: 10px auto 0;
  border-radius: 4px;
} */

/* Button Styling */
.unique-ripple-button {
  display: inline-block;
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.unique-ripple-button a {
  color: #fff;
  text-decoration: none;
}

.unique-ripple-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(to right, #00c6ff, #007bff);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Container and Layout Adjustments */
.unique-course-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 40px auto;
  gap: 20px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.unique-image-container {
  flex: 1;
  height: auto;
  box-shadow: none;
}

.unique-image-container img {
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
}

.features-overlay {
  flex: 1;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.feature-card i {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 10px;
}

.feature-card h4 {
  font-size: 18px;
  margin: 5px 0;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}

/* Adjust headline positioning */

/* Swiper Container */
.swiper-container {
  width: 100%;
  height: 100%;
  max-width: 400px; /* Adjust width as needed */
  max-height: 600px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Swiper Slide Images */
.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* Slider Container */
.image-slider {
  display: flex;
  flex-direction: column;
  gap: 10px; 
  max-height: 600px; /* Adjust as needed */
  overflow-y: auto; /* Enable vertical scrolling */
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #007bff #eaeaea; /* Thumb and track colors */
  scroll-snap-align: start;
}
.unique-image-container-left .image-slider {
  direction: rtl; 
}

/* Styling the scrollbar */
.image-slider::-webkit-scrollbar {
  width: 8px;
}

.image-slider::-webkit-scrollbar-thumb {
  background-color: #007bff;
  border-radius: 4px;
}

.image-slider::-webkit-scrollbar-track {
  background: #eaeaea;
  border-radius: 4px;
}


.certification-img-wrapper {
  position: relative; /* Ensure the image and text are positioned relative to this container */
  width: 100%;
  height: 100%; /* Set a height for the image container */
  overflow: hidden; /* Hide any overflow from the image */
}

.certification-img {
  width: 30%;
  height: 10%;
  object-fit: cover;
}

.unique-card-title1 {
  position: absolute; /* Position the text over the image */
  top: 40%; /* Center the text vertically in the container */
  /* left: 50%;  */
  /* transform: translate(-50%, -50%);  */
  font-size: 2rem;
  color: #04135f; /* White text to stand out over the image */
  text-shadow: 2px 0px 5px rgba(245, 245, 245, 0.809); /* Optional: add text shadow to make text more visible */
  font-weight: 600;
  z-index: 1; /* Ensure the text is on top of the image */
}
.lead{
  font-size: 1rem;
  font-weight: 800;
}
.coursHead {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  text-shadow: 2px 2px 2px 3px rgba(239, 182, 91, 0.823) !important;
 
}
/* foot animate */
.loop-wrapper {
  margin: 0 auto;
  position: relative;
  display: block;
  width: 100%;
  height: 200px; /* Fixed container height */
  overflow: hidden;
  border-bottom: 3px solid #fff;
  background-image: url('images/icon-img/empty-street-3.webp');
  background-size: cover; /* Ensures the image fills the container */
  background-position: ce; /* Focuses on the ground portion */
  background-repeat: no-repeat;
  color: #fff;
}

.drone {
  position: absolute;
  width: 100px; /* Reduced size for better scaling */
  height: auto;
  background: url('images/icon/drone-white-green.png') no-repeat center/contain;
  animation: fly 12s linear infinite; /* Slightly slower animation for smoothness */
}

.drone:nth-child(1) {
  top: 30px;
  left: -120px;
  animation-delay: 0s;
}

.drone:nth-child(2) {
  top: 80px;
  left: -250px;
  animation-delay: 3s;
}

.drone:nth-child(3) {
  top: 130px;
  left: -400px;
  animation-delay: 5s;
}

.cloud {
  position: absolute;
  width: 100px; /* Adjusted size for better visuals */
  height: 50px;
  background: rgba(255, 255, 255, 0.6); /* Slightly transparent clouds */
  border-radius: 50%;
  animation: cloudMove 25s linear infinite; /* Slower animation for a calm effect */
}

.cloud:before,
.cloud:after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.cloud:before {
  width: 50px;
  height: 50px;
  top: -15px;
  left: 10px;
}

.cloud:after {
  width: 70px;
  height: 70px;
  top: -30px;
  right: 5px;
}

.cloud:nth-child(1) {
  top: 10px;
  left: -300px;
  animation-delay: 0s;
}

.cloud:nth-child(2) {
  top: 60px;
  left: -500px;
  animation-delay: 7s;
}

.cloud:nth-child(3) {
  top: 110px;
  left: -700px;
  animation-delay: 15s;
}

@keyframes fly {
  0% {
    transform: translateX(-150px);
  }
  50% {
    transform: translateX(1200px) translateY(-20px);
  }
  100% {
    transform: translateX(1200px);
  }
}

@keyframes cloudMove {
  0% {
    transform: translateX(-300px);
  }
  100% {
    transform: translateX(1200px);
  }
}
/* INNER bLOGS */
.inner-blog{

  position: relative;
}
.hero-inner-blog{
  background-color: #0d0460;
  /* height: 400px; */
  margin-bottom: 100px;
  box-sizing: border-box;
}
/* courses section */

main{
  background-color: #fff;
}
      h1 {
        text-align: center;
      }
      .cuxrriculum{
          background-color: #fff;
      }
      .cuxrriculum ul {
        --col-gap: 2rem;
        --row-gap: 2rem;
        --line-w: 0.25rem;
        display: grid;
        grid-template-columns: var(--line-w) 1fr;
        grid-auto-columns: max-content;
        column-gap: var(--col-gap);
        list-style: none;
        width: min(60rem, 90%);
        margin-inline: auto;
      }
      
      /* line */
      .cuxrriculum ul::before {
        content: "";
        grid-column: 1;
        grid-row: 1 / span 20;
        background: rgb(225, 225, 225);
        border-radius: calc(var(--line-w) / 2);
      }
      
      /* columns*/
      
      /* row gaps */
      .cuxrriculum ul li:not(:last-child) {
        margin-bottom: var(--row-gap);
      }
      
      /* card */
      .cuxrriculum ul li {
        grid-column: 2;
        --inlineP: 1.5rem;
        margin-inline: var(--inlineP);
        grid-row: span 2;
        display: grid;
        grid-template-rows: min-content min-content min-content;
      }
      
      /* date */
      .cuxrriculum ul li .date {
        --dateH: 3rem;
        height: var(--dateH);
        margin-inline: calc(var(--inlineP) * -1);
      
        text-align: center;
        background-color: var(--accent-color);
      
        color: white;
        font-size: 1.25rem;
        font-weight: 700;
      
        display: grid;
        place-content: center;
        position: relative;
      
        border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
      }
      
      /* date flap */
      .cuxrriculum ul li .date::before {
        content: "";
        width: var(--inlineP);
        aspect-ratio: 1;
        background: var(--accent-color);
        background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
        position: absolute;
        top: 100%;
      
        clip-path: polygon(0 0, 100% 0, 0 100%);
        right: 0;
      }
      
      /* circle */
      .cuxrriculum ul li .date::after {
        content: "";
        position: absolute;
        width: 2rem;
        aspect-ratio: 1;
        background: var(--bgColor);
        border: 0.3rem solid var(--accent-color);
        border-radius: 50%;
        top: 50%;
      
        transform: translate(50%, -50%);
        right: calc(100% + var(--col-gap) + var(--line-w) / 2);
      }
      
      /* title descr */
      .cuxrriculum ul li .title,
      .cuxrriculum ul li .descr {
        padding-top: 15px;
        background: var(--bgColor);
        position: relative;
        padding-inline: 1.5rem;
        text-align: left;
      }
      .cuxrriculum ul li .title {
        overflow: hidden;
        padding-block-start: 1.5rem;
        padding-block-end: 1rem;
        font-weight: 500;
      }
      .cuxrriculum ul li .descr {
        padding-block-end: 1.5rem;
        font-weight: 300;
      }
      
      /* shadows */
      .cuxrriculum ul li .title::before,
      .cuxrriculum ul li .descr::before {
        content: "";
        position: absolute;
        width: 90%;
        height: 0.5rem;
        background: rgba(0, 0, 0, 0.5);
        left: 50%;
        border-radius: 50%;
        filter: blur(4px);
        transform: translate(-50%, 50%);
      }
      .cuxrriculum ul li .title::before {
        bottom: calc(100% + 0.125rem);
      }
      
      .cuxrriculum ul li .descr::before {
        z-index: -1;
        bottom: 0.25rem;
      }
      
      @media (min-width: 40rem) {
        .cuxrriculum ul {
          grid-template-columns: 1fr var(--line-w) 1fr;
        }
        .cuxrriculum ul::before {
          grid-column: 2;
        }
        .cuxrriculum ul li:nth-child(odd) {
          grid-column: 1;
        }
        .cuxrriculum ul li:nth-child(even) {
          grid-column: 3;
        }
      
        /* start second card */
        .cuxrriculum ul li:nth-child(2) {
          grid-row: 2/4;
        }
      
        .cuxrriculum ul li:nth-child(odd) .date::before {
          clip-path: polygon(0 0, 100% 0, 100% 100%);
          left: 0;
        }
      
        .cuxrriculum ul li:nth-child(odd) .date::after {
          transform: translate(-50%, -50%);
          left: calc(100% + var(--col-gap) + var(--line-w) / 2);
        }
        .cuxrriculum ul li:nth-child(odd) .date {
          border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
        }
      }
      
      .credits {
        margin-top: 1rem;
        /* text-align: right; */
      }
      .credits a {
        color: var(--color);
      }
      
      /* OVERLAY */
      
      .container6 {
        /* padding-top: 1%;
        padding-bottom: 4%; */
        text-align: center;
        margin: none !important;
        padding: auto;
      
        max-width: auto;
      }
      .disBox{
        display: flex !important;
      gap: 1px;
      
      }
      .disboxin{
        /* width: auto; */
      width: 100%;
      height: 200px;
      
      }
      
      h1 {
        margin-top: 4%;
        margin-bottom: 4%;
        /* font-family: "Patua One", cursive; */
      }
      
      .box2 {
        max-height: 350px;
        height: 350px;
        background-color: #eeeeee;
        background-size: cover;
        background-position: center center;
        transition: all 0.5s ease-in-out;
        display: flex !important;
      
        align-content: center;
        justify-content: center;
      }
      
      .box2 .hover {
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        display: flex;
        justify-content: center;
        flex-flow: column;
        transition: all 0.5s ease-in-out;
        padding: 2em 2em;
      }
      
      .box2 .hover h1 {
        color: #ffffff;
        font-size: 1.8em;
        text-transform: uppercase;
        /* font-family: "Patua One", cursive; */
      }
      
      .box2 .hover p {
        color: #ffffff;
      }
      
      .box2:hover {
        filter: grayscale(100%);
      }
      
      .box2:hover .hover {
        opacity: 1;
        cursor: pointer;
      }
      
      .box6 {
        position: relative;
        max-height: 255px;
        height: 255px;
        background-color: #eeeeee;
        display: flex;
      
        align-content: center;
        justify-content: center;
        overflow: hidden;
      }
      
      .box6 .content-hover2,
      .box6 .content-hover {
        transform: scale(0, 0);
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: #252525;
        transition: all 0.2s ease-in-out;
        display: flex;
        justify-content: center;
        flex-flow: column;
        padding: 2em 2em;
      }
      
      .box6 .content-hover2 {
        background-color: #d32222;
      }
      
      .box6 .content-hover2 h1,
      .box6 .content-hover h1 {
        color: #ffffff;
        font-size: 1.5em;
        text-transform: uppercase;
        /* font-family: "Patua One", cursive;
        font-style: italic; */
      }
      
      .box6 .content-hover2 p,
      .box6 .content-hover p {
        color: #ffffff;
      }
      
      .box6 .content {
        display: flex;
        justify-content: center;
        flex-flow: column;
      }
      
      .box6 .content img {
        width: 160px;
      }
      
      .box6 .content p {
        font-size: 1.2em;
        font-weight: 600;
        text-transform: uppercase;
        margin-top: -2em;
      }
      
      .box6:hover .content-hover,
      .box6:hover .content-hover2 {
        transform: scale(1, 1);
        cursor: pointer;
      }
      
      .box-tech {
        position: relative;
        max-height: 255px;
        height: 255px;
        background-color: #eeeeee;
        display: flex;
        align-content: center;
        justify-content: center;
        overflow: hidden;
        padding: 2em;
      }
      
      .box-tech .content {
        display: flex;
        align-content: center;
        justify-content: center;
        flex-flow: column;
        padding-top: 5em;
        transition: all 0.2s ease-in-out;
      }
      
      .box-tech .content img {
        width: 140px;
        transition: all 0.2s ease-in-out;
        filter: grayscale(100%) brightness(75%);
      }
      
      .box-tech .content p {
        font-size: 1.2em;
        font-weight: 700;
        color: #8e8e8e;
        text-transform: uppercase;
        margin-top: 0em;
        transition: all 0.2s ease-in-out;
      }
      
      .box-tech .content .desc {
        transform: scale(0, 0);
        transition: all 0.2s ease-in-out;
      }
      
      .box-tech .content .desc .line {
        border-top: 1px solid #000000;
        width: 0px;
        margin-top: 0em;
        margin-bottom: 1em;
        transition: all 0.2s ease-in-out;
      }
      
      .box-tech .content .desc p {
        font-size: 1em !important;
        font-weight: 600;
        text-transform: none;
        margin-top: 0em;
      }
      
      .box-tech:hover .content {
        padding-top: 0em;
        cursor: pointer;
      }
      
      .box-tech:hover .content img {
        width: 60px;
        filter: none;
      }
      
      .box-tech:hover .content p {
        color: #111111;
      }
      
      .box-tech:hover .content .desc {
        display: block !important;
        transform: scale(1, 1);
      }
      
      .box-tech:hover .content .desc .line {
        width: 50px;
      }
      
      /* Responsive Adjustments */
      @media (max-width: 768px) {
        .disBox {
          flex-direction: column;
          align-items: center;
        }
      
        .disboxin {
          width: 100%;
          height: auto;
        }
      
        .box2,
        .box-tech {
          height: auto;
          max-height: none;
        }
      
        .box,
        .box-tech .content img {
          width: 100%;
          padding: 1em;
        }
      
        h1 {
          font-size: 2em;
        }
      }
      
      @media (max-width: 480px) {
        .box .content img {
          width: 120px;
        }
      
        .box-tech .content img {
          width: 100px;
        }
      
        .box-tech .content p {
          font-size: 1em;
        }
      }
      .apppy {
      /* padding: 3vmin; */
      background: #070f25;
      }
      #app {
        /* opacity: 0 !important; */
        /* visibility: hidden; */
        z-index: 100;
      }
      /* #app:hover {
        opacity: 0.5;
      } */
      #app {
        display: flex;
        justify-content: space-around !important;
        margin-top: 80px;
        /* grid-template-columns: 1fr 2fr; */
        align-items: center;
        padding-bottom: 4vmin;
        height: 80vh;
        width: 100%;
        /* background: #ede8e2; */
        color: #d7ced2;
        /* color: #3f0821; */
        z-index: 0;
      }
      
      .apppy {
        /* display: grid; */
        padding: 3vmin;
        background: #070f25;
      }
      
      /* @import url("https://fonts.googleapis.com/css2?family=Prata&display=swap"); */
      
      .apppy .title {
      padding-left: 1em;
        font-size: 7vw;
        font-weight: 700;
        width: 65%;
        z-index: 2;
      }
      
      .apppy .title > .title-inner {
        display: inline-block;
        font-size: 2.5vw;
        font-weight: 600;
      }
      
      @keyframes text-clip {
        from {
          clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
        }
        to {
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
      }
      
      @keyframes outer-left {
        from {
          transform: translateX(50%);
        }
        to {
          transform: none;
        }
      }
      
      @keyframes inner-left {
        from {
          transform: translateX(-50%);
        }
        to {
          transform: none;
        }
      }
      
      .cafe-inner {
        display: inline-block;
        font-size: 50px;
        color: #ffffffe5;
        animation: inner-left 1s 1s ease both, text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
      }      
      .mozart-inner {
        animation: text-clip 1s 0s cubic-bezier(0.5, 0, 0.1, 1) both;
      }
      .title {
        animation: outer-left 1s 1s ease both;
      }
      .cafe > .cafe-inner {
        display: inline-block; 
      }
      .mozart {
        display: inline-block;
      }
      .image {
        opacity: 100;
        animation: image-in 1.5s cubic-bezier(0.5, 0, 0.1, 1) 1.1s backwards;
        width: 45em;
        height: auto;
        margin-top: 30px;
      }
      
      /* @keyframes image-in {
        from {
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        }
        to {
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
      } */
      @keyframes image-in {
        from {
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          transform: translateY(100%); /* Move the image from below */
        }
        to {
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          transform: none;
        }
      }
      
      .image img {
        display: block;
        width: 100%;
        max-width: max-content;
        height: 200%;
        object-fit: cover;
        padding: 10px !important; 
      }
      .quote-symbol {
          font-size: 50px;
          font-weight: bold;
          animation: colorChange 2s infinite; /* Animation with 5 seconds duration, repeating indefinitely */
        }
      
        @keyframes colorChange {
          0% {
            color: #d6f152; /* Tomato red */
          }
          25% {
            color: #1e90ff; /* Dodger blue */
          }
          50% {
            color: #32cd32; /* Lime green */
          }
          75% {
            color: #e484b7; /* Deep pink */
          }
          100% {
            color: #ff6347; /* Tomato red (back to the initial color) */
          }
        } 
/* Responsive Design for smaller screens */
@media (max-width: 768px) {
  #app {
    flex-direction: column;
    padding-bottom: 3vmin;
    height: auto;
  }

  .apppy .title {
    font-size: 6vw;  /* Adjust font size for smaller screens */
    width: 100%;
    padding-left: 0em;
    text-align: center !important;
    margin-right: auto !important;
  }

  .apppy .title > .title-inner {
    font-size: 5vw;
  }

  .image {
    width: 80%;
    max-width: none; /* Remove the max-width for better responsiveness */
    margin-top: 20px;
  }

  .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .quote-symbol {
    font-size: 40px;
  }

  /* Disable text animation for small screens */
  .cafe-inner, .mozart-inner {
    animation: none !important;
  }

  .title {
    animation: none !important;
  }
}

@media (max-width: 480px) {
  .apppy .title {
    font-size: 10vw;
    padding-left: none !important;

  }
  .image {
    width: 90%;
  }
  .quote-symbol {
    font-size: 20px;
  }
  /* Disable text animation for very small screens */
  .cafe-inner, .mozart-inner {
    animation: none !important;
  }
  .title {
    animation: none !important;
  }
}
/* service */

/*** Service ***/
.service-item {
background: #6ba6fe14;
border: 1px solid white;
border-top-right-radius: 20px;
border-bottom-left-radius: 20px;
transition: 0.5s;
}

.service-item:hover {
margin-top: -10px;
background: var(--primary);
}

.service-item * {
transition: 0.5s;
}

.service-item:hover * {
color: var(--light) !important;
}

/* popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.popup button {
  background-color: #007BFF;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
}
/* CSS for Submit Button with Loading State */
/* CSS for Submit Button with Loading State */
#submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}

#submit-btn span {
  display: inline-block;
}

#dots {
  font-size: 18px;
  animation: dot-anim 1s infinite step-start;
  margin-left: 5px;
}

@keyframes dot-anim {
  0% {
    content: ".";
  }
  33% {
    content: "..";
  }
  66% {
    content: "...";
  }
  100% {
    content: ".";
  }
}

/* Optional: Adjustments to loading spinner and form responsiveness */
@media (max-width: 768px) {
  .php-email-form .loading {
    padding: 15px 0;
  }

  .php-email-form .loading:before {
    width: 24px;
    height: 24px;
    margin: 0 18px;
  }
}


/* testimonials */
/* General Section Styling */
.testimonials .section-title {
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.testimonials h2 {
  font-size: 3vw; /* Responsive font size */
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
  transition: font-size 0.3s ease-in-out;
}

/* Testimonial Item Styling */
.testimonial-item {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  /* border-radius: 10px; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Aligns the text at the bottom */
  height: 300px; /* Set a fixed height for the container */
}

/* Image Container */
.testimonial-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1; /* Ensures image stays centered in the container */
  padding: 10px;
}

/* Adjusted for Larger Image */
.testimonial-img {
  width: 150px; /* Increase the image size */
  height: 150px; /* Increase the image size */
  border-radius: 50%; /* Ensure the image stays circular */
  object-fit: cover;
  margin-bottom: 15px; /* Space between the image and the text */
  transition: transform 0.3s ease-in-out; /* Added transition effect */
}

.testimonial-img:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}
/* Testimonial Text Styling */
.testimonial-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonial-item h4 {
  font-size: 1.2rem;
  color: #666;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .testimonials h2 {
      font-size: 12vw; /* Larger font on small screens */
  }

  .testimonial-img {
      width: 120px; /* Smaller image size for smaller screens */
      height: 120px;
  }

  .testimonial-item h3 {
      font-size: 1.3rem;
  }

  .testimonial-item h4 {
      font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .testimonials h2 {
      font-size: 15vw; /* Even larger font on very small screens */
  }

  .testimonial-img {
      width: 100px; /* Even smaller image size for mobile screens */
      height: 100px;
  }
}
