
/* Fonts */
:root {
  --default-font: "Alexandria",  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: "Alexandria","Montserrat",  sans-serif;
  --nav-font: "Alexandria","Open Sans",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2f2d79; /* 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*/
:root {
  --nav-color: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #2f2d79; /* 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: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2f2d79; /* 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: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  direction: rtl;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
}

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);
}


.email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.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: email-form-loading 1s linear infinite;
}

@keyframes email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* header */
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 10px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-right: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  /* max-height: 40px; */
  height: 55px;
  margin-left: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* #nav */
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    text-align: center;
  }

  .navmenu li {
    position: relative;
    text-align: center;
  }

  .navmenu li .get-service-btn{
    background-color: #2f2d79;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px; 
    cursor: pointer; 
    transition: background-color 0.3s ease;
    height: 40px;
    width: 100%;
    align-items: center;
    align-content: center;
    text-align: center;
    justify-content: center;
  }

  .navmenu li .get-service-btn:hover {
    background-color: #242163;
    color: white;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #26b1e6;
    font-weight: bold;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .get-service-btn {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 16px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    transition: 0.5s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  }
  
  .get-service-btn:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-left: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* footer */
.footer {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}


/* scroll */
.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;
}


@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

  /* Titles & Breadcrumbs */
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.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%);
}

/* sections styles */
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/* sections titles */
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.provider-form-title h2 {
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

.feedback-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.feedback-title h2 {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: white;
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.feedback-title p {
  color: var(--heading-color);
  margin: 35px 0 20px 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

/* hero */
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background: url("../assets/img/herobg.png") center left;
  background-size: cover;
}

.hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.7); 
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-get-started:hover {
  color: #2f2d79;
  background-color: white;
  border: #2f2d79 1px solid;
}


.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-right: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* featured-services */
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4{
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/* about */
.about .about-content h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.about .contact-us-btn {
  margin-top: 35px;
  background-color: #2f2d79;
  color: #fff;
  display: inline-block;
  border: none;
  padding: 10px 20px;
  border-radius: 5px; 
  cursor: pointer; 
  transition: background-color 0.3s ease;
  height: 45px;
  width: 25%;
}

.about .contact-us-btn:hover {
  background-color: #242163;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}


/* stats */
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--surface-color);
  width: 64px;
  height: 64px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  margin-top: -32px;
  padding: 40px 30px 35px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}


/* services */
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 60px 20px;
  transition: border ease-in-out 0.3s;
  height: 80%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 18px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}
.servicesbtn {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.servicesbtn:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.services .service-item a.active:focus {
  background-color: #2f2d79;
  color: var(--contrast-color); /* Optional: Adjust text color for better visibility */
  transition: background-color ease-in-out 0.3s; /* Smooth transition */
}
/* services content */
.services-contents{
  
  /* background-color: #f4f9f9; */
  margin: 0;
  padding: 0;
  color: #333;
}
.services-contents .services-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  border-radius: 10px;
}

.services-contents .services-container h2 {
  text-align: center;
  color: #2f2d79;
  margin-bottom: 20px;
}

.services-contents .service-section {
  margin-bottom: 40px;
}

.services-contents .service-section h3 {
  font-size: 1.8rem;
  color: #2f2d79;
  margin-bottom: 15px;
}

.services-contents .service-section ul {
  list-style: none;
  padding: 0;
}

.services-contents .service-section ul li {
  padding: 10px 15px;
  margin-bottom: 10px;
  background: #efeff6;
  border: 1px solid #a4a0ea;
  border-radius: 5px;
}

.services-contents .service-section ul li:hover {
  background: #dfdfed;
  cursor: pointer;
  transition: background 0.3s;
}
.services-contents .why-choose-us {
background-color: #ebebf8;
padding: 30px;
margin: 20px auto;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.services-contents .why-choose-us h2 {
color: #2f2d79;
margin-bottom: 20px;
}

.services-contents .why-choose-us ul {
list-style: none;
padding: 0;
}

.services-contents .why-choose-us ul li {
font-size: 1.2rem;
margin: 10px 0;
color: #2f2d79;
position: relative;
padding-left: 30px;
}

.services-contents .why-choose-us ul li::before {
content: "✔";
color: #2f2d79;
position: absolute;
left: 0;
top: 0;
}



#service1 {
text-align: center;
width: 100%;
}

#service1 .serv-container {
display: flex;

gap: 30px; /* Adds consistent spacing between cards */
flex-wrap: wrap;
padding-top: 20px;
}

#service1 .serv {
position: relative;
width: 23%;
min-width: 250px;
padding: 10px 12px;
border: 1px solid #e0e0f4;
border-radius: 5px;
cursor: pointer;
box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
margin: 15px 0;
transition: transform 0.5s, box-shadow 0.2s ease;
text-align: center;
height: 450px;
}

#service1 .serv:hover {
 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
/* transform: translateY(-5px); */
}

#service1 .serv img {
width: 100%;
height: 60%;
border-radius: 5px;
height: 230px;
object-fit: cover;
}

#service1 .serv .des {
text-align: start;
padding: 10px 0;
flex-grow: 1; /* Ensures the description fills the available space */
overflow: hidden; 
}

#service1 .serv .des span {
color: #606063;
font-size: 12px;
}

#service1 .serv .des h5 {
padding-top: 7px;
color: #1a1a1a;
font-size: 14px;
line-height: 1.5;
}

.btn-container {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
margin-top: auto;
}

.btn-request {
color: #ffffff;
background: #2f2d79;
font-weight: 600;
font-size: 16px;
padding: 12px 25px;
border-radius: 4px;
transition: all 0.3s ease;
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
text-decoration: none;
}

.btn-request:hover {
color: #2f2d79;
background-color: #ffffff;
border: 2px solid #2f2d79;
box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
transform: scale(1.05);
}
a.btn-request.disabled {
pointer-events: none; 
opacity: 0.6;       
cursor: not-allowed; 
}

.section-p1{
padding: 40px 80px;

}


.promotional-offer {
background: linear-gradient(135deg, #25218f, #7a76d9);
padding: 80px 0;
color: #fff;
border-radius: 6px;
position: relative;
overflow: hidden;
}

.promotional-offer::before {
content: '';
position: absolute;
top: -50px;
left: -50px;
width: 150px;
height: 150px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
animation: float 6s infinite;
}

.promotional-offer::after {
content: '';
position: absolute;
bottom: -30px;
right: -30px;
width: 100px;
height: 100px;
background: rgba(255, 235, 59, 0.1);
border-radius: 50%;
animation: float 4s infinite 2s;
}

.offer-badge {
background: #ffeb3b;
color: #007bff;
display: inline-flex;
align-items: center;
padding: 8px 20px;
border-radius: 30px;
margin-bottom: 20px;
animation: pulse 2s infinite;
}

.offer-badge i {
margin-left: 8px;
font-size: 1.2rem;
}

.offer-title {
font-size: 2.8rem;
margin-bottom: 25px;
position: relative;
display: inline-block;
text-shadow: 2px 2px 4px #007bff;
}

.offer-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: #ffeb3b;
}

.animated-text {
position: relative;
display: inline-block;
}

.offer-text {
font-size: 2rem;
margin-bottom: 30px;
display: flex;
flex-direction: column;
gap: 10px;
}

.text-part {
animation: slideIn 1s ease-out;
}

.highlight {
color: #ffeb3b;
font-weight: 700;
text-shadow: 0 0 10px rgba(255, 235, 59, 0.4);
position: relative;
display: inline-block;
}

.cta-wrapper {
position: relative;
margin-top: 30px;
}

.btn-get-startedd {
background: #fff;
color: #007bff;
padding: 12px 40px;
border-radius: 30px;
font-weight: 700;
display: inline-flex;
align-items: center;
gap: 10px;
position: relative;
overflow: hidden;
transition: all 0.4s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-get-startedd:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-get-startedd::after {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, 
  transparent 25%,
  rgba(255,255,255,0.1) 50%,
  transparent 75%);
animation: shine 3s infinite;
}

.stars {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
}

.star {
position: absolute;
background: #fff;
border-radius: 50%;
animation: twinkle 2s infinite;
}

@keyframes float {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(10px, 10px); }
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}

@keyframes shine {
to { transform: translateX(100%); }
}

@keyframes slideIn {
from { transform: translateY(20px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}

@keyframes twinkle {
0%, 100% { opacity: 0; }
50% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
.offer-title {
  font-size: 2rem;
}

.offer-text {
  font-size: 1.5rem;
}

.btn-get-startedd {
  padding: 10px 30px;
  font-size: 0.9rem;
}
}

@media (max-width: 1300px) {
#service1 .serv-container {
  gap: 20px; 
}

#service1 .serv {
  width: 45%; 
}

.btn-request {
  padding: 10px 20px; 
  font-size: 13px; 
}
}

@media (max-width: 768px) {
.section-p1{
    padding: 40px 40px;
}
#service1 .serv-container {
    justify-content: center;
}

#service1 .serv {
  width: 100%; 
  margin: 15px 0;
}

.btn-request {
  padding: 8px 18px; 
  font-size: 12px; 
}
}

@media (max-width: 480px) {
.section-p1 {
  padding: 20px;
}

.btn-request {
  padding: 6px 15px; 
  font-size: 11px; 
}
}

/* works */
.works .works-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.works .works-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 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);
}

.works .works-filters li:hover,
.works .works-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.works .works-filters li:first-child {
  margin-right: 0;
}

.works .works-filters li:last-child {
  margin-left: 0;
}

@media (max-width: 575px) {
  .works .works-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.works .works-item {
  position: relative;
  overflow: hidden;
  margin: 5px 0px 20px 0px;
}

.works .works-item .works-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(--background-color), transparent 10%);
  padding: 15px;
}

.works .works-item .works-info h5 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  margin-right: 2vw;
}

.works .works-item .works-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.works .works-item .works-info .preview-link,
.works .works-item .works-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;
}

.works .works-item .works-info .preview-link:hover,
.works .works-item .works-info .details-link:hover {
  color: var(--accent-color);
}

.works .works-item .works-info .details-link {
  right: 14px;
  font-size: 28px;
}

.works .works-item:hover .works-info {
  opacity: 1;
  bottom: 0;
}

.works .project-container{
  border-radius: 10px;
  border:1px solid #e4e4e4;
  padding: 0 0 25px 0;
}

.works .project-container h4{
  background-color: #eeeeee;
  padding: 12px;
  border-radius: 10px 10px 0 0;
}




/*######################################################################################################*/

/*--------------------------------------------------------------
# Feedback Section
--------------------------------------------------------------*/
.feedback {
  padding: 80px 0;
  position: relative;
}

.feedback:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.feedback .feedback-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.feedback .container {
  position: relative;
  z-index: 3;
}

.feedback .feedback-carousel,
.feedback .feedback-slider {
  overflow: hidden;
}

.feedback .feedback-item {
  text-align: center;
}

.feedback .feedback-item .feedback-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.feedback .feedback-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.feedback .feedback-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.feedback .feedback-item .stars {
  margin-bottom: 15px;
}

.feedback .feedback-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.feedback .feedback-item .quote-icon-left,
.feedback .feedback-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.feedback .feedback-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.feedback .feedback-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.feedback .feedback-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.feedback .swiper-wrapper {
  height: auto;
}

.feedback .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.feedback .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.feedback .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .feedback .feedback-item p {
    width: 80%;
  }
}



  /*######################################################################################################*/



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-left: 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 .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .email-form {
    padding: 20px;
  }
}

.contact .email-form input[type=text],
.contact .email-form input[type=email],
.contact .email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .email-form input[type=text]:focus,
.contact .email-form input[type=email]:focus,
.contact .email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .email-form input[type=text]::placeholder,
.contact .email-form input[type=email]::placeholder,
.contact .email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*######################################################################################################*/


/*----- contact in contact.html -----*/
#contact-section {
  padding: 20px;
  text-align: center;
  margin-top: 3vh;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.info-box {
  background-color: #ffffff; 
  color: #333;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.info-box:hover {
  background-color: #2f2d79; 
  color: #fff; 
}

.info-box i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #2f2d79; 
  transition: color 0.3s;
}

.info-box:hover i {
  color: #ffffff; 
}

.info-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.info-box:hover h3 {
  color: #ffffff; 
}

.info-box p {
  margin-bottom: 10px;
  font-size: 16px;
}

.info-box a {
  color: #2f2d79; 
  text-decoration: none; 
  transition: color 0.3s;
}

.info-box:hover a {
  color: #ffffff; 
  text-decoration: none; 
}

.form-container h2 {
margin-bottom: 10px;
color: #333;
}

.form-container p {
margin-bottom: 20px;
color: #666;
}

.form-cnt {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: 0 auto;
text-align: right;
}

form label {
display: block;
margin-bottom: 5px;
color: #333;
}

form input,
form textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 14px;
}

form button {
background-color: #2f2d79;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
}

form button:hover {
background-color: #241f5d;
}

.background-container {
background-image: url('../assets/img/feedback/feedback-bg.jpg');
background-size: cover; 
background-position: center; 
padding: 40px 20px; 
border-radius: 10px;
}

/*######################################################################################################*/

/* gallery */
.gallery-promo {
background: #f8f9fa;
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.promo-title {
color: #2a2a72;
font-size: 2.2rem;
font-weight: 700;
position: relative;
padding-right: 25px;
}

.promo-title::after {
content: '';
position: absolute;
right: 0;
top: 50%;
width: 15px;
height: 15px;
background: #ffd700;
border-radius: 3px;
transform: translateY(-50%);
}

.promo-text {
color: #4a4a4a;
line-height: 1.8;
}

.features-list li {
padding: 8px 0;
font-size: 1.1rem;
position: relative;
padding-right: 30px;
}

.features-list li::before {
content: "•";
color: #00bcd4;
font-size: 1.5rem;
position: absolute;
right: 0;
}

.brands-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
padding: 20px;
background: white;
border-radius: 12px;
box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.brand-item {
text-align: center;
padding: 15px;
transition: transform 0.3s ease;
}

.brand-item:hover {
transform: translateY(-5px);
}

.brand-item img {
width: 80px;
height: 80px;
object-fit: contain;
margin-bottom: 10px;
}

.brand-item span {
display: block;
color: #2a2a72;
font-weight: 600;
font-size: 0.95rem;
}

@media (max-width: 480px) {
.brands-grid {
  grid-template-columns: repeat(2, 1fr); 
}
}


/* ################################################################################## */
.blog-section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  .blog-section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global blog-section Titles
--------------------------------------------------------------*/
.blog-section-title {
  padding-bottom: 40px;
  position: relative;
}

.blog-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;
}

.blog-section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.blog-section-title div {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}
/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero {
  padding-top: 20px;
}

.blog-hero .blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .blog-hero .blog-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog-hero .blog-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease-in-out;
  background-color: var(--surface-color);
}

.blog-hero .blog-item:hover {
  transform: translateY(-5px);
}

.blog-hero .blog-item:hover img {
  transform: scale(1.05);
}

.blog-hero .blog-item:hover .blog-content {
  background: linear-gradient(0deg, color-mix(in srgb, var(--default-color), transparent 10%) 0%, transparent 100%);
}

.blog-hero .blog-item.featured {
  grid-column: span 8;
}

@media (max-width: 991px) {
  .blog-hero .blog-item.featured {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-item.featured {
    grid-column: span 1;
  }
}

.blog-hero .blog-item.featured .post-title {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .blog-hero .blog-item.featured .post-title {
    font-size: 1.5rem;
  }
}

.blog-hero .blog-item:not(.featured) {
  grid-column: span 4;
}

@media (max-width: 991px) {
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .blog-hero .blog-item:not(.featured) {
    grid-column: span 1;
  }
}

.blog-hero .blog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 16/9;
}

.blog-hero .blog-item .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(0deg, color-mix(in srgb, var(--default-color), transparent 20%) 0%, transparent 100%);
  transition: background 0.3s ease-in-out;
}

.blog-hero .blog-item .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--contrast-color);
}

.blog-hero .blog-item .post-meta .date,
.blog-hero .blog-item .post-meta .category {
  display: flex;
  align-items: center;
}

.blog-hero .blog-item .post-meta .date::before,
.blog-hero .blog-item .post-meta .category::before {
  font-family: "bootstrap-icons";
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-hero .blog-item .post-meta .date::before {
  content: "\f282";
}

.blog-hero .blog-item .post-meta .category::before {
  content: "\f5d3";
}

.blog-hero .blog-item .post-title {
  margin: 0;
  font-family: var(--heading-font);
}

.blog-hero .blog-item .post-title a {
  color: var(--contrast-color);
  text-decoration: none;
}

.blog-hero .blog-item .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

/*--------------------------------------------------------------
# Featured Posts Section
--------------------------------------------------------------*/
.featured-posts {
  overflow: hidden;
  position: relative;
}

.featured-posts .blog-posts-slider .swiper-wrapper {
  height: auto !important;
}

.featured-posts .blog-post-item {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-item {
    height: 450px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-item {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-item {
    height: 450px;
  }
}

.featured-posts .blog-post-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-posts .blog-post-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.featured-posts .blog-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: var(--contrast-color);
  z-index: 2;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-content {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-content {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content {
    padding: 30px;
  }
}

.featured-posts .blog-post-content .post-meta {
  margin-bottom: 15px;
  font-size: 14px;
}

.featured-posts .blog-post-content .post-meta span {
  display: inline-block;
  margin-right: 20px;
}

.featured-posts .blog-post-content .post-meta span i {
  margin-right: 5px;
  font-size: 16px;
}

.featured-posts .blog-post-content .post-meta span:last-child {
  margin-right: 0;
}

.featured-posts .blog-post-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .featured-posts .blog-post-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .featured-posts .blog-post-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content h2 {
    font-size: 22px;
  }
}

.featured-posts .blog-post-content h2 a {
  color: var(--contrast-color);
  transition: 0.3s;
}

.featured-posts .blog-post-content h2 a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  opacity: 0.9;
  
}

@media (max-width: 768px) {
  .featured-posts .blog-post-content p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }
}

.featured-posts .blog-post-content .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--contrast-color);
  font-weight: 500;
  transition: 0.3s;
}

.featured-posts .blog-post-content .read-more i {
  margin-left: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.featured-posts .blog-post-content .read-more:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-posts .blog-post-content .read-more:hover i {
  transform: translateX(5px);
}



/*--------------------------------------------------------------
# Latest Posts Section
--------------------------------------------------------------*/
.latest-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.latest-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.latest-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.latest-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.latest-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.latest-posts .title a:hover {
  color: var(--accent-color);
}

.latest-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.latest-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.latest-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.truncate-multi {
  display: -webkit-box;              
  -webkit-line-clamp: 2;             
  -webkit-box-orient: vertical;     
  overflow: hidden;                  
  text-overflow: ellipsis;           
  max-height: 3.2em;                 
  line-height: 1.6;                  
}

/* blog Details */
.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}
.article-content {
  white-space: pre-wrap;
}
.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}


.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}
.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-left: 15px;
}

.recent-posts-widget .post-item h6 {
  font-size: 15px;
  /* font-weight: bold; */
  margin-bottom: 5px;
  margin-left: 5px;
}

.recent-posts-widget .post-item h6 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h6 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%);
}

/* Blog Section Styling */
/* .blog-section {
  padding: 80px 0;
  background: #f8f9fa;
} */

.featured-blog-post {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  height: 430px;;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  height: 250px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card:hover .overlay {
  opacity: 1;
}

.blog-content {
  padding: 20px;
}

.category-badge {
  background: #26b1e6;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: #6c757d;
}

.post-title {
  font-family: 'Alexandria', sans-serif;
  color: #1a1a6e;
  margin-bottom: 15px;
}

.btn-read-more {
  color: #2f2d79;
  border: 2px solid #2f2d79;
  padding: 8px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background: #2f2d79;
  color: #fff;
}

.btn-view-all {
  background: #1a1a6e;
  color: #fff;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-view-all:hover {
  transform: translateY(-3px);
  color: #fff;
}

.author-info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 10px;
}