*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins' , sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
}

body{
    display: flex;
    flex-direction: column;
    display: block;
    align-items: center;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
}
.site-header {
  background: linear-gradient(to right, #b6d7b9, #e6f7d9);
  color: #2f4f4f;
  padding: 10px 20px;
}
.site-header a {
  color: #2f4f4f;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4); /* soft white glow */
  text-decoration: none;
}

.header-container {
  min-height: 64px;  /* ensures enough space for logo */
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar {
  height: 60px; /* Adjust as needed */
  display: flex;
  align-items: center;
  /* ...other styles... */
}

/*.logo {
  height: 80%;      /* Keeps logo proportional to navbar
  width: auto;
  max-height: 48px; /* Prevents it from getting too big 
  object-fit: contain;
  display: block;
}
.logo {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
} */

.navbar {
  height: 80px; /* Slightly taller navbar for a bigger logo */
  display: flex;
  align-items: center;
}

.logo img {
  height: 90px;      /* Almost as tall as navbar */
  width: 400px;      /* Fixed wide width for rectangle look */
  max-width: 100%;   /* Prevents overflow on small screens */
  display: block;
  object-fit: contain;
}

.navigation {
  display: flex;
  gap: 20px;
  margin-left: 60px; /* pushes nav links to the right, adjust as needed */
}

.navigation a {
    position: relative;
    font-size: 1.1em;
    color: #2f4f4f;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
}
.navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: rgb(221, 199, 6);
    border-radius: 5px;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s;
}

.navigation a:hover::after{
    transform-origin: left;
    transform: scaleX(1);
}
.menu-button {
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  display: none;
}

/* Hero Section */
.hero-section {
 background: linear-gradient(to right, #a1cfa5, #dcedc1); /* minty fresh greens */
  /*background: linear-gradient(to right, #4b0082, #800080);*/
  padding: 60px 20px;
  color: rgb(0, 0, 0);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Spread text and image */
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  padding-left: 0;
}

.hero-text {
  flex: 1 1 50%;
  padding-right: 30px;
  text-align: left;   /* Changed from justify to left */
  z-index: 1;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-btn {
  background-color: white;
  color: #360133;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero-btn:hover {
  background-color: #ffe6e6;
}

.hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.hero-image img {
  width: 150%;       
  max-width: 700px;  
  height: auto;
  transform: scale(1.2); 
  margin-left: -50px;    
}

/*.hero-image img {
  width: 100%;         
  max-width: 500px;    
  height: auto;
  transform: none;     
  margin-left: 0;      
  display: block;
} */

.about-section {
  background: linear-gradient(to right, #a1cfa5, #dcedc1);
  padding: 60px 20px;
  /* padding: 100px 20px; */
  color: #2f4f4f;
  /* padding-left: 100px; */
}

.about-container {
  display: flex;
  flex-direction: row; /* image left, text right */
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
  display: flex;
  justify-content: flex-start;
}

.about-image img {
  width: 150%;        /* keep full width of container */
  max-width: 600px;   /* similar to hero section */
  height: auto;
 /* object-fit: contain;*/
  transform: scale(1.2); /* optional: zoom effect */
  margin-left: 50px;    /* optional: shift slightly left */
  /* border: none; */
  /*box-shadow: none;*/
}

.about-text {
  flex: 1 1 50%;
  /* margin-left: 32px;*/
  margin-right: 30px;  /* Add space on the right side of text */
}

.about-text .section-title {
  font-size: 2.5rem;
  text-transform: uppercase; 
  margin-bottom: 30px;
  color: #000000;
  text-align: center;
}

.about-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #000000;
  text-align: center;
}

.about-social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;  /* Centers icons horizontally */
  gap: 20px;
}

.about-social-icons a {
  color: #2f4f4f;
  font-size: 2rem;          /* Keeps original size */
  transition: color 0.3s;
}

.about-social-icons a:hover {
  color: #007b5e;
}

.services {
    padding: 50px 20px;
    background: rgb(163, 3, 3);
}

.services-h2 {
    font-size: 2rem;
    color: #ece8e8;
}

.services-plans {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.services-plan {
    background: #e1dfdf;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease-in-out;
}

.services-plan:hover {
    transform: scale(1.05);
}

.services-h3 {
    color: #ff6600;
}

.services-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    display: block;
    margin: 10px 0;
}

.services-button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.services-button:hover {
    background: #e65c00;
}

.services-hidden {
    display: none;
}

.services-ul {
    list-style: none;
    padding: 0;
}

.services-ul li {
    background: #ffebcc;
    margin: 5px 0;
    padding: 5px;
    border-radius: 5px;
}

.membership-section {
    padding: 40px 0;
    background: linear-gradient(to right, #a1cfa5, #dcedc1);
    text-align: center;
}
.membership-plans {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.membership-plan {
    background: #b2d0b4;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    width: 300px;
    transition: transform 0.2s;
    position: relative;
     display: flex;
    flex-direction: column;
    align-items: center;
}
.membership-plan:hover {
    transform: translateY(-8px) scale(1.03);
}
.plan-icon {
    font-size: 2.5rem;
    color:rgb(255, 5, 134);
    margin-bottom: 1rem;
}
.plan-price {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
    color: #333;
}
.details-btn {
    background:red;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: background 0.2s;
}
.details-btn:hover {
    background: red;
}
.plan-summary,
.plan-details {
    list-style-position: inside;
    padding-left: 1.2em;
    margin: 1em 0 0.5em 0;
    text-align: left;
}
.hidden {
    display: none;
}
.plan-summary li,
.plan-details li {
    padding-left: 0.5em;
    margin-bottom: 0.3em;
    text-indent: -0.5em;
}
.contact-section {
 background: linear-gradient(to right, #a1cfa5, #dcedc1);
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem; /* or adjust */
}

.contact-section h2 {
  font-size: 36px;
  color: #000000; 
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c70000;
  outline: none;
}

.btn-submit {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background: rgb(221, 199, 6);
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button style */
.dropbtn {
  background-color: transparent;
  color: #fff; /* Adjust based on navbar background */
  padding: 14px 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* Dropdown content hidden by default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}

/* Hover effects */
.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show the dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.site-footer {
  background-color: #2f4f4f;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  color: #ffffff;
  margin: 0 10px;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #a1cfa5;
}

/* Portfolio Section Styling */
.portfolio-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #ffffff, #dcedc1); /* matching website */
  text-align: center;
  animation: fadeInUp 1.2s ease-in-out;
}

.portfolio-title {
  font-size: 2.5rem;
  color: #2f4f4f;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-in-out;
}

.portfolio-carousel {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: slideInCenter 1s ease;
}

.portfolio-card {
  background: #fffbe6; /* light yellow */
  border: 3px solid #d4af37; /* gold border, thicker */
  border-radius: 16px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: zoomIn 0.8s ease;
}

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

.portfolio-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.portfolio-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2f4f4f;
}

.portfolio-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.portfolio-links a {
  color: #2f4f4f;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.portfolio-links a:hover {
  color: #b8860b; /* gold tone on hover */
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInCenter {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.client-slider-section {
  background: linear-gradient(to right, #a1cfa5, #dcedc1);
  padding: 60px 20px;
  overflow: hidden;
  text-align: center;
}

.portfolio-title {
  font-size: 2rem;
  color: #2f4f4f;
  margin-bottom: 2rem;
}

.client-slider {
  display: flex;
  gap: 30px;
  animation: slideLoop 25s linear infinite;
  width: fit-content;
}

@keyframes slideLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.portfolio-card {
  background-color: #fff9cc;
  border: 3px solid #e2b007;
  border-radius: 12px;
  padding: 1rem;
  width: 280px;
  flex-shrink: 0;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.portfolio-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.portfolio-links {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.portfolio-links a {
  color: #2f4f4f;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.portfolio-links a:hover {
  color: #b8860b;
}


/* -------------------- */
/* Mobile Navigation UI */
/* -------------------- */

/* Hide mobile nav by default */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Show mobile nav when .show is added */
.mobile-nav.show {
  display: flex;
}

/* Style for hamburger icon */
.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* -------------------- */
/* Responsive Styles    */
/* -------------------- */
@media (max-width: 1024px) {
  .navigation {
    display: none; /* Hide desktop nav */
  }

  .mobile-nav-toggle {
    display: block; /* Show hamburger on mobile/tablet */
  }

  .mobile-nav a {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    color: #333;
    text-decoration: none;
  }

  .mobile-nav a:hover {
    background-color: #f2f2f2;
  }

  /* Text containers fix */
  .about-description,
  .contact-text,
  .membership-plan,
  .portfolio-card,
  .testimonial-card,
  .section {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Responsive image fix */
  img,
  .portfolio-card img,
  .testimonial-card img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Container or section padding */
  .container,
  .section {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
}

/* -------------------- */
/* Extra Mobile Tweak   */
/* -------------------- */
@media (max-width: 768px) {
  .about-description {
    text-align: center;        /* Ensure RTL alignment */
    width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
    line-height: 1.6;
    font-size: 1rem;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

/* -------------------- */
/* Desktop Navigation   */
/* -------------------- */
@media (min-width: 1025px) {
  .mobile-nav {
    display: none !important; /* Force hidden on desktop */
  }

  .navigation {
    display: flex;
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .hero-image img {
    width: 90vw !important;
    max-width: 90vw !important;
    margin: 0 auto 20px auto !important;
    transform: none !important;
    height: auto !important;
    display: block;
  }
  .about-image img {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    transform: none !important;
    height: auto !important;
    display: block;
  }
  .hero-text {
    font-size: 1.1rem;
    padding-right: 0;
    text-align: center;
  }
  .portfolio-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 20px auto;
    box-sizing: border-box;
  }
  .portfolio-carousel {
    flex-direction: column !important;
    gap: 0 !important;
    align-items: center !important;
  }
}
