@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Manrope:wght@200..800&family=Outfit:wght@100..900&display=swap');

:root {
  --primary-gradient: linear-gradient(90deg, #29B6C8, #32BC8B);
  --text-light: #e0e0e0;
  --border-color: #2C2B2B;
}

/* Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}


body{
  padding-left: 2vw;
  padding-right: 2vw;
}

@media (max-width: 768px) {
  body {
    padding-left: 15px;
    padding-right: 15px;
  }
}
html, body {
  height: 100%;
  overflow-x: hidden;
}

* ,*::before, *::after {
  box-sizing: border-box;
}

.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .content {
    width: 100%;
  }
}

/* Header & Navbar */
.header {
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  padding: 15px 0;
  background: transparent !important;
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Brand Logo & Text */
.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo {
  width: 90px;
  height: auto;
  transition: transform 0.3s ease;
}

.brand-logo-container:hover .logo {
  transform: scale(1.08);
  filter: brightness(1.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0;
  line-height: 1;
  margin-bottom: -0.1rem;
}

.brand-tagline {
  color: var(--text-light);
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  margin: 0;
  line-height: 1.2;
  margin-top: 0.2rem;
}

/* Navigation Links */
.navbar-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  position: relative;
  color: #32BC8B;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-decoration: none;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  height: 2px;
  background: #32BC8B;
  width: 0;
  left: 50%;
  bottom: 0;
  transition: 0.4s;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: #29B6C8 !important;
}


.navbar-nav .nav-link:not(.active) {
  color: #32BC8B !important;
}


/* Button */
.btn-gradient {
  background: linear-gradient(90deg, #17A191, #29B6C8, #32BC8B);
  color: #000 !important;
  padding: 10px 24px;
  border-radius: 4px 20px;
  border: none;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(41, 182, 200, 0.5),
              0 6px 30px rgba(50, 188, 139, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(41, 182, 200, 0.8),
              0 8px 35px rgba(50, 188, 139, 0.6);
}

.btn-gradient:active {
  transform: scale(0.96);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    padding: 1rem 0;
  }

  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 0 1rem 1rem;
  }

  .nav-link {
    padding-left: 0 !important;
    width: 100%;
  }

  .d-flex {
    justify-content: flex-start;
    width: 100%;
    padding-top: 1rem;
  }
}

@media (max-width: 576px) {
  .logo {
    width: 70px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-tagline {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 1.2rem;
  }

  .brand-tagline {
    font-size: 0.55rem;
  }
}
/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  background-image: url('Images/Agela Hero Image 1.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 75px 20px;
  margin-top: -25px;
  margin-bottom: -50px;
}

/* Content Container */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 902px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

/* Typography */
.hero-title {
  font-size: clamp(28px, 6vw, 56px);
  letter-spacing: 0.05em;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  line-height: 1.2;
  color: #F0F0F0;
  margin-bottom: 40px;
  margin-top: 40px;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  max-width: 700px;
  margin: 0 auto 40px;
  font-family: "Manrope", sans-serif;
  color: #F0F0F0;
  line-height: 1.6;
}

/* Button */
.btn-gradient2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #17A191, #29B6C8, #32BC8B);
  padding: 14px 122px;
  margin-top: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  border-radius: 4px 20px;
  box-shadow: 0 0 20px rgba(41, 182, 200, 0.4);
  text-decoration: none;
  font-size: 16px;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              background 0.3s, 
              box-shadow 0.3s;
}

.btn-gradient2:hover {
  background: linear-gradient(90deg, #32BC8B, #29B6C8, #17A191);
  box-shadow: 0 0 25px rgba(41, 182, 200, 0.6);
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScaleUp {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes rotateIn {
  0% { opacity: 0; transform: rotateX(-90deg); }
  100% { opacity: 1; transform: rotateX(0deg); }
}

.hero-title span,
.hero-subtitle span {
  display: inline-block;
  opacity: 0;
  transform-origin: top;
  animation: rotateIn 1s ease forwards;
}

.hero-title span { animation-delay: 0.3s; }
.hero-subtitle span { animation-delay: 0.9s; }

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero-section {
    padding: 30px 16px; /* Reduced from 60px to 30px vertically */
    min-height: auto;   /* Let content determine height on mobile */
    margin-top: -10px;  /* Optional: lessen margin compression */
    margin-bottom: -30px;
  }

  .hero-content {
    padding: 30px 16px; /* Slightly reduced */
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .btn-gradient2 {
    padding: 12px 32px;
    font-size: 15px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .btn-gradient2 {
    padding: 12px 24px;
    font-size: 14px;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn-gradient2 {
    font-size: 14px;
    padding: 12px 24px;
    max-width: 260px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .btn-gradient2 {
    font-size: 13px;
    padding: 12px 20px;
    max-width: 240px;
  }
}

/* Services Section Styles */
.services-section {
  padding: 55px 20px;
  background: #000;
  color: #F0F0F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.servicesection-title {
  font-family: "EB Garamond", serif;
  font-size: 62px !important;
  font-weight: 800;
  margin-bottom: 45px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columns for precise placement */
  gap: 40px 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* First row: 3 cards */
.services-grid .service-card:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1;
  margin-top: 40px; /* Added margin-top */
}

.services-grid .service-card:nth-child(2) {
  grid-column: 3 / span 2;
  grid-row: 1;
  margin-top: 40px; /* Added margin-top */
}

.services-grid .service-card:nth-child(3) {
  grid-column: 5 / span 2;
  grid-row: 1;
  margin-top: 40px; /* Added margin-top */
}

/* Second row: 2 cards centered with margin-top */
.services-grid .service-card:nth-child(4) {
  grid-column: 2 / span 2;
  grid-row: 2;
  margin-top: 40px; /* Added margin-top */
}

.services-grid .service-card:nth-child(5) {
  grid-column: 4 / span 2;
  grid-row: 2;
  margin-top: 40px; /* Added margin-top */
}

/* Adjusted card max-width for slightly larger cards */
.service-card {
  background-color: #174B6E;
  padding: 30px 20px;
  font-family: "Manrope", sans-serif;
  text-align: center;
  color: #FFFFFF;
  border-radius: 15px;
  transition: transform 0.3s;
  max-width: none; /* or increase to 400px, 500px etc. */
  width: 100%;
  max-height: 365px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(41, 182, 200, 0.6); /* soft glow with your color */
}


.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 16px;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Responsive Layout */
@media (max-width: 1023px) {
  .services-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

   .servicesection-title {
    font-size: 62px;
    margin-bottom: 45px;
  }

  .service-card {
    max-width: 100%;
    margin-top: 0 !important; /* Remove margin-top on mobile */
  }
}


@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
   .servicesection-title {
    font-size: 36px !important;
    margin-bottom: 40px;
  }

  .service-card {
    padding: 24px 16px;
    margin-bottom: 10px;
  }

@media (max-width: 768px) {
  .services-wrapper {
    padding: 0 10px;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .servicesection-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }
}


/* Tablet/Mobile */
@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .service-card {
    padding: 20px 16px;
    height: auto; /* Let height adjust naturally */
  }
}
@media (max-width: 576px) {
 
  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }
}



/* Button styles (unchanged) */
.btn-gradient3 {
  
  position: relative;
  display: inline-block;
  margin-top: 85px;
  padding: 14px 122px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1.3px;
  line-height: 27.2px;
  color: #fff;
  border-radius: 4px 20px 4px 20px;
  border: 4px solid transparent;
  background-color: transparent;
  z-index: 1;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother easing */
  box-shadow: 0 8px 20px rgba(23, 161, 145, 0.5);
  transform: scale(1);
  will-change: transform; /* Optimize animations */
}

.btn-gradient3::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(270deg, #17A191, #29B6C8, #32BC8B);
  border-radius: 4px 20px 4px 20px;
  z-index: 0;
  mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  transition: inherit; /* Inherit main transition */
}

.btn-gradient3 span {
  position: relative;
  z-index: 1;
  display: inline-block; /* Better for scaling */
  transition: inherit;
}

/* Remove underline effect completely */
.btn-gradient3::after {
  display: none;
}

/* Enhanced hover effects */
.btn-gradient3:hover {
  color: #fff;
  transform: scale(1.1); /* Stronger zoom effect */
  text-decoration: none !important;
  box-shadow: 
    0 12px 25px rgba(23, 161, 145, 0.6), /* Enhanced shadow */
    0 0 15px rgba(255, 255, 255, 0.3); /* Added glow */
}

/* Force no underline in all states */
a.btn-gradient3,
a.btn-gradient3:hover,
a.btn-gradient3:focus,
a.btn-gradient3:active,
a.btn-gradient3:visited {
  text-decoration: none !important;
  outline: none;
}

@media (max-width: 768px) {
  .btn-gradient3 {
    padding: 12px 40px; /* Reduced horizontal padding */
    font-size: 14px;
    margin-top: 50px; /* Optional: reduce spacing above */
  }
}

@media (max-width: 480px) {
  .btn-gradient3 {
    padding: 10px 24px;
    font-size: 13px;
    margin-top: 30px;
  }
}

      
/* About Section Styles */
/* About Section Styles */
.about-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  overflow: visible;
  border-radius: 30px;
  margin-top: 70px;
  box-sizing: border-box;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: calc(100% + 80px);
  background:
    radial-gradient(at 80% 20%, rgba(41, 182, 200, 0.3) 0%, transparent 70%),
    radial-gradient(at 20% 30%, rgba(50, 188, 139, 0.3) 0%, transparent 70%),
    radial-gradient(at 60% 80%, rgba(50, 188, 139, 0.3) 0%, transparent 70%),
    radial-gradient(at 30% 70%, rgba(41, 182, 200, 0.3) 0%, transparent 70%),
    radial-gradient(at 50% 50%, rgba(41, 182, 200, 0.3) 0%, transparent 70%);
  opacity: 1;
  filter: blur(100px);
  z-index: 0;
  border-radius: 0;
  pointer-events: none;
}

.about-title,
.about-description,
.about-grid {
  position: relative;
  z-index: 1;
}

.about-title {
  font-family: "EB Garamond", serif;
  font-size: 62px;
  color: #F0F0F0;
  font-weight: 800;
  margin-top: -10px;
  margin-bottom: 70px;
  padding: 0 20px;
}

.about-description {
  max-width: 1000px;
  margin: 0 auto 60px auto;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #FFFFFF;
  padding: 0 20px;
  margin-bottom: 70px;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reduced from 30px */
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}


.about-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0; /* reset margin */
}

.about-item {
  flex: 0 1 calc(50% - 10px);
  max-width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0; /* reset margin */
}

.about-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 10px;
  animation: subtleFloat 4s ease-in-out infinite;
}

@keyframes subtleFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.about-item-title {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  margin-top: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-title {
    font-size: 48px;
  }
  
  .about-item {
    flex: 0 1 100%;
    max-width: 100%;
  }
  
  .about-icon {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 36px;
  }
  
  .about-description {
    font-size: 14px;
    margin-bottom: 40px;
  }
  
  .about-icon {
    width: 180px;
    height: 180px;
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .about-section {
    padding: 40px 16px;
    margin-top: 40px;
  }

  .about-grid {
    gap: 10px;
  }

  .about-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-icon {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .about-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .about-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
  }

  .about-item-title {
    font-size: 15px;
  }

  .about-grid {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 28px;
    padding: 0 10px;
  }

  .about-description {
    font-size: 14px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .about-icon {
    width: 70px;
    height: 70px;
  }

  .about-item-title {
    font-size: 14px;
  }

  .about-grid {
    gap: 16px;
  }
}


/* Clients Section */
.clients-section {
  padding: 60px 40px; /* Increased horizontal padding */
  text-align: center;
}


.clientsection-title {
  font-size: 62px;
  font-family: "EB Garamond", serif;
  font-weight: bold;
  color: #F0F0F0;
  margin-bottom: 40px;
  letter-spacing: 5%;
  margin-bottom: 80px;
}

.cards-container {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  gap: 50px;
  font-family:  "Manrope", sans-serif;
  font-size: 18px;
  font-weight: bold;
  flex-wrap: nowrap;

}

.client-card {
  background: #2C2B2B;
  border-radius: 15px;
  font-family: "Manrope", sans-serif;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  padding: 20px;
  width: 345px;
  height: 445px;
  box-shadow: 
  0 -5px 40px rgba(23, 75, 110, 0.3), /* Top shadow (174B6E with 50% opacity) */
  0 20px 40px rgba(41, 182, 200, 0.3); /* Bottom shadow (29B6C8 with 50% opacity) */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}


.client-card:hover {
  transform: translateY(-10px);
}

.stars { 
  margin: auto 0 10px 0; /* Push stars lower by taking up free vertical space */
  display: flex;
  font-size: 2rem;
  color: #FFA500;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.client-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

@media (max-width: 1100px) {
  .cards-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .client-card {
    width: 90%;
    max-width: 320px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 30px 10px; /* Reduced padding */
  }
  .clientsection-title {
    font-size: 36px;
    margin-top: 5px;
    margin-bottom: 30px;
    padding-top: 0px;
  }

  .cards-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 5px;
  }

  .client-card {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 576px) {
  .clientsection-title {
    font-size: 32px;
     margin-top: 10px;
     margin-bottom: 30px;
    padding-top: 0px;
  }

  .client-card {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .clientsection-title {
    font-size: 28px;
  }

  .client-card {
    width: 100%;
    max-width: 280px;
    height: auto;
  }
}
@media (max-width: 360px) {
  .clientsection-title {
    font-size: 24px;
  }

  .client-card {
    width: 100%;
    max-width: 260px;
    height: auto;
  }
}

 /* Let's Talk Section */
.talk-section {
  padding: 60px 20px;
  text-align: center;
}

.talk-title {
  font-family: "EB Garamond", serif;
  font-size: 62px;
  letter-spacing: 5%;
  margin-bottom: 50px;
}

.talk-subtitle {
  font-family: "EB Garamond", serif;
  font-size: 42px;
  letter-spacing: 5%;
  margin-bottom: 5px;
  font-weight: bold;
}

.talk-description {
  font-family: "Manrope", sans-serif;
  margin-bottom: 50px;
  font-size: 16px;
}

.talk-button {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #00f0ff, #00ffaa);
  border: none;
  padding: 14px 122px;
  border-radius: 4px 20px 4px 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 20px; /* reduced space below */
  cursor: pointer;
  color: #000;
  overflow: hidden;
  transition: all 0.3s ease; 
  box-shadow: 0 8px 20px rgba(23, 161, 145, 0.5);
  z-index: 1;
  transform: scale(1); 
  text-decoration: none !important;
}


/* Gradient shadow under the text */
.talk-button::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #00f0ff, #00ffaa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}

/* Remove the underline effect completely */
.talk-button::before {
  display: none;
}

/* Hover effects */
.talk-button:hover {
  background: linear-gradient(90deg, #00ffaa, #00f0ff);
  color: #000;
  transform: scale(1.1); /* Zoom effect */
  text-decoration: none !important;
}

/* Force no underline in all states */
a.talk-button,
a.talk-button:hover,
a.talk-button:focus,
a.talk-button:active,
a.talk-button:visited {
  text-decoration: none !important;
  outline: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  .talk-section {
    padding: 20px 10px;
  }
  .talk-title {
    font-size: 36px;
    margin-top: 0px;
    margin-bottom: 10px;
  }

  .talk-subtitle {
    font-size: 26px;
    margin-bottom: 5px;
  }

  .talk-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .talk-button {
    padding: 10px 30px;
    font-size: 14px;
    margin-top: 0px;
  }
}

@media (max-width: 576px) {
  .talk-title {
    font-size: 32px;
  }

  .talk-subtitle {
    font-size: 28px;
  }

  .talk-description {
    font-size: 15px;
  }

  .talk-button {
    padding: 10px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .talk-title {
    font-size: 28px;
  }

  .talk-subtitle {
    font-size: 24px;
  }

  .talk-description {
    font-size: 14px;
  }

  .talk-button {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .talk-title {
    font-size: 24px;
  }

  .talk-subtitle {
    font-size: 22px;
  }

  .talk-description {
    font-size: 13px;
  }

  .talk-button {
    padding: 10px 18px;
    font-size: 12px;
  }
}

:root {
  --primary-gradient: linear-gradient(90deg, #29B6C8, #32BC8B);
}

/* Footer */
.footer {
  background: #000;
  color: #00f0ff;
  padding: 50px 20px;
  font-family: "Manrope", sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

/* Top Part */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: "Manrope", sans-serif;
  flex-wrap: wrap;
  margin-bottom: 50px;
  color: #32BC8B;
}

.footer-links {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-column p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Middle Part */
.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 80px;
}

.newsletter {
  font-size: 1.5rem;
  font-weight: bold;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  background: var(--primary-gradient);
  background-clip: text;
-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: right;
}

/* Brand Big Text */
.footer-brand {
  position: relative;
  text-align: center;
  font-size: 320px;
  font-weight: 700;
  font-family: "EB Garamond", serif;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.3px;
  margin-top: 50px;
  margin-bottom: 0;
  line-height: 1; /* Added to remove bottom space */
  z-index: 1;
}

/* Gradient Shadow */
.footer-brand::after {
  content: 'AGELA';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 320px;
  font-weight: 700;
  font-family: "EB Garamond", serif;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(15px);
  opacity: 0.5;
  z-index: -1;
}

.footer-brand {
  animation: blurReveal 8.8s ease-out infinite;
  animation-delay: 10s; /* Optional: delay before the first reveal */
}

@keyframes blurReveal {
  0% {
    filter: blur(20px);
    opacity: 0;
  }
  15% {
    filter: blur(0);
    opacity: 1;
  }
  95% {
    filter: blur(0);
    opacity: 1;
  }
  100% {
    filter: blur(20px);
    opacity: 0;
  }
}




/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
  .footer-middle {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-bottom p {
    text-align: center;
  }
  .footer-brand {
    font-size: 6rem;
  }
  .footer-brand::after {
    font-size: 6rem;
  }
  .footer-brand {
    animation: blurReveal 8.8s ease-out infinite;
    animation-delay: 10s; /* Optional: delay before the first reveal */
  }
}
@media (max-width: 576px) {
  .footer-top {
    gap: 20px;
  }
  .footer-links {
    gap: 10px;
  }
  .footer-middle {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom p {
    text-align: center;
  }
  .footer-brand {
    font-size: 3rem;
  }
  .footer-brand::after {
    font-size: 3rem;
  }
  .footer-brand {
    animation: blurReveal 8.8s ease-out infinite;
    animation-delay: 10s; /* Optional: delay before the first reveal */
  }
}
@media (max-width: 480px) {
  .footer-top {
    gap: 15px;
  }
  .footer-links {
    gap: 10px;
  }
  .footer-middle {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom p {
    text-align: center;
  }
  .footer-brand {
    font-size: 2.5rem;
  }
  .footer-brand::after {
    font-size: 2.5rem;
  }
  .footer-brand {
    animation: blurReveal 8.8s ease-out infinite;
    animation-delay: 10s; /* Optional: delay before the first reveal */
  }
  .footer-brand {
    animation: blurReveal 8.8s ease-out infinite;
    animation-delay: 10s; /* Optional: delay before the first reveal */
  }
}
@media (max-width: 360px) {
  .footer-top {
    gap: 10px;
  }
  .footer-links {
    gap: 5px;
  }
  .footer-middle {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  .footer-bottom p {
    text-align: center;
  }
  .footer-brand {
    font-size: 2rem;
  }
  .footer-brand::after {
    font-size: 2rem;
  }
  .footer-brand {
    animation: blurReveal 8.8s ease-out infinite;
    animation-delay: 10s; /* Optional: delay before the first reveal */
  }
  .footer-brand {
    animation: blurReveal 8.8s ease-out infinite;
    animation-delay: 10s; /* Optional: delay before the first reveal */
  }
}
/* Responsive adjustments for the footer brand text */
@media (max-width: 768px) {
  .footer-brand {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .footer-brand {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .footer-brand {
    font-size: 2.5rem;
  }
}
@media (max-width: 360px) {
  .footer-brand {
    font-size: 2rem;
  }
}
/* Responsive adjustments for the footer brand text */

/* Contact Section */
/* Contact Section */
.contact-section {
  background-color: #000;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: -20px auto 0 auto; /* moved up by 20px */
  background-color: #000;
  padding: 40px;
  padding-bottom: 28px; /* reduced from 100px to 60px */
  border-radius: 10px;
  box-sizing: border-box;
}



.contact-content {
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  font-family: "EB Garamond", serif;
  font-weight: 600;
  color: #29B6C8;
  position: relative;
  display: inline-block;
  margin-top: -10px; /* move title up */
  margin-bottom: 10px;
  z-index: 1;
}


.contact-title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 10px;
  background-color: #174B6E;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.contact-title {
  animation: floatUpDown 2s ease-in-out infinite;
}

.contact-subtitle {
  color: #aaa;
  font-size: 20px;
  font-family: "Manrope", sans-serif;
  font-weight: regular;
  margin-bottom: 70px;
  margin-top: 50px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.contact-form-wrapper {
  flex: 1;
  min-width: 300px;
  box-sizing: border-box;
}

.contact-form {
  width: 100%;
  box-sizing: border-box;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  color: #aaa;
  font-size: 0.9rem;
  font-family: "Outfit", sans-serif;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: transparent;
  border: 1px solid #333;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form textarea {
  height: 160px; /* Increase as needed */
 
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.2;
}

.checkbox-container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  accent-color: #32BC8B;
  margin-top: 2px;
}

.checkbox-container label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.checkbox-container label span {
  color: #fff;
  cursor: pointer;
}

.checkbox-container {
  display: flex !important;
  align-items: flex-start !important;
}

.checkbox-container label {
  display: inline !important;
  vertical-align: middle !important;
}

.checkbox-container input[type="checkbox"] {
  vertical-align: middle !important;
  position: relative;
  top: -1px;
}

.terms-link {
  color: inherit;         /* Inherits the color of surrounding text */
  text-decoration: none;  /* Removes underline */
  font-weight: bold;      /* Optional: make it bold to highlight */
  cursor: pointer;        /* Makes it obvious it's clickable */
}

.send-button {
  padding: 12px 200px;
  background: linear-gradient(to right, #00C9FF, #92FE9D);
  color: #000;
  border: none;
  border-radius: 4px 20px 4px 20px;
  font-size: 16px;
  margin-top: 15px;
  font-family: "manrope", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.5s ease;
  display: inline-block;
  margin-left: 0;
  background-size: 200% auto;
}

.send-button:hover {
  background: linear-gradient(to right, #92FE9D, #00C9FF);
  background-position: right center;
  opacity: 0.95;
  transform: scale(1.1);
}

.send-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.contact-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding-left: 30px;
  box-sizing: border-box;
}

.contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 50px 10px rgba(41, 182, 200, 0.3);
}

.button-wrapper {
  text-align: left;
}

.checkbox-container {
  display: flex;
  flex-direction: column;
}

.terms-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terms-wrapper input[type="checkbox"] {
  vertical-align: middle;
  margin: 0;
}

.terms-wrapper label {
  margin: 0;
  line-height: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2.2rem;
    margin-top: 15px;

  }
  .contact-container {
    padding-top: 5px;
    padding-bottom: 20px;
  }
  
  .contact-grid {
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-form-wrapper,
  .contact-image-wrapper {
    width: 100%;
    padding-left: 0;
  }
  
  
  .contact-subtitle {
    font-size: 1rem;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  
  .send-button {
    width: 100%;
    padding: 16px 0;
    font-size: 1.2rem;
    border-radius: 10px;
    padding-bottom: 20px;
    margin-bottom: 35px;
  }
  
  .contact-image {
    max-height: 300px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 10px;
  }
  
  .contact-container {
    padding: 20px 15px;
    padding-bottom: 50px;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
  
  .contact-subtitle {
    font-size: 0.95rem;
  }
  
  .send-button {
    font-size: 1rem;
  }
}
/* Small tablets and large phones */
@media (max-width: 576px) {
   .contact-title {
    font-size: 2rem;
    margin-top: 15px;

  }
  .contact-container {
    padding-top: 0px;
    padding-bottom: 60px;
  }
  .contact-grid {
    flex-direction: column;
    gap: 30px;
  }

  .contact-subtitle {
    font-size: 0.9rem;
  }

  .send-button {
    font-size: 0.95rem;
    padding: 14px 0;
  }
}

/* Medium phones */
@media (max-width: 480px) {
  .contact-title {
    font-size: 1.6rem;
  }

  .contact-subtitle {
    font-size: 0.85rem;
  }

  .send-button {
    font-size: 0.9rem;
    padding: 12px 0;
  }
}

/* Small phones */
@media (max-width: 360px) {
  .contact-title {
    font-size: 1.4rem;
  }

  .contact-subtitle {
    font-size: 0.8rem;
  }

  .send-button {
    font-size: 0.85rem;
    padding: 10px 0;
  }
}

/* Responsive adjustments for the footer brand text */

 /* Services Section */
 .services-section1 {
  background-color: #000; /* black background */
  padding: 100px 20px 60px 20px;
}
.service-details {
      margin-top: -40px;
}

.section1-title {
  font-size: 2.5rem;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  color: #29B6C8;
  position: relative;
  display: inline-block;
  margin-top: -15px; /* move title up */
  margin-bottom: 50px;
  z-index: 1;
  animation: floatUpDown 2s ease-in-out infinite;
}

.section1-title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 10px;
  background-color: #174B6E;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1; /* push line behind the title */
}

.main-heading {
  font-family: 'EB Garamond', serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

.section1-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  color: #aaa;
}


.service-details h2 span {
  font-size: 36px;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  color: #fff;
}



.service-details p {
  color: #bbb;
  font-family: "manrope", sans-serif;
  font-size: 18px;
  margin-bottom: 15px;
}

.service-list-heading {
  font-family: "Manrope", sans-serif;
  font-weight: 600; /* semi-bold */
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #FFFFFF;
}


.service-details ul {
  padding-left: 1rem;
}

.service-details ul li {
  color: #ccc;
  font-family: "manrope", sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}

.service-details h6 {
  color: #fff;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-details .btn-info {
  position: relative;
  background: linear-gradient(90deg, #29B6C8);
  border: none;
  padding: 12px 45px;
  border-radius: 4px 20px 4px 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  margin-top: 30px;
  cursor: pointer;
  color: #000;
  overflow: hidden;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(23, 161, 145, 0.5);
  z-index: 1;
}

.service-details .btn-info::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #00f0ff, #00ffaa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}

.service-details .btn-info::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px; /* Border thickness */
  border-radius: 4px 20px 4px 20px;
  background: linear-gradient(90deg, #29B6C8);
  mask: 
  linear-gradient(#fff 0 0) content-box, 
  linear-gradient(#fff 0 0);
-webkit-mask: 
  linear-gradient(#fff 0 0) content-box, 
  linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-details .btn-info:hover {
  background: transparent !important;
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: none;
}

.service-details .btn-info:hover::before {
  opacity: 1;
}

/* Ensure no underline in any state */
a.service-details .btn-info,
a.service-details .btn-info:hover,
a.service-details .btn-info:focus,
a.service-details .btn-info:active,
a.service-details .btn-info:visited {
  text-decoration: none !important;
  outline: none;
}
/* Service Details Section */
/* Glowing blue shadow behind the image */
.service-details .image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  z-index: 1;
}

/* Enhanced blue glowing shadow */
/* Enhanced brighter blue glowing shadow */
.service-details .image-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(41, 182, 200, 0.3); /* increased from 0.3 to 0.8 */
  filter: blur(15px); /* increased blur for stronger glow */
  z-index: -1;
  border-radius: 42px;
  transform: translate(-50%, -50%) scale(0.95);
  pointer-events: none;
  animation: pulse 4s infinite ease-in-out;
}




/* Optional animation for a subtle pulsing effect */
@keyframes pulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

@keyframes pulseZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.image-wrapper img {
  animation: pulseZoom 3s ease-in-out infinite;
}


/* Ensure image is above the shadow */
.service-details img.img-fluid {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 42px;
  box-shadow: 4px 12px 42px rgba(41, 182, 200, 0.6);
}

/* For rounded images */
.service-details img.rounded {
  border-radius: 42px !important;
}


.service-row {
  position: relative;
  padding-bottom: 50px;
  margin-top: 110px;
  margin-bottom: 110px; /* increased from 80px */
}


.service-row::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #29B6C8, #17A191);
  border-radius: 1px;
}

/* Optional: space between icon and title */
.service-details .d-flex img {
  margin-right: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-section1 {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 50px;
    padding-bottom: 0px;
  }
    .section1-title {
    font-size: 1.85rem;
    margin-bottom: 50px;
    margin-top: 0px;
  }
  .main-heading {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
  .section1-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0px;
  }
  .service-details {
    margin-top: -30px; /* tighten spacing */
    padding-top: 0 !important;
  }
  .service-details .row {
    text-align: center;
  }

  .service-details .d-flex {
    justify-content: center;
  }

  .service-details .shadow {
    margin-bottom: 20px;
  }
  .service-details p {
    text-align: left;
  }

  .service-list-heading {
    text-align: left;
  }
  .service-details ul li {
    text-align: left;
  }


  .service-details img.img-fluid {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 576px)  {
  .services-section1 {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 50px;
    padding-bottom: 0px;
  }
  .section1-title {
    font-size: 1.85rem;
    margin-bottom: 50px;
    margin-top: 0px;
  }
   .main-heading {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }
  .section1-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0px;
  }
      .service-details {
    margin-top: -30px; /* tighten spacing */
    padding-top: 0 !important;
  }
  .service-details .row {
    text-align: center;
  }

  .service-details .d-flex {
    justify-content: center;
  }

  .service-details .shadow {
    margin-bottom: 20px;
  }

  .service-details img.img-fluid {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 480px) {
    .section1-title {
    font-size: 1.85rem;
    margin-bottom: 30px;
  }
  .section1-subtitle {
    font-size: 0.7rem;
    margin-bottom: 20px;
  }
  .service-details .row {
    text-align: center;
  }

  .service-details .d-flex {
    justify-content: center;
  }

  .service-details .shadow {
    margin-bottom: 20px;
  }

  .service-details img.img-fluid {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 360px) {
  .service-details .row {
    text-align: center;
  }

  .service-details .d-flex {
    justify-content: center;
  }

  .service-details .shadow {
    margin-bottom: 20px;
  }

  .service-details img.img-fluid {
    max-width: 100%;
    height: auto;
  }
}

/* About Header Section */
.aboutheader-section {
  background-color: #000;
  color: #fff;
  padding: 80px 10px;
}

.image-wrapper2 {
  width: 100%; /* Ensure it uses full available width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper2 img {
  width: 100%; /* Make image responsive to container */
  max-width: none; /* Remove cap on max size */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Use cover if you want full fill; use contain to preserve entire image */
}

.text-content {
  padding-left: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-family: "EB Garamond", serif;
  font-weight: 600;
  color: #29B6C8;
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
  z-index: 1;
  animation: floatUpDown 2s ease-in-out infinite; /* Add this line */
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 10px;
  background-color: #174B6E;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.sectionabout-subtitle {
  font-family: "Manrope", sans-serif;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: left;
}

.text-content p {
  font-family: "Manrope", sans-serif;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
  margin-top: 20px;
  margin-bottom: 25px;
  text-align: left;
}

.underline {
  width: 200px;
  height: 1px;
  background-color: #FFFFFF;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .image-wrapper2 {
    padding-right: 30px;
  }

  .text-content {
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .aboutheader-section {
    padding: 60px 20px;
  }

  .image-wrapper2 {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .text-content {
    padding-left: 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .sectionabout-subtitle {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .text-content p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .sectionabout-subtitle {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .text-content p {
    font-size: 15px;
  }

  .underline {
    margin-top: 30px;
  }
}


/* Skills Section */
.skills-section {
  background-color: #000;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Manrope', sans-serif;
}

.section-title3 {
  font-size: 2.5rem;
  font-family: "EB Garamond", serif;
  font-weight: 600;
  color: #32BC8B;
  position: relative;
  display: block;
  margin-bottom: 13px;
  z-index: 1;
  text-align: left;
  padding-left: 14px; /* Keeps visual alignment if needed */
}

.section-title3 span {
  display: inline-block;
  position: relative;
}

.section-title3 span::after {
  content: "";
  position: absolute;
  left: -10px; /* Extend 10px to the left */
  bottom: 5px;
  width: calc(100% + 20px); /* Add 10px to both sides */
  height: 10px;
  background-color: #174B6E;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}



.section-subtitle3 {
  margin-left:0;
  font-size: 18px;
  font-family: "manrope", sans-serif;
  font-weight: semi-bold;
  color: #ccc;
  margin-bottom: 30px;
  margin-top: 30px;
}

.section-divider {
  border: 1px solid #29B6C8;
  width: 100%;
  margin: 20px 0 20px;
}

.skill-item {
  margin-bottom: 30px;
  max-width: 480px;
  margin: 0 auto; /* Center the skill item */
  padding: 20px;
}

.number {
  color: #29B6C8;
  padding: 10px 15px;
  font-family: "EB Garamond", serif;
  font-weight: 800;
  font-size: 28px; /* Increased size */
  display: block;
  margin-top: 20px; /* Moves number down */
  margin-bottom: 5px;
}


.skill-item h4 {
  color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 50px;
  transform: translateY(-6px); /* Moves the h4 slightly up */
}


.skill-icon-inline {
  display: inline-flex;
  align-items: center;
}

/* Apply translateY ONLY to the image, not the animation container */
.skill-icon-inline img.skill-icon {
  width: 85px;
  height: 90px;
  transform: translateY(-10px); /* Adjust to visually match the image */
  margin-bottom: 0;
}

/* Keep animation styles on skill-icon class */
.skill-icon {
  width: 88px;
  height: 92.24px;
  margin-bottom: 0;
  animation: wobble 3s ease-in-out infinite;
}


@keyframes wobble {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}




.skill-item p {
  font-family: "manrope", sans-serif;
  font-weight: lighter;
  font-size: 16px;
  color: #ccc;
  line-height: 35px;
  margin-bottom: 15px;
  width: 470px;
  height: auto;
  
}

/* Responsive */
@media (max-width: 768px) {
  .row {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align children to the right */
  }

  .skill-header {
    justify-content: flex-end; /* Align header content to the right */
  }

  .section-title3,
  .section-subtitle3 {
    text-align: left;     /* Align text to the right */
    margin-right: 0;       /* Reset margin */
    margin-left: auto;     /* Push to the right if needed */
  }

  .section-title3 span::after {
    left: auto;
    right: 0;              /* Move underline effect to the right */
    width: 100%;
  }
    .skill-item p {
      font-size: 16px;
      line-height: 1.5;
      text-align: left;
      word-break: break-word;         /* Ensures long words wrap */
      overflow-wrap: break-word;      /* Handles overflow cleanly */
      width: 100%;                    /* Ensure it doesn’t overflow parent */
      box-sizing: border-box;         /* Prevent padding from causing overflow */
    }
  
    .skill-item {
      width: 100%;
      padding: 0 10px;                /* Add side padding for breathing room */
    }
}
@media (max-width: 992px) {
  .section-title3 {
    font-size: 2.2rem;
  }

  .section-subtitle3 {
    font-size: 1.5rem;
  }

  .skill-item h4 {
    font-size: 28px; /* Adjusted size for smaller screens */
  }

  .skill-item p {
    font-size: 16px; /* Adjusted size for smaller screens */
    line-height: 35px; /* Adjusted line height for smaller screens */
  }
}
@media (max-width: 768px) {
  .section-title3 {
    font-size: 2rem;
  }

  .section-subtitle3 {
    font-size: 1.4rem;
  }

  .skill-item h4 {
    font-size: 26px; /* Adjusted size for smaller screens */
  }

  .skill-item p {
    font-size: 16px; /* Adjusted size for smaller screens */
    line-height: 35px; /* Adjusted line height for smaller screens */
  }
}
@media (max-width: 576px) {
  .section-title3 {
    font-size: 2rem;
  }

  .section-subtitle3 {
    font-size: 1.2rem;
  }

  .skill-item h4 {
    font-size: 24px; /* Adjusted size for smaller screens */
  }

  .skill-item p {
    font-size: 14px; /* Adjusted size for smaller screens */
    line-height: 30px; /* Adjusted line height for smaller screens */
  }
}
@media (max-width: 480px) {
  .section-title3 {
    font-size: 1.8rem;
  }

  .section-subtitle3 {
    font-size: 1.1rem;
  }

  .skill-item h4 {
    font-size: 22px; /* Adjusted size for smaller screens */
  }

  }
  

@media (max-width: 360px) {
  .section-title3 {
    font-size: 1.6rem;
  }

  .section-subtitle3 {
    font-size: 1rem;
  }

  .skill-item h4 {
    font-size: 20px; /* Adjusted size for smaller screens */
  }

  .skill-item p {
    font-size: 12px; /* Adjusted size for smaller screens */
    line-height: 25px; /* Adjusted line height for smaller screens */
  }
}

/* Good at Section */
.work-section {
  background-color: #000;
  color: #fff;
  padding: 20px 20px;
  margin-top: -60px; /* adjust this value as needed */
}


.section-title1 {
  font-size: 2.5rem;
  font-family: "EB Garamond", serif;
  font-weight: 600;
  color: #32BC8B;
  position: relative;
  display: block;
  margin-bottom: 13px;
  z-index: 1;
  text-align: left;
  padding-left: 14px;
}

.section-title1 span {
  display: inline-block;
  position: relative;
}

.section-title1 span::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 5px;
  width: calc(100% + 20px);
  height: 10px;
  background-color: #174B6E;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}


/* Mobile responsiveness */
@media (max-width: 576px) {
  .section-title1 {
    font-size: 1.75rem;
  }

  .section-title1::after {
    height: 10px;
    width: 100%; /* match title width exactly */
    left: 0; /* align with title */
  }
}

@media (max-width: 480px) {
  .section-title1 {
    font-size: 1.5rem;
  }

  .section-title1::after {
    width: 120px; /* shorter underline on mobile */
    height: 4px;   /* slightly thinner line */
  }
}

.section-description1 {
  font-family: "Manrope", sans-serif;
  color: #aaa;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 50px;
}


.work-card {
  position: relative;
  width: 100%;
  max-width: 300px;
  background: #000;
  border: 2px solid var(--color, #32BC8B);
  border-radius: 20px;
  padding: 20px 15px 60px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(50, 188, 139, 0.25); /* Default fallback */
  box-shadow: 0 0 20px color-mix(in srgb, var(--color), transparent 75%);
}
.work-card:nth-child(1),
.work-card:nth-child(3) {
  box-shadow: 0 0 20px rgba(50, 188, 139, 0.25); /* Green glow */
}

.work-card:nth-child(2),
.work-card:nth-child(4) {
  box-shadow: 0 0 20px rgba(2, 119, 189, 0.25); /* Blue glow */
}


.work-card:hover {
  transform: translateY(-5px);
}

.work-img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
  margin-top: 5px;
  border-radius: 12px;
}

.step-badge {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color, #32BC8B);
  color: #000;
  font-family: "EB Garamond", serif;
  font-weight: 600;
  font-size: 16px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(50, 188, 139, 0.4);
  z-index: 10;
}

.work-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #FFFFFF;
  font-family: "Manrope", sans-serif;
  font-weight: regular;
  text-align: center;
  font-size: 20px;
  padding: 14px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}


/* Responsive Tweaks */
@media (max-width: 767px) {
  .work-card {
    max-width: 100%;
    margin-bottom: 30px;
  }


  .step-badge {
    top: -20px;
  }

  .work-caption {
    font-size: 13px;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .center-note {
    position: static;
    transform: none;
    margin: 20px auto;
  }

  .work-card {
    max-width: 100%;
  }

  .step-badge {
    top: 10px;
    left: 10px;
    transform: none;
  }

  .work-caption {
    font-size: 14px;
  }
}


.cta-button {
  position: relative;
  display: inline-block;
  margin-top: 80px;
  margin-bottom: 100px;
  padding: 16px 60px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.3px;
  line-height: 27.2px;
  color: #fff;
  border-radius: 4px 20px 4px 20px;
  border: 4px solid transparent;
  background-color: transparent;
  z-index: 1;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth zoom */
  box-shadow: 0 8px 20px rgba(23, 161, 145, 0.5);
  transform: scale(1);
  will-change: transform;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(270deg, #17A191, #29B6C8, #32BC8B);
  border-radius: 4px 20px 4px 20px;
  z-index: 0;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  transition: inherit;
}

.cta-button span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: inherit;
}

.cta-button::after {
  display: none; /* remove underline effect */
}

.cta-button:hover {
  color: #fff;
  transform: scale(1.1);
  text-decoration: none !important;
  box-shadow: 
    0 12px 25px rgba(23, 161, 145, 0.6),
    0 0 15px rgba(255, 255, 255, 0.3);
}

/* Ensures no underline in all link states */
a.cta-button,
a.cta-button:hover,
a.cta-button:focus,
a.cta-button:active,
a.cta-button:visited {
  text-decoration: none !important;
  outline: none;
}



/* Responsive Tweaks */
@media (max-width: 768px) {
  .section-title1 {
    font-size: 28px;
  }
  .section-title1 ::after {
    width: 100%;
  }

  .step-badge {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
  }

  .work-caption {
    font-size: 14px;
  }

  .cta-button {
    font-size: 13px;
    padding: 12px 24px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .center-note {
    position: static;
    transform: none;
    margin: 20px auto;
  }

  .work-card {
    max-width: 100%;
  }

  .step-badge {
    position: absolute;     /* ensure it's positioned relative to the card */
    top: 5px;
    left: 50%;              /* move to center horizontally */
    transform: translateX(-50%); /* shift back by 50% of its own width */
    z-index: 10;            /* keep it above card content if needed */
  }
  

  .work-caption {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .section-title1 {
    font-size: 2rem;
  }

  .section-description1 {
    font-size: 16px;
  }

  .work-caption {
    font-size: 12px;
  }

  .step-badge {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .section-title1 {
    font-size: 1.75rem;
  }

  .section-description1 {
    font-size: 14px;
  }

  .work-caption {
    font-size: 11px;
  }

  .step-badge {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .section-title1 {
    font-size: 1.5rem;
  }

  .section-description1 {
    font-size: 12px;
  }

  .work-caption {
    font-size: 10px;
  }

  .step-badge {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 10px;
  }
}

@media (max-width: 991px) {
  .center-note {
    display: none;
  }
}


/* Team Section */
/* Core Team Section Styles */
.team-section {
  background-color: #000;
  color: #fff;
  margin-bottom: 100px;
  padding: 20px 4px;
  font-family: 'Manrope', sans-serif;
  text-align: left;
  position: relative;
}

.team-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 20px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 8px;
  padding: 4px 10px;
  border: 1px solid #444;
  border-radius: 20px;
}

.team-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 10px 0 5px;
}

.team-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  color: #aaa;
  margin-bottom: 40px;
  max-width: 500px;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.team-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.team-grid {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  animation: scrollTeamLoop 20s linear infinite;
}

.team-wrapper:hover .team-grid {
  animation-play-state: paused;
}

@keyframes scrollTeamLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollTeamAuto {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.team-member {
  flex: 0 0 80%; /* Mobile-first width */
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* Wider viewports (tablet/laptop) */
@media (max-width: 600px) {
  .team-member {
    flex: 0 0 90%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .team-photo {
    width: 80px;
    height: 80px;
  }

  .about-team h4 {
    font-size: 1rem;
  }

  .about-team p {
    font-size: 0.85rem;
    max-width: 260px;
    margin: 0 auto;
  }

  .team-grid {
    gap: 10px;
    animation: scrollTeamAuto 5s linear infinite; /* Faster scroll on mobile */
    animation-duration: 5s; /* Slower scroll on mobile */
  }
}


@media (min-width: 900px) {
  .team-member {
    flex: 0 0 30%;
  }
}

.team-photo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.about-team h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.about-team p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.2;
  margin-top: 6px;
}

/* cookie consent */
.cookie-consent {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 90%;
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  display: none;
  z-index: 9999;
  font-size: 12px;
  font-family: "Manrope", sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-title {
  font-size: 26px; /* Increased from 20px */
  font-family: "EB Garamond", serif;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
  color: #29B6C8;
}

.cookie-consent p {
  font-size: 16px; /* Increased from inherited ~12px */
  margin-bottom: 16px;
  text-align: left;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 90px;
  text-align: center;
  white-space: nowrap;
}

/* Filled style for Accept */
.cookie-accept {
  background-color: #00f0ff;
  color: #000;
  border: none;
}

/* Transparent style for Manage and Decline */
.cookie-manage,
.cookie-decline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #00f0ff;
}

/* Hover zoom and color adjustments */
.cookie-buttons button:hover {
  transform: scale(1.08);
}

.cookie-accept:hover {
  background-color: #00f0ff;
}

.cookie-manage:hover,
.cookie-decline:hover {
  background-color: #00f0ff;
  color: #000; /* Change text to black */
  border-color: #00f0ff;
}

.cookie-consent {
  opacity: 0;
  transition: opacity 0.3s ease;
}


.cookie-close {
  position: absolute;
  top: 6px;
  right: 10px;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .cookie-consent {
    max-width: 400px;
    font-size: 11.5px;
    padding: 14px 18px;
    /* Remove any positioning overrides */
  }
}

@media (max-width: 576px) {
  .cookie-consent {
    font-size: 13px;
    padding: 14px;
    width: 95%;
  }
}

  .cookie-buttons {
    flex-wrap: wrap; /* Allow buttons to wrap if needed */
    flex-direction: row;
    justify-content: center;
    gap: 8px; /* Add space between buttons */
  }

  .cookie-buttons button {
    flex: 1 1 calc(33% - 10px); /* Allow 3 buttons per row with gap */
    min-width: 90px;
    font-size: 13px;
    padding: 8px 10px;
  }

.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  background-color: #1a1a1a;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  z-index: 10000;
  display: none;
  font-family: "Manrope", sans-serif;
}

.settings-title {
  font-size: 22px;
  font-family: "EB Garamond", serif;
  font-weight: bold;
  color: #29B6C8;
  margin-bottom: 20px;
  text-align: center;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
  font-size: 16px;
}

.settings-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
}

.cookie-save {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  background-color: #00f0ff;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  transition: background-color 0.3s ease;
}

.cookie-save:hover {
  background-color: #00d9e6;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #32BC8B;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.switch input:disabled {
  pointer-events: auto;
}

.switch input:disabled + .slider,
.switch input:disabled {
  cursor: not-allowed;
}

.switch input:disabled + .slider {
  opacity: 0.7;
}

@media (max-width: 576px) {
  /* Make switches easier to tap */
  .switch {
    width: 60px;
    height: 32px;
  }
  .slider:before {
    width: 26px;
    height: 26px;
    left: 3px;
    bottom: 3px;
  }
  input:checked + .slider:before {
    transform: translateX(28px);
  }

  /* Stack cookie options vertically */
  .cookie-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Reduce heading size */
  .settings-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  /* Give close button more room */
  .settings-close {
    top: 8px;
    right: 12px;
    font-size: 24px;
  }

  /* Slightly larger save button padding */
  .cookie-save {
    padding: 12px;
    font-size: 16px;
  }
}


/* policy (unchanged for laptops) */
.privacy-title {
  font-family: "EB Garamond", serif;
  color: #29B6C8;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: left;
}

.policy-sub {
  font-family: "Manrope", sans-serif;
  color: #ccc;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 40px;
  margin-top: 30px;
  text-align: left;
}

.privacy-policy-section h5 {
  font-size: 1.5rem;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  color: #32BC8B;
  margin-bottom: 13px;
  text-align: left;
}

.policy-sub2 {
  font-family: "Manrope", sans-serif;
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

.privacy-policy-section ul {
  font-family: "Manrope", sans-serif;
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}



/* Links inside policy */
.privacy-policy-section a {
  color: #29B6C8;
  text-decoration: underline;
}

.privacy-policy-section a:hover {
  text-decoration: none;
  color: #32BC8B;
}

/* ✅ Mobile view only (max-width 576px) */
@media (max-width: 576px) {
  .privacy-title {
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .policy-sub,
  .policy-sub2,
  .privacy-policy-section ul {
    font-size: 15px;
    line-height: 1.6;
  }

  .privacy-policy-section h5 {
    font-size: 1.2rem;
  }

  .privacy-policy-section {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/*packages section */
.packageh1 {
  font-family: "EB Garamond", serif;
  font-weight: bold;
  font-size: 30px;
  background-color: #020202 !important; /* keep this */
  color: #32BC8B !important;               /* show green text */
}


.custom-hr {
  border: none;
  border-top: 2px solid #ffffff;
  opacity: 0.8;              /* Optional: slightly transparent */
  margin: 1.5rem 0;           /* Top and bottom spacing */
  width: 100%;                /* Full width */
  max-width: 320px;           /* Optional: shorter line */
  margin-left: auto;          /* Center align */
  margin-right: auto;
}

.package-border {
  border: 1.5px solid #32BC8B !important;
}

.package-details .btn-info {
  position: relative;
  background: linear-gradient(90deg, #29B6C8);
  border: none;
  padding: 12px 35px;
  border-radius: 4px 20px 4px 20px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 1.3px ;
  margin-top: 30px;
  cursor: pointer;
  color: #000;
  overflow: hidden;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(23, 161, 145, 0.5);
  z-index: 1;
}

.package-details .btn-info::after {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #00f0ff, #00ffaa);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}

.package-details .btn-info::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px; /* Border thickness */
  border-radius: 4px 20px 4px 20px;
  background: linear-gradient(90deg, #29B6C8);
  mask: 
  linear-gradient(#fff 0 0) content-box, 
  linear-gradient(#fff 0 0);
-webkit-mask: 
  linear-gradient(#fff 0 0) content-box, 
  linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.package-details .btn-info:hover {
  background: transparent !important;
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: none;
}

.package-details .btn-info:hover::before {
  opacity: 1;
}

/* Ensure no underline in any state */
a.package-details .btn-info,
a.package-details .btn-info:hover,
a.package-details .btn-info:focus,
a.package-details .btn-info:active,
a.package-details .btn-info:visited {
  text-decoration: none !important;
  outline: none;
}

.package-details {
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center;     /* Vertically center if needed */
  flex-direction: column;  /* Stack elements vertically */
}

.btn-package {
  border: 2px solid #32BC8B;
  background-color: transparent;
  color: #32BC8B;
  border-radius: 10px;
  padding: 10px 0;                 /* vertical padding for equal height */
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 1.3px;
  transition: all 0.3s ease;
  width: 100%;                    /* ensure equal width when using flex-fill */
  text-align: center;
}

.btn-package.active {
  background-color: #32BC8B;
  color: black;
}

.btn-package:hover {
  background-color: #32BC8B;
  color: black;
}


.package-list-wrapper {
  overflow: hidden;
  transition: height 0.3s ease;
}

/* Optional: make buttons stack vertically on small screens */
@media (max-width: 576px) {
  .btn-package {
    width: 100%;
    margin-right: 0;
  }
}
.custom-list {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
  font-weight: lighter;
  letter-spacing: 1.3px;
  line-height: 28px;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  background-image: url('Images/Tick.svg'); /* Update path */
  background-size: contain;
  background-repeat: no-repeat;
}


@media (max-width: 767.98px) {
  .package-details {
    padding: 2rem 1rem;
  }

  .packageh1 {
    font-size: 22px;
    margin-top: -15px;
  }

  .custom-list li {
    padding-left: 16px;
    font-size: 15px;
    line-height: 26px;
  }

  .package-details .btn-info {
    padding: 10px 24px;
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 20px;
  }

  .custom-hr {
    max-width: 90%;
  }

  .package-border {
    margin-bottom: 20px;
  }

  .package-details p,
  .package-details h5 {
    font-size: 15px !important;
    line-height: 24px;
  }

  .package-details h5 strong {
    font-size: 20px !important;
  }

  .package-details p[style*="margin-left"] {
    margin-left: 20px !important;
  }
}

@media (max-width: 767.98px) {
  .package-border {
    margin: 0 auto;
    max-width: 370px;
    width: 100%;
  }
}

