/* Font face definition */
@font-face {
  font-family: "Futura";
  src: url('font/Futura-Medium.woff2') format('woff2'),
       url('font/Futura-Medium.woff') format('woff'),
       url('font/Futura-Medium.ttf') format('truetype'),
       url('font/Futura-Medium.eot'); /* Add fallback formats */
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Helps in rendering the font faster */
}

/* Smooth scroll */
:root {
  scroll-snap-stop: always;
}

body {
  color: black;
  background-color: white;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
  -webkit-font-smoothing: antialiased; /* Improves font rendering on mobile */
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure font-family is applied to all elements */
* {
    font-family: "Futura", "Trebuchet MS", Arial, sans-serif; 
}

a {
  color: #FFD700;
  text-decoration: none;
  transition: 0.3s;
}

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



/*
#  Header*/

.header.transparent {
  background: linear-gradient(to right, rgba(255, 215, 0, 0.5), rgba(184, 134, 11, 0.5), rgba(255, 255, 255, 0.5), rgba(255, 215, 0, 0.5)) !important; /* Adjust gradient colors with transparency */
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: linear-gradient(to right, #FFD700, #B8860B, #FFFFFF, #FFD700) !important; /* Adjust color as needed */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

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

.header {
  color: gray;
  background: linear-gradient(to right, #FFD700, #B8860B, #FFFFFF, #FFD700);
  background-size: 200% 200%;
  animation: gradientAnimation 5s ease infinite;

  @keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


.header .logo img {
  max-height: 45px;
  margin-right: 10px;
}

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

.header .logo span {
  color: var(--accent-color);
  font-size: 26px;
  font-weight: 700;
}

.header .header-social-links {
  padding: 0 0 0 15px;
}

.header .header-social-links a {
  color: blue;
  padding-left: 10px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

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

.header .header-social-links a i {
  line-height: 0px;
}

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

  .header .logo h1 {
    font-size: 24px;
  }

  .header .header-social-links {
    order: 2;
    padding: 0 15px 0 0;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000000;
    padding: 18px 15px;
    font-size: 14px;
    font-family: "Futura", "Trebuchet MS", Arial, sans-serif; 
    text-transform: uppercase;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-decoration: none; /* Removes the underline */
  }

  .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: gold;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: white;
    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: black;
  }

  .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: white;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  /* Navigation Menu Enhancements */
  .navmenu a {
    position: relative;
    color: #000;
    padding: 18px 15px;
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
  }

  /* Underline effect on hover */
  .navmenu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgb(0, 0, 0), black, rgb(0, 0, 0));
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  }

  .navmenu a:hover::after {
    width: 100%;
    left: 0;
  }

  /* Hover Effect */
  
  .navmenu a:hover {
    color: gold;
    background: linear-gradient(90deg, rgb(8, 8, 8), black, rgb(0, 0, 0));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Active State - Keeps underline and color */
  .navmenu .active {
    color: black !important;
    font-weight: normal;
  }

  .navmenu .active::after {
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, rgb(26, 25, 25), black, rgb(34, 37, 6));
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #131212;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: sticky;
    inset: 50px 40px 40px 40px;
    padding: 10px 0;
    margin: 0;
    border-radius: 0;
    background-color: #ffffff;
    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: "Futura", "Trebuchet MS", Arial, sans-serif;
    font-size: 30px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 30px;
    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, black, transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: black;
    color: black;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: black;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: white;
    color: black;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: white;
    border: 1px solid color-mix(in srgb, black, 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(8, 8, 8, 0.03);
  }

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

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgb(228 213 137 / 80%);
    transition: 0.3s;
  }

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

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

  .header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
  }

  .social-icons-mobile {
    padding: 10px 0 20px;
  }

  .social-icons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Adjust spacing between icons */
  }

  .social-icons-wrapper a {
    font-size: 30px; /* Make icons slightly larger if needed */
    color: #0920bb;
    transition: color 0.3s;
  }

  .social-icons-wrapper a:hover {
    color: black;
  }
}



/*footer*/
.footer {
  color: white;
  background-color: black;
  font-size: 14px;
  position: relative;
  padding: 20px 0;
  font-weight: normal;
}

/* Footer Container Layout */
.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, white, transparent 90%);
  display: flex;
  flex-direction: column; 
}

/* Align Everything to the Left */
.footer .footer-about {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align all content to the left */
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

/* Logo */
.footer .footer-about .logo img {
  max-height: 70px;
}

/* Contact Information */
.footer .footer-contact {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.footer .footer-contact p {
  margin: 0;
}

.footer .footer-contact strong {
  font-weight: normal;
  font-size: 18px;
    font-family: "Futura", "Trebuchet MS", Arial, sans-serif;

}

/* Social Icons - Moved to the Left */
.footer .social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, rgb(255, 255, 255), transparent 20%);
  font-size: 16px;
  color: color-mix(in srgb, rgb(255, 255, 255), transparent 20%);
  transition: 0.3s;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;

}

.footer .social-links a:hover {
  color: gold;
  border-color: gold;
}

/* Footer Links Wrapper */
.footer-links-container {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid color-mix(in srgb, white, transparent 70%);
  margin-bottom: 10px;
}

.footer .footer-links-inline {
  display: inline-block;
}

.footer .footer-links-inline a {
  margin: 0 15px;
  color: color-mix(in srgb, white, transparent 30%);
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
}

.footer .footer-links-inline a:hover {
  color: gold;
}

/* Copyright Section */
.footer .copyright {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid color-mix(in srgb, white, transparent 90%);
}

.footer .copyright-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
}

/* Responsive: Stack elements for small screens */
@media (max-width: 768px) {
  .footer .footer-about {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer .social-links {
    justify-content: center;
    margin-top: 10px;
    
  }
  
    .footer .footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-top: 10px;
  }

  .footer .footer-links-inline a {
    margin: 0;
    font-size: 15px;
  }

}



/*Scroll Top Button*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffcc00, #FFD700, #C9A02D, #8B7500);
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
  cursor: pointer;
}

/* Scroll Top Icon */
.scroll-top i {
  font-size: 24px;
  color: white;
  transition: transform 0.3s ease-in-out;
}

/* Gradient Hover Effect */
.scroll-top:hover {
  background: linear-gradient(135deg, #FFD700, #C9A02D, #8B7500, #3d2b1f);
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

/* Rotate Icon Slightly on Hover */
.scroll-top:hover i {
  transform: translateY(-3px);
}

/* Show the Scroll Top Button */
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*page title*/
.page-title {
  color: white;
  padding: 10px 0;
  position: relative;
  background: linear-gradient(270deg, #e4d61b, #111111, #d4af37, #000);
  background-size: 400% 400%;
  animation: moving-gradient 8s infinite linear alternate;
}

.page-title h1 {
  font-size: 24px;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
  font-weight: normal !important; /* Ensures it's not bold */
}

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


/*Sections*/
section,
.section {
  color: black;
  background-color: white;
  scroll-margin-top: 100px;
  overflow: clip;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
    padding-left: 0;
    padding-right: 0;
  }
}

/*Titles*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: white;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

 /*Hero Section*/
.hero {
  padding: 0;
  background: rgba(0, 0, 0, 0.5); /* Add a grayish overlay */
  position: relative;
}

/* Ensures full viewport height while adjusting for header */
.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 75px);
  padding: 0;
  margin: 0;
  position: relative;
}

/* Adjust for smaller screens */
@media (max-width: 1200px), (max-height: 500px) {
  .hero .carousel {
    min-height: calc(100vh - 48px);
  }
}

.hero img, 
.hero video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(30%); /* Darken the image further for better readability */
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

/* Content box */
.hero .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 50px;
  color: white;
  border-radius: 8px;
  max-width: 80%;
  z-index: 3;
}

/* Centering container on smaller screens */
@media (max-width: 1200px) {
  .hero .container {
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    max-width: 90%;
  }
}

/* Fading Text Animation */
.hero h2 {
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  animation: fadeIn 3s ease-in-out forwards;
  user-select: none;
  outline: none;
}

/* Adjust font size for smaller screens */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Paragraph Styling */
.hero p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  max-width: 80%;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 4s ease-in-out forwards;
  user-select: none;
  outline: none;
}

/* Adjust paragraph size on mobile */
@media (max-width: 768px) {
  .hero p {
    font-size: 16px;
    max-width: 90%;
  }
}

/* Button Styling */
.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 36px;
  transition: 0.5s;
  margin-top: 15px;
  border-radius: 6px;
  color: #fff;
  border: 2px solid #FFD700;
  background: linear-gradient(135deg, #ffcc00, #FFD700, #C9A02D, #8B7500);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5);
}

/* Button Hover Animation */
.hero .btn-get-started:hover {
  background: #d4af37;
  color: #000;
  transform: scale(1.05);
}

/* Button Gradient Hover Effect */
.hero .btn-get-started::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3), transparent);
  transition: all 0.4s ease-in-out;
}

.hero .btn-get-started:hover::before {
  left: 100%;
}

/* Adjust button size for mobile */
@media (max-width: 768px) {
  .hero .btn-get-started {
    font-size: 14px;
    padding: 10px 28px;
  }
}

/* Carousel controls */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

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

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Adjust carousel controls for mobile */
@media (max-width: 768px) {
  .hero .carousel-control-next-icon,
  .hero .carousel-control-prev-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

/* Carousel indicators */
.hero .carousel-indicators li {
  cursor: pointer;
  background: white;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: gold;
  width: 30px; /* Change width to create a line effect */
  border-radius: 5px; /* Adjust border-radius for a line shape */
}


/*About Section*/
#about.about {
  background-color: #ffffff !important; /* Force white background */
  padding: 40px;
  line-height: 1.8;
  color: #000000; /* Dark gray for readability */
  font-size: 16px; /* Standard font size */
  margin-left: 0; /* Remove left margin */
  margin-right: 0; /* Remove right margin */
}

#about.about p {
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
  font-weight: normal !important; /* Ensures it's not bold */
}

.about .inner-title {
  font-weight: bold; /* Try normal weight instead of bold */
  margin-bottom: 30px;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
  text-transform: uppercase;

}

.about .content-section {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  margin-left: 0;
  margin-right: 0;
}

.about .about-img {
  vertical-align: middle;
  text-align: center;
  border-style: none;
  margin: 0; /* Ensure no margin is applied */
  padding: 0; /* Ensure no padding is applied */
}




/* Logo container */
.about-logo-container {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Heartbeat logo */
.heartbeat-logo {
  width: 300px;
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-logo-container {
    height: 200px;
  }

  .heartbeat-logo {
    width: 150px;
  }
  
    .about .inner-title {
    font-size: 2rem;
  }

}



.about .about-img img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensures the image scales properly */
  position: relative; /* Set position to relative */
  left: 0;
  top: 0;
  transform: translate(0, 0); /* Reset any transformations */
  vertical-align: middle;
  margin: 0; /* No margin for the image */
  padding: 0; /* No padding for the image */
}

@media (max-width: 768px) { /* For mobile view */
  /* Remove padding and margin on the entire #about section */
  #about.about {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .about .content-section {
    flex-direction: column; /* Stack image and text vertically */
    padding-left: 0; /* Remove padding on the left */
    padding-right: 0; /* Remove padding on the right */
    margin-left: 0; /* Remove margin on the left */
    margin-right: 0; /* Remove margin on the right */
  }

  .about .about-img,
  .about .text-content {
    flex: 1;
    width: 100%; /* Full width for smaller screens */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
  }

  .about .about-img img {
    height: auto; /* Adjust image height dynamically */
    object-fit: cover;
  }
}

@media (min-width: 992px) {
  .about .content-section {
    flex-wrap: nowrap;
  }
}

.about .content-section.flex-row-reverse {
  flex-direction: row-reverse;
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: black;
}

.about .watch-video a {
  font-weight: 600;
  color: black;
  margin-left: 8px;
  transition: 0.3s;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
}

.about .watch-video:hover a {
  color: white;
}



/* Read More Button */
.read-more-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(90deg, #FFD700, #B8860B);
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.read-more-btn:hover {
  background: linear-gradient(90deg, #B8860B, #FFD700);
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


/* Services Section */
.services {
  padding: 80px 0;
  background: url('background-image.jpg') no-repeat center center/cover;
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.inner-title {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

/* Service Cards */
.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  color: white;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.service-card i {
  font-size: 40px;
  color: #FFD700;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: bold;
}

.service-card p {
  font-size: 16px;
  opacity: 0.9;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.3);
}

/* More Services Button */
.btn-modern {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(90deg, #FFD700, #B8860B);
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-modern:hover {
  background: linear-gradient(90deg, #B8860B, #FFD700);
  transform: translateY(-2px);
  color: black;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}





/* Clients Section */
.clients {
  background-color: white;
  padding: 60px 0;
}

.clients h2 {
  text-align: center;
  color: gold;
  margin-bottom: 40px;
}

.clients-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.client-logo {
  width: 120px;
  height: 80px; /* Fixed height for consistency */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: white; /* Optional: clean background */
  border-radius: 8px;
  overflow: hidden;         /* Prevent overflow distortion */
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

@media (max-width: 768px) {
  .clients-wrap {
    gap: 20px;
    justify-content: center;
  }
  
    .clients h2 {
    font-size: 1.5rem; /* Adjust as needed (e.g. 24px = 1.5rem) */
    margin-bottom: 20px;
  }


  .client-logo {
    width: 100px;
    height: 70px;
    padding: 8px;
  }

  .client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}





/* Portfolio Modal */
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}


/* Modern Team Section */
.team {
  text-align: center;
  padding: 50px 0;
}


.team .section-title p {
  font-size: 16px;
  color: #000000; /* Pure black */
  text-shadow: none; /* Ensures no shadow effect */
}


/* Team Member Card Container */
.team .team-member {
  perspective: 1000px;
  width: 100%;
  max-width: 400px; /* Larger for readability */
  height: 500px; /* Increased height */
  margin: 20px auto;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Inner Flip Effect */
.team .card-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}

/* Flip Effect on Hover (Desktop) & Click (Mobile) */
.team .team-member:hover .card-inner,
.team .team-member.flip .card-inner {
  transform: rotateY(180deg);
}

/* Front & Back Side */
.team .card-front,
.team .card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Front Design */
.team .card-front {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

/* Profile Image */
.team .card-front .member-img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.team .card-front .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: auto;
}



/* Member Info */
.team .card-front .member-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
  color: #000000;
}

.team .card-front .member-info span {
  font-size: 16px;
  opacity: 0.9;
}

/* Back Side (Detailed Bio) */
.team .card-back {
  background: rgba(0, 0, 0, 0.9);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px;
  color: #ffffff;
  text-align: left;
  overflow-y: auto;
}

/* Back Side (Detailed Bio) */
.team .card-back h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff; /* Ensures white text on dark background */
}

.team .card-back span {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.team .card-back p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Ensure Full Responsiveness */
@media (max-width: 768px) {
  .team .team-member {
    width: 100%;
    max-width: 350px;
    height: 450px;
  }

  .team .card-front,
  .team .card-back {
    padding: 20px;
  }

  .team .card-front .member-img {
    width: 120px;
    height: 120px;
  }

  .team .card-front .member-info h4 {
    font-size: 20px;
  }

  .team .card-front .member-info span {
    font-size: 14px;
  }

  .team .card-back p {
    font-size: 14px;
  }
}

/* Contact Info Section Styling */
.contact-info {
  position: relative;
  text-align: center;
  padding: 80px 0;
  color: #000; /* Black text */
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
  background: linear-gradient(270deg, #fff8e1, #ffffff, #d4af37, #000);
  background-size: 400% 400%;
  animation: moving-gradient 8s infinite linear alternate;
}

/* Moving Gradient Animation */
@keyframes moving-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.contact-info h2 {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* New Contact Button */
.contact-link-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Button Hover Animation */
.contact-link-btn:hover {
  background: #d4af37;
  color: #000;
  transform: scale(1.05);
}

/* Button Gradient Hover Effect */
.contact-link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3), transparent);
  transition: all 0.4s ease-in-out;
}

.contact-link-btn:hover::before {
  left: 100%;
}


/* Features Section */
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
}

/* Section Title */
.section-title {
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgb(0, 0, 0);
}

.section-title h2 {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
}

.section-title p {
  font-size: 20px;
  max-width: 600px;
  line-height: 1.8;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
}

/* Features Container */
.features .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1300px;
  padding: 0 20px;
}

/* Feature Item */
.features .features-item {
  background: rgba(255, 255, 255, 0.15); /* Light transparency but no blur */
  backdrop-filter: none; /* Disable blur */
  border-radius: 15px;
  padding: 20px;
  width: 260px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
  color: #ffffff;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  flex: 0 1 260px; /* Flexbox property to ensure consistent width */
  min-height: 120px; /* Set a minimum height for uniform box size */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Make sure hover does not add blur */
.features .features-item:hover .feature-desc {
  opacity: 1;
  height: auto;
  backdrop-filter: none; /* Ensure no additional blur is applied */
}

/* Hover Effect */
.features .features-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Icons */
.features .features-item i {
  font-size: 40px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

/* Scale Icon on Hover */
.features .features-item:hover i {
  transform: scale(1.2);
}

/* Headings */
.features .features-item h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;
  font-family: "Futura", "Trebuchet MS", Arial, sans-serif;
  color: gold;
}

/* Default Hidden Feature Description */
.features .features-item .feature-desc {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease;
  font-size: 16px;
  margin-top: 10px;
}

/* Show on Hover (For Desktop) */
.features .features-item:hover .feature-desc {
  opacity: 1;
  height: auto;
}

/* Fix Tap Behavior on Mobile */
.features .features-item.active .feature-desc {
  opacity: 1;
  height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features .container {
    flex-direction: column;
    align-items: center;
  }

  .features .features-item {
    width: 90%; /* Take up most of the screen width */
    max-width: 300px; /* Limit max width for larger screens */
  }
}

@media (max-width: 768px) {
  .features .features-item {
    width: 100%; /* Full width on smaller screens */
    max-width: 100%; /* Ensure full use of screen */
  }
}




/* 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: inline-block;
  padding: 10px 15px;
  border: 2px solid transparent; /* Ensures smooth transition */
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: var(--heading-color); /* Default text color */
  font-weight: 600;
  border-radius: 5px; /* Rounded edges for a modern look */
}

/* Hover effect with gold gradient */
.service-details .services-list a:hover {
  background: linear-gradient(90deg, #FFD700, #FFC107) !important; /* Gold gradient */
  color: #fff !important; /* White text for contrast */
  border-color: #FFD700 !important; /* Gold border */
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5); /* Soft glow effect */
  transform: scale(1.05); /* Slight zoom effect */
}

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

/* Service images */
.service-details .services-img {
  margin-bottom: 20px;
}

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

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

/* Paragraphs */
.service-details p {
  font-size: 15px;
}

/* Lists */
.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

/* Icons inside lists */
.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service-details .services-list {
    padding: 10px 20px;
  }

  .service-details .services-list a {
    display: block; /* Full width on mobile */
    text-align: center;
    margin-bottom: 10px;
  }
}




/*Portfolio Details Section*/
#portfolio .portfolio-item {
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}
#portfolio .portfolio-item .portfolio-link {
  position: relative;
  display: block;
  margin: 0 auto;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 200, 0, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity ease-in-out 0.25s;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
  font-size: 1.25rem;
  color: white;
}
#portfolio .portfolio-item .portfolio-link:hover .portfolio-hover {
  opacity: 1;
}
#portfolio .portfolio-item .portfolio-caption {
  padding: 1.5rem;
  text-align: center;
  background-color: #fff;
}
#portfolio .portfolio-item .portfolio-caption .portfolio-caption-heading {
  font-size: 1.5rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  margin-bottom: 0;
}
#portfolio .portfolio-item .portfolio-caption .portfolio-caption-subheading {
  font-style: italic;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.portfolio-modal .modal-dialog {
  margin: 1rem;
  max-width: 100vw;
}
.portfolio-modal .modal-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}
.portfolio-modal .modal-content h2, .portfolio-modal .modal-content .h2 {
  font-size: 3rem;
  line-height: 3rem;
}
.portfolio-modal .modal-content p.item-intro {
  font-style: italic;
  margin-bottom: 2rem;
  font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.portfolio-modal .modal-content p {
  margin-bottom: 2rem;
}
.portfolio-modal .modal-content ul.list-inline {
  margin-bottom: 2rem;
}
.portfolio-modal .modal-content img {
  margin-bottom: 2rem;
}
.portfolio-modal .close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  background-color: transparent;
}
.portfolio-modal .close-modal:hover {
  opacity: 0.3;
}


.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

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

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

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

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

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

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

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

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

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

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

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



/*Modern Contact & Comment Form Section with Pastel Gradient Background*/

.comment-form {
  padding-top: 10px;
  animation: fadeInUp 0.6s ease-out;
}

/* Moving Pastel Gradient Background */
.contact {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffdde1, #d4fc79, #a1c4fd, #ffdde1);
  background-size: 400% 400%;
  animation: moving-gradient 8s infinite linear alternate;
  color: #000000;
  animation: fadeIn 1s ease-out;
}

/* Moving Gradient Animation */
@keyframes moving-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.comment-form form {
  background: rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  animation: scaleIn 0.5s ease-in-out;
}

.comment-form form input,
.comment-form form textarea {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 14px;
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s;
}

.comment-form form input:focus,
.comment-form form textarea:focus {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.comment-form form .btn-primary {
  border-radius: 8px;
  padding: 12px 20px;
  border: none;
  background: linear-gradient(45deg, #ffd700, #ffb300);
  color: #000;
  font-size: 16px;
  transition: 0.3s;
}

.comment-form form .btn-primary:hover {
  background: linear-gradient(45deg, #ffb300, #ffd700);
}

.map-container iframe {
  border-radius: 12px;
  filter: brightness(90%) contrast(1.2);
  transition: transform 0.3s;
}

.map-container iframe:hover {
  transform: scale(1.02);
}

.info-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.info-box:hover {
  transform: translateY(-5px);
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.5s ease-in-out;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: rgb(0, 0, 0);
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s;
}

.contact-form textarea {
  height: 150px;
}

.submit-btn {
  background: linear-gradient(45deg, #ffd700, #ffb300);
  border: none;
  padding: 12px 30px;
  color: #000;
  font-size: 16px;
  border-radius: 8px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(45deg, #ffb300, #ffd700);
}

/* Fade-in and Scale Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  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 input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

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

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

