
/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #556270; /* Color for headings, subheadings and title throughout the website */
  --accent-color:#007bff; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */

}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #383b3d;  /* The default color of the main navmenu links */
  --nav-hover-color:#007BFF; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #556270; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #007BFF; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f4f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #3b4654;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #444e5b;
  --contrast-color: #ffffff;
}

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

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

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 5px; /* Rounded corners for better aesthetics */
  font-size: 16px; /* Default font size */
  max-width: 100%; /* Ensure it fits within the container */
  box-sizing: border-box; /* Include padding in width calculations */
}

.php-email-form .sent-message {
  display: none;
  background: #059652;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 5px;
  font-size: 16px;
  max-width: 100%;
  box-sizing: border-box;
}

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

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

/* Loading animation keyframes */
@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
  .php-email-form .error-message,
  .php-email-form .sent-message,
  .php-email-form .loading {
    font-size: 14px; /* Smaller font for tablets */
    padding: 10px; /* Reduce padding */
    margin-bottom: 16px; /* Adjust spacing */
  }
}

@media (max-width: 480px) {
  .php-email-form .error-message,
  .php-email-form .sent-message,
  .php-email-form .loading {
    font-size: 12px; /* Smaller font for mobile */
    padding: 8px; /* Minimal padding */
    text-align: center; /* Center-align for narrow screens */
  }

  .php-email-form .loading:before {
    width: 20px; /* Adjust loading animation size */
    height: 20px;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* General Navbar Styles */
.navbar {
  padding:initial;
  font-family: 'Arial', sans-serif;
  width: 100%; /* Ensure the navbar spans the full width */
  margin: 0 auto; /* Center the navbar */
}

.navbar-brand img {
  height: 60px;
}

.nav-link {
  font-size: 1rem;
  color: #555;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff;
}

.dropdown-menu {
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  color: #555;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #cfe2f3;
  color: #007bff;
}

/* Registration Button */
.btn-primary {
  padding: 6px 12px;
  font-size: 0.9rem;
  border-radius: 5px;
}

/* Desktop and Large Screens */
@media (min-width: 1200px) {
  .navbar {
    padding:5px; /* More padding for large screens */
  }

  .nav-link {
    font-size: 1rem;
  }

  .btn-primary {
    font-size: 1rem;
  }
  .navbar-brand img {
  height: 50px;
}
}

/* Medium Screens (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .navbar {
    padding:initial; /* Adjust padding for medium screens */
  }

  .nav-link {
    font-size: 1rem;
  }

  .btn-primary {
    font-size: 0.9rem;
     margin-bottom: 10px;
  }
}
  .navbar-brand img {
  height: 50px;
}
}

/* Small Screens (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .navbar {
    padding:initial; /* Less padding for smaller medium screens */
  }

  .navbar-brand img {
    height: 50px;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .btn-primary {
    font-size: 0.85rem;
     margin-bottom: 10px;
  }
}
#navbarNav {
  display: none; /* Hidden by default */
  transition: all 0.3s ease;
}

#navbarNav.show {
  display: block; /* Visible when .show is added */
}


/* Extra Small Screens (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .navbar {
    padding:initial; /* Less padding for small screens */
  }

  .navbar-brand img {
    height: 50px;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .btn-primary {
    font-size: 0.8rem;
     margin-bottom: 10px;
  }
}

/* Mobile Screens (Below 576px) */
@media (max-width: 576px) {
  .navbar {
    padding: initial; /* Minimal padding for very small screens */
  }

  .navbar-brand img {
    height: 45px;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  .btn-primary {
    font-size: 0.75rem;
    padding: 5px;
    margin-bottom: 10px;
  }
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* General Footer Styles */
.responsive-footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  font-family: Arial, sans-serif;
}

.responsive-footer h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #f8f9fa;
}

.responsive-footer p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* General Hyperlink Styling */
.responsive-footer a {
  color: #17a2b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover Effect: Turn Gray */
.responsive-footer a:hover {
  color: gray;
}

/* Footer List Links */
.responsive-footer ul {
  list-style: none;
  padding: 0;
}

.responsive-footer ul li {
  margin-bottom: 10px;
}

.responsive-footer ul li a {
  color: #fff;
  text-decoration: none;
}

.responsive-footer ul li a:hover {
  color: gray;
}

/* Layout */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 22%;
  margin: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-col {
    flex: 1 1 48%;
    margin: 10px;
  }
}

@media (max-width: 576px) {
  .footer-row {
    justify-content: space-between;
  }

  .footer-col {
    flex: 1 1 calc(50% - 20px);
    margin: 5px;
    text-align: center;
  }

  .responsive-footer ul {
    padding-left: 0;
  }

  .responsive-footer ul li {
    margin-bottom: 8px;
  }
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #555;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect for Social Links */
.social-links a:hover {
  background-color: gray;
  color: #fff;
}

.social-links i {
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .social-links {
    gap: 8px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .social-links i {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .social-links {
    gap: 6px;
  }

  .social-links a {
    width: 35px;
    height: 35px;
  }

  .social-links i {
    font-size: 16px;
  }
}

  /* Carousel caption styling css */
  .carousel-caption {
    background: rgba(0, 0, 0, 0.55); /* dark overlay for readability */
    padding: 15px;
    border-radius: 8px;
    max-width: 90%;
    margin: auto;
  }

  .carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .carousel-caption p {
    font-size: 1rem;
    margin-top: 5px;
  }

  /* Mobile-friendly adjustments */
  @media (max-width: 768px) {
    .carousel-caption {
      bottom: 10%;
      padding: 10px;
    }
    .carousel-caption h5 {
      font-size: 1.2rem;
    }
    .carousel-caption p {
      font-size: 0.9rem;
    }
  }
    /* ✅ Custom Styling */
    body {
      font-family: "Poppins", sans-serif;
      background: #f8f9fa;
    }

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

    .services-section h2 {
      text-align: center;
      margin-bottom: 40px;
      font-weight: 700;
      color: #0d6efd;
    }

    .service-card {
      background: #fff;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .service-card i {
      font-size: 40px;
      color: #0d6efd;
      margin-bottom: 20px;
      transition: 0.3s ease;
    }

    .service-card:hover i {
      color: #6610f2;
      transform: scale(1.2);
    }

    .service-card h5 {
      font-weight: 600;
      margin-bottom: 15px;
      color: #333;
    }

    .service-card p {
      font-size: 0.95rem;
      color: #555;
    }
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

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

.preloader-text {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  animation: fadeInOut 2s ease-in-out infinite, colorChange 2s ease-in-out infinite;
}

/* Fade-in and fade-out animation for preloader text */
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Color changing effect for the preloader text */
@keyframes colorChange {
  0% {
    color: #333;
  }
  50% {
    color: #007bff;
  }
  100% {
    color: #333;
  }
}

/* Hide preloader once the page is loaded */
.loaded .preloader {
  opacity: 0;
  pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .preloader-text {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .preloader-text {
    font-size: 2.5rem;
  }
}
/* Main content (student-feedback) styling */
.student-feedback {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}


/* Additional styling for feedback section ... */

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .scroll-top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
  }

  .scroll-top i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .scroll-top {
    width: 40px;
    height: 40px;
    right: 8px;
    bottom: 8px;
  }

  .scroll-top i {
    font-size: 30px;
  }
}


/*--------------------------------------------------------------
# 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: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 300;
}

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

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

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

/* Responsive Styles */
@media (max-width: 768px) {
  .page-title {
    padding: 20px 15px;
  }

  .page-title h1 {
    font-size: 24px;
    text-align: center;
  }

  .page-title .breadcrumbs ol {
    justify-content: center;
    font-size: 12px;
  }

  .page-title .breadcrumbs ol li+li {
    padding-left: 8px;
  }

  .page-title .breadcrumbs ol li+li::before {
    padding-right: 8px;
  }
}

@media (max-width: 480px) {
  .page-title {
    padding: 15px 10px;
  }

  .page-title h1 {
    font-size: 20px;
  }

  .page-title .breadcrumbs ol {
    font-size: 10px;
  }

  .page-title .breadcrumbs ol li+li {
    padding-left: 6px;
  }

  .page-title .breadcrumbs ol li+li::before {
    padding-right: 6px;
  }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

/* Medium screens: Tablets and small laptops */
@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
    padding: 50px 0;
  }
}

/* Small screens: Mobile devices */
@media (max-width: 768px) {
  section,
  .section {
    scroll-margin-top: 50px;
    padding: 40px 0;
  }
}

/* Extra small screens: Very narrow devices */
@media (max-width: 480px) {
  section,
  .section {
    scroll-margin-top: 40px;
    padding: 30px 0;
  }
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/* Responsive styles for tablets and small laptops */
@media (max-width: 1199px) {
  .section-title {
    padding-bottom: 50px;
  }

  .section-title h2 {
    font-size: 13px;
  }

  .section-title h2::after {
    width: 100px;
  }

  .section-title p {
    font-size: 24px;
  }
}

/* Responsive styles for mobile devices */
@media (max-width: 768px) {
  .section-title {
    padding-bottom: 40px;
  }

  .section-title h2 {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .section-title h2::after {
    width: 80px;
  }

  .section-title p {
    font-size: 20px;
  }
}

/* Responsive styles for extra small screens */
@media (max-width: 480px) {
  .section-title {
    padding-bottom: 30px;
  }

  .section-title h2 {
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  .section-title h2::after {
    width: 60px;
  }

  .section-title p {
    font-size: 18px;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 90px);
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

@media (max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 66px);
  }
}

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

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero {
    height: 40vh; /* Set hero height to 40% of the screen height */
  }

  .hero .carousel {
    min-height: 40vh; /* Set carousel height to 40% of the screen height */
  }

  .hero img {
    height: 100%; /* Ensure the image adjusts to fit the new height */
  }

  .hero .carousel-container {
    inset: 20px 10px 10px 10px; /* Adjust spacing for smaller screens */
  }

  .hero h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .hero .btn-get-started {
    font-size: 14px;
    padding: 6px 20px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {
  .hero h2,
  .hero p {
    max-width: 60%;
  }

  .hero .carousel-container {
    inset: 90px 64px 64px 64px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
---------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

@media (max-width: 1200px) {
  .about ul i {
    font-size: 18px; /* Slightly reduce icon size for medium screens */
  }

  .about .read-more {
    font-size: 14px; /* Smaller font size for the "Read More" button */
    padding: 8px 24px; /* Reduced padding */
  }

  .about .read-more i {
    font-size: 16px; /* Reduce the icon size in the "Read More" button */
    margin-left: 5px;
  }
}

@media (max-width: 768px) {
  .about ul li {
    padding-bottom: 10px; /* More space between list items on smaller screens */
  }

  .about .read-more {
    font-size: 14px; /* Maintain small font size for readability */
    padding: 8px 20px; /* Adjust button padding for smaller screens */
  }

  .about .read-more i {
    font-size: 14px; /* Even smaller icon size on mobile */
    margin-left: 5px;
  }
}

@media (max-width: 480px) {
  .about ul i {
    font-size: 16px; /* Further reduce icon size on small screens */
  }

  .about .read-more {
    font-size: 12px; /* Smaller button font size for mobile */
    padding: 6px 16px; /* Adjust button padding for small mobile screens */
  }

  .about .read-more i {
    font-size: 14px; /* Even smaller icon size for better alignment */
    margin-left: 5px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

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

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

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

@media (max-width: 1200px) {
  .clients .client-logo img {
    padding: 20px 30px; /* Adjust padding for medium-sized screens */
  }
}

@media (max-width: 768px) {
  .clients .client-logo img {
    padding: 20px 25px; /* Reduce padding on smaller screens */
  }
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 15px; /* Adjust padding for mobile devices */
  }
}

@media (max-width: 480px) {
  .clients .client-logo img {
    padding: 10px; /* Further reduce padding for small mobile screens */
  }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

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

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

.services .service-item .description {
  line-height: 24px;
  font-size: 15px;
  margin: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .services .service-item {
    padding: 25px; /* Adjust padding for medium-sized screens */
  }

  .services .service-item .icon {
    font-size: 32px; /* Slightly smaller icon size for medium screens */
    margin-right: 20px; /* Reduce margin for medium screens */
  }

  .services .service-item .title {
    font-size: 18px; /* Slightly smaller title font for medium screens */
  }

  .services .service-item .description {
    font-size: 16px; /* Adjust font size for descriptions */
  }
}

@media (max-width: 768px) {
  .services .service-item {
    padding: 20px; /* Further reduce padding for smaller screens */
  }

  .services .service-item .icon {
    font-size: 28px; /* Further reduce icon size */
    margin-right: 15px; /* Reduce margin for smaller screens */
  }

  .services .service-item .title {
    font-size: 18px; /* Further reduce title font size */
  }

  .services .service-item .description {
    font-size: 16px; /* Adjust font size for mobile screens */
  }
}

@media (max-width: 480px) {
  .services .service-item {
    padding: 15px; /* Minimal padding on very small screens */
  }

  .services .service-item .icon {
    font-size: 24px; /* Small icon size for mobile screens */
    margin-right: 10px; /* Reduce margin for small screens */
  }

  .services .service-item .title {
    font-size: 16px; /* Reduce title font for very small screens */
  }

  .services .service-item .description {
    font-size: 15px; /* Adjust description font for smaller screens */
  }
}


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

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

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

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

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

/* Responsive for smaller screens */
@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0; /* Increase margin bottom for better spacing */
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px; /* Ensures items don't touch each other */
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

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

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/* Responsive adjustments for portfolio items */
@media (max-width: 992px) {
  .portfolio .portfolio-item {
    margin-bottom: 15px; /* Reduce margin on smaller screens */
  }

  .portfolio .portfolio-info {
    padding: 12px; /* Reduced padding for smaller screens */
  }

  .portfolio .portfolio-info h4 {
    font-size: 16px; /* Slightly smaller font size */
  }

  .portfolio .portfolio-info p {
    font-size: 12px; /* Smaller font size for descriptions */
  }

  .portfolio .portfolio-item .portfolio-info .preview-link,
  .portfolio .portfolio-item .portfolio-info .details-link {
    font-size: 20px; /* Reduce size of preview and details link */
  }
}

/* Additional responsiveness for mobile */
@media (max-width: 576px) {
  .portfolio .portfolio-filters {
    padding: 0 10px; /* Add padding to the filters for better touch interaction */
  }

  .portfolio .portfolio-filters li {
    font-size: 13px; /* Smaller font size for better mobile compatibility */
    padding: 6px 15px; /* Adjust padding for mobile touch targets */
  }

  .portfolio .portfolio-item {
    padding: 10px; /* Add padding for smaller devices to avoid clutter */
  }

  .portfolio .portfolio-item .portfolio-info {
    padding: 10px; /* Adjust padding for mobile view */
    bottom: -90%; /* Make sure the portfolio info is adjusted properly */
  }

  .portfolio .portfolio-item .portfolio-info h4 {
    font-size: 14px; /* Further reduce heading size */
  }

  .portfolio .portfolio-item .portfolio-info p {
    font-size: 12px; /* Reduce text size */
  }

  .portfolio .portfolio-item .portfolio-info .preview-link,
  .portfolio .portfolio-item .portfolio-info .details-link {
    font-size: 20px; /* Smaller icon size for mobile */
  }
}


/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}

.about-2 .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.about-2 .about-img img {
  position: relative;
  z-index: 2;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .about-2 .about-img {
    margin: 30px 0 0 30px;
  }

  .about-2 .about-img:before {
    inset: -30px 0 0 -30px;
  }
}

@media (max-width: 576px) {
  .about-2 .about-img {
    margin: 15px 0 0 15px;
  }

  .about-2 .about-img:before {
    inset: -15px 0 0 -15px;
  }
}

.about-2 h3 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

/* Responsive typography for smaller screens */
@media (max-width: 768px) {
  .about-2 h3 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .about-2 h3 {
    font-size: 24px;
  }
}

.about-2 .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about-2 .nav-pills li + li {
  margin-left: 40px;
}

.about-2 .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.about-2 .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

/* Responsive navigation for smaller screens */
@media (max-width: 768px) {
  .about-2 .nav-link {
    font-size: 16px;
    padding: 10px 0;
  }

  .about-2 .nav-pills li + li {
    margin-left: 20px;
  }
}

@media (max-width: 576px) {
  .about-2 .nav-link {
    font-size: 14px;
    padding: 8px 0;
  }

  .about-2 .nav-pills li + li {
    margin-left: 10px;
  }
}

.about-2 .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.about-2 .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}

/* Responsive tab content for smaller screens */
@media (max-width: 768px) {
  .about-2 .tab-content h4 {
    font-size: 16px;
  }

  .about-2 .tab-content i {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .about-2 .tab-content h4 {
    font-size: 14px;
  }

  .about-2 .tab-content i {
    font-size: 18px;
  }
}



/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 10px 0;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

/* Stats number styling */
.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;
}

/* Responsive adjustments for tablets and mobile screens */
@media (max-width: 768px) {
  .stats .stats-item {
    padding: 20px; /* Reduce padding for smaller screens */
  }

  .stats .stats-item span {
    font-size: 36px; /* Smaller font size for numbers */
    margin-bottom: 15px;
  }

  .stats .stats-item p {
    font-size: 14px; /* Adjust paragraph font size */
  }
}

@media (max-width: 575px) {
  .stats .stats-item {
    padding: 15px; /* Further reduce padding for very small screens */
  }

  .stats .stats-item span {
    font-size: 28px; /* Even smaller font size for numbers on mobile */
    margin-bottom: 10px;
  }

  .stats .stats-item p {
    font-size: 12px; /* Adjust paragraph font size further for mobile */
  }
}


/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/* Responsive adjustments for tablets and mobile screens */
@media (max-width: 768px) {
  .skills .progress {
    height: 50px; /* Slightly reduce height for smaller screens */
  }

  .skills .progress .skill {
    font-size: 16px; /* Reduce font size for smaller screens */
    margin-bottom: 4px; /* Adjust margin for better spacing */
  }

  .skills .progress .skill .val {
    font-size: 14px; /* Adjust value font size for better fit */
  }

  .skills .progress-bar-wrap {
    height: 8px; /* Adjust progress bar height */
  }

  .skills .progress-bar {
    height: 8px; /* Adjust progress bar height */
  }
}

@media (max-width: 575px) {
  .skills .progress {
    height: 40px; /* Further reduce height on very small screens */
  }

  .skills .progress .skill {
    font-size: 14px; /* Smaller font size for smaller screens */
    margin-bottom: 3px;
  }

  .skills .progress .skill .val {
    font-size: 12px; /* Even smaller font size for the value */
  }

  .skills .progress-bar-wrap {
    height: 6px; /* Reduce the height of progress bar on mobile */
  }

  .skills .progress-bar {
    height: 6px; /* Reduce the height of the progress bar */
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column; /* Default column layout for smaller screens */
  text-align: center;
}

.team .team-member .pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 575px) {
  .team .team-member {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team .team-member .pic {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px auto;
  }
}

/* Responsive adjustments for medium and larger screens */
@media (min-width: 576px) {
  .team .team-member {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .team .team-member .pic {
    width: 120px;
    height: 120px;
    margin-right: 20px;
    flex-shrink: 0;
  }
  
  /* Ensuring all images' divs are of the same size */
  .team .team-member .pic-container {
    width: 150px; /* Fixed width for consistency */
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Ensuring content section is aligned properly */
.team .team-member .content {
  flex: 1;
}

.team .team-member h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.team .team-member span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.team .team-member .social {
  margin: 10px 0;
}

.team .team-member .social a {
  background: #ffc107;
  margin: 0 1px;
}

.team .team-member p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 60px;
    margin: 0 10px 0 0;
  }

  .testimonials .testimonial-item h3 {
    font-size: 16px;
    margin: 8px 0 5px 0;
  }

  .testimonials .testimonial-item h4 {
    font-size: 12px;
  }

  .testimonials .testimonial-item .stars i {
    margin: 0 2px;
  }

  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    font-size: 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 14px;
  }
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  overflow: hidden;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.features .nav-link:hover {
  color: var(--accent-color);
}

.features .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.features .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .details p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .features .nav-link {
    padding: 10px 12px;
    font-size: 15px;
    border-right: none;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .features .nav-link.active {
    color: var(--accent-color);
    background-color: var(--background-color);
    border-bottom: 2px solid var(--accent-color);
  }
}

@media (max-width: 768px) {
  .features .nav-link {
    padding: 10px 8px;
    font-size: 15px;
  }

  .features .details h3 {
    font-size: 22px;
  }

  .features .details p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .features .nav-link {
    padding: 10px 6px;
    font-size: 15px;
  }

  .features .details h3 {
    font-size: 20px;
  }

  .features .details p {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  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);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .service-details .services-list {
    padding: 10px 20px;
  }

  .service-details h3 {
    font-size: 22px;
  }

  .service-details h4 {
    font-size: 18px;
  }

  .service-details p {
    font-size: 14px;
  }

  .service-details ul li {
    font-size: 14px;
  }

  .service-details ul i {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .service-details .services-list {
    padding: 10px 15px;
  }

  .service-details h3 {
    font-size: 20px;
  }

  .service-details h4 {
    font-size: 16px;
  }

  .service-details p {
    font-size: 13px;
  }

  .service-details ul li {
    font-size: 13px;
  }

  .service-details ul i {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .service-details .services-list {
    padding: 10px 10px;
  }

  .service-details h3 {
    font-size: 18px;
  }

  .service-details h4 {
    font-size: 14px;
  }

  .service-details p {
    font-size: 12px;
  }

  .service-details ul li {
    font-size: 12px;
  }

  .service-details ul i {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 123, 255, 0.5);
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .pricing .pricing-item {
    padding: 20px;
    text-align: center;
  }

  .pricing .pricing-item h3 {
    font-size: 14px;
  }

  .pricing .pricing-item h4 {
    font-size: 30px;
  }

  .pricing .pricing-item h4 sup {
    font-size: 18px;
  }

  .pricing .pricing-item h4 span {
    font-size: 14px;
  }

  .pricing .pricing-item ul li {
    font-size: 13px;
  }

  .pricing .pricing-item ul i {
    font-size: 16px;
  }

  .pricing .btn-buy {
    padding: 8px 25px 10px 25px;
  }

  .pricing .advanced {
    font-size: 12px;
    width: 150px;
    right: -50px;
  }
}

@media (max-width: 768px) {
  .pricing .pricing-item {
    padding: 15px;
  }

  .pricing .pricing-item h3 {
    font-size: 15px;
  }

  .pricing .pricing-item h4 {
    font-size: 28px;
  }

  .pricing .pricing-item h4 sup {
    font-size: 16px;
  }

  .pricing .pricing-item h4 span {
    font-size: 15px;
  }

  .pricing .pricing-item ul li {
    font-size: 14px;
  }

  .pricing .pricing-item ul i {
    font-size: 14px;
  }

  .pricing .btn-buy {
    padding: 8px 20px 10px 20px;
  }

  .pricing .advanced {
    font-size: 12px;
    width: 140px;
    right: -40px;
  }
}

@media (max-width: 576px) {
  .pricing .pricing-item {
    padding: 15px;
  }

  .pricing .pricing-item h3 {
    font-size: 15px;
  }

  .pricing .pricing-item h4 {
    font-size: 24px;
  }

  .pricing .pricing-item h4 sup {
    font-size: 14px;
  }

  .pricing .pricing-item h4 span {
    font-size: 14px;
  }

  .pricing .pricing-item ul li {
    font-size: 14px;
  }

  .pricing .pricing-item ul i {
    font-size: 14px;
  }

  .pricing .btn-buy {
    padding: 8px 18px 10px 18px;
  }

  .pricing .advanced {
    font-size: 10px;
    width: 120px;
    right: -30px;
  }
}


/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

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

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .blog-posts article {
    padding: 20px;
  }

  .blog-posts .title {
    font-size: 22px;
    margin: 20px 0;
  }

  .blog-posts .meta-top ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-posts .meta-top ul li+li {
    padding-left: 0;
    margin-top: 5px;
  }

  .blog-posts .content .read-more {
    text-align: center;
  }

  .blog-posts .content .read-more a {
    padding: 8px 20px;
  }
}

@media (max-width: 768px) {
  .blog-posts article {
    padding: 15px;
  }

  .blog-posts .title {
    font-size: 20px;
  }

  .blog-posts .meta-top ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-posts .meta-top ul li+li {
    padding-left: 0;
    margin-top: 5px;
  }

  .blog-posts .content .read-more a {
    padding: 8px 15px;
  }
}

@media (max-width: 576px) {
  .blog-posts article {
    padding: 10px;
  }

  .blog-posts .title {
    font-size: 18px;
  }

  .blog-posts .meta-top ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-posts .meta-top ul li+li {
    padding-left: 0;
    margin-top: 5px;
  }

  .blog-posts .content .read-more a {
    padding: 8px 12px;
  }
}


/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .blog-pagination ul {
    padding: 0 10px;
  }

  .blog-pagination li a {
    padding: 6px 12px;
  }
}

@media (max-width: 768px) {
  .blog-pagination ul {
    padding: 0;
    margin: 0;
  }

  .blog-pagination li a {
    padding: 5px 10px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .blog-pagination ul {
    padding: 0;
    margin: 0;
    flex-direction: column;
    align-items: center;
  }

  .blog-pagination li a {
    padding: 5px 8px;
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .blog-details .title {
    font-size: 24px;
    margin: 20px 0;
  }

  .blog-details .content h3 {
    font-size: 20px;
  }

  .blog-details .content blockquote {
    padding: 40px;
  }

  .blog-details .content blockquote p {
    font-size: 18px;
  }

  .blog-details .meta-top ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-details .meta-top ul li {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .blog-details .title {
    font-size: 20px;
    margin: 15px 0;
  }

  .blog-details .content h3 {
    font-size: 18px;
  }

  .blog-details .content blockquote {
    padding: 30px;
  }

  .blog-details .content blockquote p {
    font-size: 16px;
  }

  .blog-details .meta-top ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-details .meta-top ul li {
    margin-bottom: 5px;
  }
}

@media (max-width: 576px) {
  .blog-details .title {
    font-size: 18px;
    margin: 10px 0;
  }

  .blog-details .content h3 {
    font-size: 16px;
  }

  .blog-details .content blockquote {
    padding: 20px;
  }

  .blog-details .content blockquote p {
    font-size: 14px;
  }

  .blog-details .meta-top ul {
    flex-direction: column;
    align-items: center;
  }

  .blog-details .meta-top ul li {
    margin-bottom: 5px;
  }
}


/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .blog-comments .comment {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-comments .comment .comment-img {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .blog-comments .comment h5 {
    font-size: 14px;
  }

  .blog-comments .comment h5 .reply {
    padding-left: 0;
  }

  .blog-comments .comment time {
    font-size: 12px;
  }

  .blog-comments .comment.comment-reply {
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .blog-comments .comment h5 {
    font-size: 14px;
  }

  .blog-comments .comment h5 .reply i {
    font-size: 18px;
  }

  .blog-comments .comment time {
    font-size: 12px;
  }

  .blog-comments .comment.comment-reply {
    padding-left: 15px;
  }
}

@media (max-width: 576px) {
  .blog-comments .comment h5 {
    font-size: 12px;
  }

  .blog-comments .comment h5 .reply i {
    font-size: 16px;
  }

  .blog-comments .comment time {
    font-size: 10px;
  }

  .blog-comments .comment.comment-reply {
    padding-left: 10px;
  }
}


/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
  width: 100%;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
  width: 100%;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 100%;
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .comment-form form {
    padding: 20px;
  }

  .comment-form form h4 {
    font-size: 20px;
  }

  .comment-form form p {
    font-size: 13px;
  }

  .comment-form form input,
  .comment-form form textarea {
    font-size: 13px;
    padding: 8px 10px;
  }

  .comment-form form .btn-primary {
    font-size: 14px;
    padding: 10px 18px;
  }
}

@media (max-width: 768px) {
  .comment-form form {
    padding: 15px;
  }

  .comment-form form h4 {
    font-size: 18px;
  }

  .comment-form form p {
    font-size: 12px;
  }

  .comment-form form input,
  .comment-form form textarea {
    font-size: 12px;
    padding: 8px 10px;
  }

  .comment-form form .btn-primary {
    font-size: 13px;
    padding: 8px 16px;
  }
}

@media (max-width: 576px) {
  .comment-form form {
    padding: 10px;
  }

  .comment-form form h4 {
    font-size: 16px;
  }

  .comment-form form p {
    font-size: 11px;
  }

  .comment-form form input,
  .comment-form form textarea {
    font-size: 11px;
    padding: 8px 8px;
  }

  .comment-form form .btn-primary {
    font-size: 12px;
    padding: 8px 14px;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .contact .info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .contact .info-item i {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .contact .info-item h3 {
    font-size: 16px;
  }

  .contact .info-item p {
    font-size: 13px;
  }

  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea {
    font-size: 13px;
    padding: 8px 12px;
  }

  .contact .php-email-form button[type=submit] {
    font-size: 14px;
    padding: 8px 25px;
  }
}

@media (max-width: 768px) {
  .contact .info-item {
    flex-direction: column;
    text-align: center;
  }

  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea {
    font-size: 12px;
    padding: 8px 10px;
  }

  .contact .php-email-form button[type=submit] {
    font-size: 13px;
    padding: 8px 20px;
  }
}

@media (max-width: 576px) {
  .contact .info-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
  }

  .contact .info-item i {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .contact .info-item h3 {
    font-size: 14px;
  }

  .contact .info-item p {
    font-size: 12px;
  }

  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea {
    font-size: 12px;
    padding: 8px 10px;
  }

  .contact .php-email-form button[type=submit] {
    font-size: 12px;
    padding: 8px 15px;
  }
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

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

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;

/* Responsive styles */
@media (max-width: 992px) {
  .widgets-container {
    padding: 20px;
    margin: 40px 0 20px 0;
  }

  .widget-title {
    font-size: 18px;
  }

  .search-widget form input[type=text] {
    width: calc(100% - 50px);
  }

  .search-widget form button {
    padding: 0 10px;
  }

  .categories-widget ul a span {
    font-size: 12px;
  }

  .recent-posts-widget .post-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .recent-posts-widget .post-item img {
    width: 60px;
    margin-right: 10px;
  }

  .recent-posts-widget .post-item h4 {
    font-size: 14px;
  }

  .recent-posts-widget .post-item time {
    font-size: 12px;
  }

  .tags-widget ul a {
    padding: 4px 10px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .widgets-container {
    padding: 15px;
    margin: 30px 0 15px 0;
  }

  .widget-title {
    font-size: 16px;
  }

  .search-widget form input[type=text] {
    width: calc(100% - 40px);
  }

  .search-widget form button {
    padding: 0 8px;
  }

  .categories-widget ul a span {
    font-size: 11px;
  }

  .recent-posts-widget .post-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .recent-posts-widget .post-item img {
    width: 50px;
    margin-right: 10px;
  }

  .recent-posts-widget .post-item h4 {
    font-size: 13px;
  }

  .recent-posts-widget .post-item time {
    font-size: 11px;
  }

  .tags-widget ul a {
    padding: 4px 10px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .widgets-container {
    padding: 10px;
    margin: 20px 0 10px 0;
  }

  .widget-title {
    font-size: 14px;
  }

  .search-widget form input[type=text] {
    width: calc(100% - 35px);
  }

  .search-widget form button {
    padding: 0 5px;
  }

  .categories-widget ul a span {
    font-size: 10px;
  }

  .recent-posts-widget .post-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .recent-posts-widget .post-item img {
    width: 40px;
    margin-right: 8px;
  }

  .recent-posts-widget .post-item h4 {
    font-size: 12px;
  }

  .recent-posts-widget .post-item time {
    font-size: 10px;
  }

  .tags-widget ul a {
    padding: 4px 8px;
    font-size: 10px;
  }
}

}
/*--registration-form-css--*/
/* Form container customization */
.card {
  border-radius: 20px;
  background-color: #ffff;
  width: 400px;
  margin: auto;
  padding: 20px; /* Add padding for better spacing inside the card */
}

/* Form inputs */
.form-control, .form-select {
  border-radius: 20px;
  padding: 10px;
  font-size: 14px;
}

/* Submit button */
.btn-primary {
  background-color: #0056b3;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 20px;
}

.btn-primary:hover {
  background-color: #003d82;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .card {
    width: 90%; /* Make the card width responsive */
    margin: 20px auto; /* Adjust margin for smaller screens */
  }

  .form-control, .form-select {
    font-size: 14px; /* Slightly smaller font for smaller screens */
    padding: 8px; /* Adjust padding for smaller screens */
  }

  .btn-primary {
    font-size: 14px; /* Adjust button font size */
    padding: 8px 16px; /* Adjust button padding */
  }
}

@media (max-width: 768px) {
  .card {
    width: 95%; /* Make card even smaller for small devices */
    padding: 15px; /* Adjust padding for smaller screen */
  }

  .form-control, .form-select {
    font-size: 13px; /* Adjust input font size */
    padding: 7px; /* Reduce input padding */
  }

  .btn-primary {
    font-size: 13px; /* Adjust button font size */
    padding: 7px 14px; /* Adjust button padding */
  }
}

@media (max-width: 576px) {
  .card {
    width: 100%; /* Full width on extremely small screens */
    padding: 10px; /* Adjust padding */
  }

  .form-control, .form-select {
    font-size: 12px; /* Further reduce font size for smaller screens */
    padding: 6px; /* Adjust padding */
  }

  .btn-primary {
    font-size: 12px; /* Adjust button font size */
    padding: 6px 12px; /* Adjust button padding */
  }
}

/*counter section*/
.counters-section {
  background-color: #090909;
  padding: 50px 0;
}

/* Counter Box */
.counter-box {
  margin: 20px 0;
  text-align: center; /* Center align content for smaller screens */
}

/* Heading */
.counter-box h2 {
  font-size: 50px;
  font-weight: bold;
  color: #837ce8;
}

/* Paragraph */
.counter-box p {
  font-size: 20px;
  margin-top: 10px;
  color: #0b0b0b;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .counters-section {
    padding: 40px 0; /* Reduce padding for tablets */
  }

  .counter-box h2 {
    font-size: 40px; /* Adjust heading size */
  }

  .counter-box p {
    font-size: 18px; /* Adjust paragraph font size */
  }
}

@media (max-width: 768px) {
  .counters-section {
    padding: 30px 0; /* Adjust padding for smaller screens */
  }

  .counter-box h2 {
    font-size: 35px; /* Reduce heading font size further */
  }

  .counter-box p {
    font-size: 16px; /* Reduce paragraph font size */
  }
}

@media (max-width: 576px) {
  .counters-section {
    padding: 20px 0; /* Reduce padding for mobile screens */
  }

  .counter-box h2 {
    font-size: 30px; /* Further reduce heading size */
  }

  .counter-box p {
    font-size: 14px; /* Further reduce paragraph font size */
  }
}

/*end counter section*/

/*-------benifites------*/
.benefits-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #ffffff;
}

.benefits-section h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #333333;
}

.benefits-section p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 40px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.benefit-item {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  font-size: 20px;
  color: #007bff;
  margin-bottom: 15px;
}

.benefit-title {
  font-size: 20px;
  color: #333333;
  margin-bottom: 10px;
}

.benefit-description {
  font-size: 16px;
  color: #555555;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .benefit-item {
    width: 45%; /* Adjust width for medium screens (tablets) */
  }
}

@media (max-width: 768px) {
  .benefit-item {
    width: 100%; /* Full-width on smaller screens */
    padding: 15px; /* Reduce padding for smaller screens */
  }

  .benefits-section h2 {
    font-size: 26px; /* Adjust heading font size */
  }

  .benefits-section p {
    font-size: 12px; /* Adjust paragraph font size */
  }

  .benefit-title {
    font-size: 18px; /* Adjust title font size */
  }

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

@media (max-width: 480px) {
  .benefit-icon {
    font-size: 18px; /* Adjust icon size on mobile */
  }

  .benefit-title {
    font-size: 16px; /* Further adjust title font size */
  }

  .benefit-description {
    font-size: 13px; /* Further adjust description font size */
  }
}

/*-------end of benifites--*/
/* Training Section */
.training-section {
  padding: 10px 0;
}

.training-section .section-title {
  font-size: 2rem;
  font-weight: bold;
}

.training-section .section-description {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 40px;
}

/* Card Styling */
.training-card {
  background-color: #fff;
  border: 2px double #1877f2;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.icon-container {
  background-color: #fff;
  padding: 20px;
  /*--border: 2px double #1877f2;--*/
  border-radius:50%;
  margin-bottom: 15px;
  font-size: small;
  color:#1877f2;
}

.training-card .card-title {
  font-size: 1.25rem;
  color:#090909;
}

.training-card .card-text {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
}

.training-card .card-title:hover {
  color: #1877f2;

}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .training-section .section-title {
    font-size: 1.8rem;
  }

  .training-section .section-description {
    font-size: 0.95rem;
  }

  .training-card .card-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .training-section .section-title {
    font-size: 1.6rem;
  }

  .training-section .section-description {
    font-size: 0.9rem;
  }

  .training-card .card-title {
    font-size: 1rem;
  }

  .training-card .card-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .training-section .section-title {
    font-size: 1.5rem;
  }

  .training-section .section-description {
    font-size: 0.9rem;
  }

  .training-card .card-title {
    font-size: 0.95rem;
  }

  .training-card .card-text {
    font-size: .9rem;
  }
}

/*------End of Training-------*/
/*----------contact form updated ------*/
/* Add custom styles */
form.contact {
  border: 2px solid #ccc;
  padding: 20px;
  border-radius: 8px;
}

.input-container {
  position: relative;
}

.input-container i {
  position: absolute;
  left: 10px;
  top: 12px;
  color: #888;
}

.form-control {
  padding-left: 30px; /* Space for the icon */
}

button {
  margin-top: 20px;
}

/*---------end of contact css -----*/
/*------------Software development training section---*/
.development-section {
  padding: 60px 20px;
  background-color: #f8f9fa; /* Light background */
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  text-align: center; /* Center-align title for consistency */
}

.section-description {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #555;
  text-align: justify; /* Ensures text alignment is justified */
}

.training-benefits {
  list-style: none;
  padding: 0;
}

.training-benefits li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.training-benefits i {
  color: #28a745; /* Green check icon */
  margin-right: 10px;
}

.img-fluid {
  border-radius: 8px;
  max-width: 100%; /* Responsive image */
  height: auto;
}

.btn-primary {
  padding: 10px 20px;
  font-size: 1rem;
}

/* Responsive Adjustments */

/* Large screens (desktops) */
@media (min-width: 1200px) {
  .development-section {
    padding: 80px 40px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-description {
    font-size: 1.3rem;
  }

  .training-benefits li {
    font-size: 1.1rem;
  }

  .btn-primary {
    font-size: 1.1rem;
    padding: 12px 24px;
  }
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1.1rem;
  }

  .training-benefits li {
    font-size: 0.95rem;
  }

  .btn-primary {
    font-size: 0.95rem;
    padding: 8px 16px;
  }
}

/* Small screens (mobile devices) */
@media (max-width: 768px) {
  .development-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 1.6rem;
    text-align: center; /* Center-align for smaller screens */
  }

  .section-description {
    font-size: 1rem;
  }

  .training-benefits li {
    font-size: 0.9rem;
  }

  .btn-primary {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}

/* Extra small screens (narrow devices) */
@media (max-width: 576px) {
  .development-section {
    padding: 30px 10px;
  }

  .section-title {
    font-size: 1.4rem;
    text-align: center; /* Center-align for extra small screens */
  }

  .section-description {
    font-size: 0.9rem;
  }

  .training-benefits li {
    font-size: 0.85rem;
  }

  .btn-primary {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

/*---------disk tag---*/
.training-benefits {
  list-style: none;
  padding: 0;
}

.training-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 10px; /* Adjust spacing between list items */
}

.training-benefits i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px; /* Default diameter of the circle */
  height: 10px; /* Default diameter of the circle */
  border-radius: 50%; /* Makes it circular */
  background-color: #1877f2; /* Facebook blue color */
  color: #fff; /* Icon color */
  margin-right: 10px; /* Spacing between icon and text */
  font-size: 8px; /* Adjust icon size */
}

/* Responsive Styles */

/* Medium screens (tablets) */
@media (max-width: 992px) {
  .training-benefits i {
    width: 8px; /* Slightly smaller circle */
    height: 8px;
    font-size: 7px; /* Adjust icon size */
  }
  .training-benefits li {
    margin-bottom: 8px; /* Reduce spacing */
  }
}

/* Small screens (mobile devices) */
@media (max-width: 768px) {
  .training-benefits i {
    width: 6px; /* Smaller circle for small screens */
    height: 6px;
    font-size: 6px; /* Smaller icon size */
  }
  .training-benefits li {
    margin-bottom: 6px; /* Further reduce spacing */
  }
}

/* Extra small screens (very narrow devices) */
@media (max-width: 576px) {
  .training-benefits i {
    width: 4px; /* Minimum circle size */
    height: 4px;
    font-size: 5px; /* Smallest icon size */
  }
  .training-benefits li {
    margin-bottom: 4px; /* Minimal spacing for compact design */
  }
}



/*-------software development training section end -------*/
/*-----------Training offered ---------------*/
/* General Section Styling */
.summer-training {
  padding-top: 40px;
  padding-bottom: 40px;
}

.summer-training .training-cards {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: justify;
}

/* Responsive Styles */

/* For medium screens (tablets and small desktops) */
@media (max-width: 992px) {
  .summer-training .training-cards h3 {
    font-size: 1.6rem;
  }

  .summer-training .training-cards p,
  .summer-training .training-cards ul {
    font-size: 1rem;
  }

  .summer-training .training-cards a.btn {
    padding: 12px 25px;
    font-size: 1.1rem;
  }

  /* Image adjustments for medium screens */
  .summer-training img {
    width: 100%;
    height: auto;
  }
}

/* For smaller screens (mobile devices) */
@media (max-width: 768px) {
  .summer-training .training-cards h3 {
    font-size: 1.5rem;
  }

  .summer-training .training-cards p,
  .summer-training .training-cards ul {
    font-size: 0.95rem;
  }

  .summer-training .training-cards a.btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  /* Image adjustments for smaller screens */
  .summer-training img {
    width: 100%;
    height: auto;
  }
}

/* For extra small screens (very narrow mobile devices) */
@media (max-width: 576px) {
  .summer-training .training-cards h3 {
    font-size: 1.3rem;
  }

  .summer-training .training-cards p,
  .summer-training .training-cards ul {
    font-size: 0.9rem;
  }

  .summer-training .training-cards a.btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  /* Image adjustments for very small screens */
  .summer-training img {
    width: 100%;
    height: auto;
  }
}


/*------------end of training offered---------*/
/*------------Contact Us for user ---------*/
/* Contact Section */
.contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Ensures content stacks vertically on small screens */
  padding: 20px; /* Optional padding to avoid content touching the screen edges */
  height: auto; /* Adjust height for responsiveness */
}

.container {
  width: 100%;
  max-width: 1200px; /* Ensures content doesn’t stretch too wide */
  padding: 0 15px; /* Add padding for smaller screens */
}

/* Ensure responsiveness for large screens */
@media (min-width: 768px) {
  .contacts {
    flex-direction: row; /* Allow content to align horizontally on medium to large screens */
    height: auto; /* Let content fill the space as needed */
  }

  .col-lg-8 {
    flex: 0 0 66.6667%; /* Form should take up 2/3 of the section width */
  }

  .col-md-6 {
    flex: 0 0 50%; /* Make contact info and form inputs take equal space */
  }
}

/* Center Contact Info and Form on Medium Screens */
@media (max-width: 768px) {
  .col-lg-8, .col-md-6 {
    flex: 0 0 100%; /* Stacks content vertically */
    margin-bottom: 20px; /* Add space between the form and contact info */
  }
  
  /* Form and input fields will adjust nicely */
  .form-control {
    width: 100%;
  }
}

/* Smaller screens adjustments */
@media (max-width: 480px) {
  .contacts {
    padding: 10px; /* Reduce padding on extra small screens */
  }

  .section-title h2 {
    font-size: 1.5rem; /* Smaller font size for smaller devices */
  }

  .section-title p {
    font-size: 0.875rem; /* Adjust text size */
  }

  .btn-primary {
    font-size: 14px; /* Adjust button size */
  }
}

/*----------end of user contact------------*/
/*--------------student feedback-----------*/
/* General Styles */

#student-feedback {
  background-color: #f9f9f9;
  padding: 50px 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.section-description {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Feedback Carousel */
/* General Styling */
.feedback {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.feedback h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.feedback h1 span {
  color: #007bff;
}

/* Card Styling */
.feedback .card {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
  
}

.feedback .card:hover {
  transform: scale(1.05);
}

/* Image Styling */
.feedback .card img {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  object-fit: cover;
  box-shadow: 0 0 0 5px white, 0 0 25px 1px blue !important;
}

/* Text Styling */
.feedback .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.feedback .card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Star Icons */
.feedback .ic {
  color: #316ff3;
  font-size: 1.2rem;
}

/* Carousel Controls */
.feedback .carousel-control-prev,
.feedback .carousel-control-next {
  filter: invert(1);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.feedback .carousel-control-prev:hover,
.feedback .carousel-control-next:hover {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .feedback h1 {
      font-size: 2rem;
  }

  .feedback .card {
      max-width: 350px;
  }

  .feedback .card-title {
      font-size: 1.3rem;
  }

  .feedback .card-text {
      font-size: 0.9rem;
  }

  .feedback .ic {
      font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .feedback {
      padding: 40px 0;
  }

  .feedback h1 {
      font-size: 1.8rem;
  }

  .feedback .card {
      max-width: 320px;
  }

  .feedback .card img {
      width: 100px;
      height: 100px;
  }

  .feedback .card-title {
      font-size: 1.2rem;
  }

  .feedback .card-text {
      font-size: 0.85rem;
  }

  .feedback .ic {
      font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .feedback h1 {
      font-size: 1.5rem;
  }

  .feedback .card {
      max-width: 100%;
      padding: 15px;
  }

  .feedback .card img {
      width: 80px;
      height: 80px;
  }

  .feedback .card-title {
      font-size: 1rem;
  }

  .feedback .card-text {
      font-size: 0.8rem;
  }

  .feedback .ic {
      font-size: 0.8rem;
  }
}



/*-------------end student feedback---------*/
/*---------Certification -----------------*/
/* Main Container */
.certificate-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Certificate Grid */
.certificate {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 20px;
    justify-content: center;
    float:left;
}

/* Image Wrapper (Card Style) */
.image {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height:200px;
    width:300px;
}

.image:hover {
    transform: scale(1.05); /* Zoom effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.image img {
    width: 100%;
    height: 180px; /* Fixed height to maintain uniform size */
    object-fit: cover; /* Ensures images remain proportional */
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .certificate {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .certificate {
        grid-template-columns: repeat(1, 1fr); /* Single column on small screens */
    }
}

/*--------End of certification-----*/
