/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    box-sizing: border-box;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}


/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}

/* Modal Content */
.modal-content {
  background: #fff;
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  padding: 30px 40px;
  text-align: left;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: fadeInScale 0.3s ease forwards;
}

/* Animation */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Title */
.modal-content h2 {
  margin-bottom: 15px;
  color: #13373a;
  font-size: 28px;
  border-bottom: 2px solid #0073e6;
  padding-bottom: 8px;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}

/* Modal Content */
.modal-content {
  background: #fff;
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  padding: 30px 40px;
  text-align: left;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: fadeInScale 0.3s ease forwards;
  max-height: 90vh;
  overflow-y: auto;
}

/* Animation */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Title */
.modal-content h2 {
  margin-bottom: 15px;
  color: #222;
  font-size: 28px;
  border-bottom: 2px solid #54d6d6;
  padding-bottom: 8px;
}

/* Terms Text */
.terms-text p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #444;
}

.terms-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

.terms-text ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Accept Button */
#acceptBtn {
  display: block;
  margin: 0 auto;
  background-color: #13373a;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#acceptBtn:hover {
  background-color: #54d6d6;
}

/* Responsive */
@media (max-width: 640px) {
  .modal-content {
    padding: 20px 25px;
    max-width: 90vw;
  }
  .modal-content h2 {
    font-size: 24px;
  }
  .terms-text p,
  .terms-text ul li {
    font-size: 14px;
  }
  #acceptBtn {
    width: 100%;
    padding: 14px 0;
    font-size: 18px;
  }
}

@media (max-height: 500px) {
  .modal-content {
    max-height: 85vh;
  }
}




@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');



.note-bar {
  width: 100%;
  height: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #e0f7f7;
  font-size: clamp(13px, 2vw, 17px);
  user-select: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-radius: 6px;

  /* animated gradient background */
  background: linear-gradient(135deg, #13373a, #54d6d6, #1a5758, #54d6d6);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

.scrolling-text {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 40s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  text-shadow:
    0 0 6px rgba(84, 214, 214, 0.8),
    0 0 12px rgba(84, 214, 214, 0.6),
    0 0 20px rgba(84, 214, 214, 0.4);
  animation-name: scroll-left, pulse-glow;
  animation-duration: 40s, 3s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1), ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-direction: normal, alternate;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow:
      0 0 6px rgba(84, 214, 214, 0.8),
      0 0 12px rgba(84, 214, 214, 0.6),
      0 0 20px rgba(84, 214, 214, 0.4);
    color: #e0f7f7;
  }
  50% {
    text-shadow:
      0 0 10px rgba(84, 214, 214, 1),
      0 0 20px rgba(84, 214, 214, 0.8),
      0 0 30px rgba(84, 214, 214, 0.6);
    color: #c0f0f0;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}






/* Eid Banner Styles */
.eid-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #13373a, #54d6d6);
    padding: 50px;
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

/* Content Styles (Centering Text) */
.banner-content {
    text-align: center;
    color: #2c3e50;
    animation: slideUp 1s ease-in-out;
    z-index: 10;
}

.banner-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.banner-content button {
    padding: 12px 25px;
    background-color: #2980b9;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.banner-content button:hover {
    background-color: #1c5a7b;
    transform: scale(1.1);
}

/* Image Styles (Left & Right) */
.banner-images {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    padding: 0 50px;
}

.banner-image {
    width: 150px;
    height: auto;
    border-radius: 10px;
    
}

.banner-image.left {
    animation-delay: 0.5s;
}

.banner-image.right {
    animation-delay: 1s;
}

.banner-image:hover {
    transform: scale(1.1);
    opacity: 1; /* Remove transparency on hover */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes imageAnimation {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .eid-banner {
        flex-direction: column;
        padding: 20px;
        height: auto;
        margin: 15px;
    }

    .banner-content {
        max-width: 90%;
    }

    .banner-content h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .banner-content button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .banner-images {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
    }

    .banner-image {
        width: 100px; /* smaller image size for mobile */
        height: auto;
        margin: 5px;
        opacity: 0.7; /* Apply slight transparency */
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .banner-image.left,
    .banner-image.right {
        animation-delay: 0.7s;
    }

    .banner-image:hover {
        transform: scale(1.05);
        opacity: 1; /* Remove transparency on hover */
    }
}

/* Glassmorphism Search Container */
.search-container {
    margin: 50px auto;
    width: 360px;
    
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeSlideIn 0.8s ease-out forwards;
    transition: box-shadow 0.3s ease;
}

.search-container:hover {
    box-shadow: 0 12px 48px 0 rgba(31, 38, 135, 0.25);
}

/* Input field inside glass container */
.search-container input {
    flex-grow: 1;
    padding: 14px 20px;
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.4);
    color: #0a1f26;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.7);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.02em;
    -webkit-appearance: none; /* removes iOS style */
}

/* Input focus effect */
.search-container input:focus {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 12px 3px #54d6d6;
    color: #13373a;
}

/* Search button inside container */
.search-container button {
    margin-left: 15px;
    background: linear-gradient(135deg, #54d6d6, #2bb8b8);
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(84, 214, 214, 0.6);
    transition: background-color 0.3s ease, box-shadow 0.4s ease, transform 0.15s ease;
    user-select: none;
    position: relative;
}

/* Hover pulse on button */
.search-container button:hover {
    background-color: #13373a;
    box-shadow: 0 8px 22px rgba(19, 55, 58, 0.9);
    transform: scale(1.1);
}

/* Pressed button effect */
.search-container button:active {
    transform: scale(0.95);
    box-shadow: 0 4px 12px rgba(19, 55, 58, 0.7);
}

/* Add a search icon inside the button using ::before */
.search-container button::before {
    content: '🔍';
    font-size: 18px;
    color: white;
    user-select: none;
}

/* Remove default button text */
.search-container button > span {
    display: none;
}

/* Existing animations for fadeSlideIn (reused) */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 480px) {
  .search-container {
   width: 280px;       /* Smaller fixed width */
  
    margin: 30px auto; /* Adjust margin for better spacing */
    position: relative;
    left: -32px;
  }

  .search-container input {
    font-size: 16px;  /* Slightly smaller font size */
    padding: 12px 15px;
  }

  .search-container button {
    padding: 10px 14px; /* Smaller button size */
  }
}

/* Toggle Menu Button */
#menu-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 9999;
  user-select: none;
  transition: color 0.3s ease;
}

#menu-toggle:hover {
  color: #54d6d6;
}

/* Side Navigation Panel */
.side-nav {
  position: fixed;
  top: 0;
  left: -280px; /* Hidden initially */
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #13373a, #54d6d6);
  box-shadow: 3px 0 15px rgba(0,0,0,0.3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: left 0.3s ease;
  z-index: 10000;
  overflow-y: auto;
}

/* Show side nav when active */
.side-nav.active {
  left: 0;
}

/* Side Nav Header */
.side-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.side-nav-header h2 {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

#menu-close {
  background: transparent;
  border: none;
  font-size: 32px;
  color: white;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

#menu-close:hover {
  color: #ecf0f1;
}

/* Side Nav Menu */
.side-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.side-nav-menu li {
  margin-bottom: 20px;
}

.side-nav-menu li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.side-nav-menu li a:hover {
  color: #a0e7e5;
}

.side-nav.active::before {
  content: "";
  position: fixed;
  top: 0; left: 280px;
  right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Template animations */
.image-frame {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.image-frame.hide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.image-frame.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    height: auto;
}
@media (max-width: 480px) {
    .search-container {
        width: 90vw; /* almost full width on small screens */
        padding: 14px 16px;
        border-radius: 40px;
        flex-direction: column;
        gap: 12px; /* space between input and button */
        box-shadow: 0 6px 20px rgba(31, 38, 135, 0.15);
    }

    .search-container input {
        width: 100%;
        border-radius: 40px;
        font-size: 16px;
        padding: 12px 18px;
        box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.75);
    }

    .search-container button {
        width: 60px;
        height: 60px;
        margin-left: 0;
        border-radius: 50%;
        box-shadow: 0 6px 18px rgba(84, 214, 214, 0.7);
        align-self: center;
        transform: none; /* reset scale */
    }

    .search-container button:hover {
        transform: none; /* disable scale effect on small */
        box-shadow: 0 6px 22px rgba(19, 55, 58, 0.8);
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .search-container {
        width: 320px;
        padding: 14px 20px;
        border-radius: 48px;
        flex-direction: row;
        gap: 14px;
    }

    .search-container input {
        width: calc(100% - 70px); /* button approx 60px + margin */
        font-size: 17px;
        padding: 13px 20px;
    }

    .search-container button {
        width: 60px;
        height: 60px;
        margin-left: 0;
        border-radius: 50%;
        box-shadow: 0 6px 16px rgba(84, 214, 214, 0.6);
    }
}

/* Optional: slightly bigger input font on desktops */
@media (min-width: 769px) {
    .search-container input {
        font-size: 18px;
    }
}

/* Side Nav width for smaller screens */
@media (max-width: 480px) {
  .side-nav {
    width: 220px;
  }
}

/* Adjust toggle button on smaller screens */
@media (max-width: 480px) {
  #menu-toggle {
    font-size: 24px;
    top: 15px;
    left: 15px;
  }
}

/* Ensure overlay behind side-nav is visible on mobile */
.side-nav.active::before {
  content: "";
  position: fixed;
  top: 0; left: 280px;
  right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

@media (max-width: 480px) {
  .side-nav.active::before {
    left: 220px; /* match side-nav width on small screens */
  }
}


/* Background social media emojis container */
.social-icons-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  user-select: none;
}

/* Base styles for all icons */
.social-icons-bg .icon {
  position: absolute;
  opacity: 0.12;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.15));
  cursor: default;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  transform-origin: center;
  transition: opacity 0.3s ease;
}

/* SVG Icons size */
.social-icons-bg svg.icon {
  width: 40px;
  height: 40px;
}

/* Emoji Icons size */
.social-icons-bg .icon.emoji {
  font-size: 32px;
}

/* Different animation combos */
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.1); }
}

@keyframes floatSideways {
  0%, 100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(20px) scale(1.05); }
}

@keyframes slowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.12; }
  50% { opacity: 0.35; }
}

/* Applying combined animations */
.social-icons-bg .icon {
  animation-name: floatUpDown, slowRotate, fadeInOut;
  animation-duration: 6s, 20s, 6s;
  animation-timing-function: ease-in-out, linear, ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

/* Add slight variation for emojis */
.social-icons-bg .icon.emoji {
  animation-name: floatSideways, fadeInOut;
  animation-duration: 7s, 7s;
  animation-timing-function: ease-in-out;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .social-icons-bg svg.icon {
    width: 28px;
    height: 28px;
  }
  .social-icons-bg .icon.emoji {
    font-size: 22px;
  }
}

/* Hide some icons on mobile for clarity */
@media (max-width: 480px) {
  .social-icons-bg .icon:nth-child(n+7) {
    display: none;
  }
}

/* Parallax subtle effect on scroll */
@media (hover: hover) {
  .eid-banner:hover .social-icons-bg .icon {
    animation-play-state: paused;
  }
}



/* Image Gallery */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
    transition: all 0.3s ease-in-out;
}

.image-frame {
    width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 15px #0000001a;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: scale(1.05);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-frame:hover img {
    transform: scale(1.1);
}

.pro .crown {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 30px;
    color: #ffeb3b;
    animation: crownAnimation 1s infinite alternate;
}

@keyframes crownAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(20deg);
    }
    image-frame{
        width: 80%;
        margin-bottom: 20px;
    }
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 400px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    animation: popupAnimation 0.5s forwards;
}

@keyframes popupAnimation {
    0% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}



.whatsapp-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #128C7E;
}

.close-btn {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: #d32f2f;
}

.review-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Heading */
h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Rating Graph */
.rating-graph {
    width: 100%;
    margin-bottom: 50px;
    text-align: left;
    padding-left: 30px;
}

.rating-bar {
    background-color: #e0e0e0;
    margin: 20px 0;
    border-radius: 5px;
    height: 40px;
    position: relative;
    transition: width 2s ease-in-out;
    display: flex;
    align-items: center;
}

.rating-bar .label {
    position: absolute;
    left: 20px;
    font-weight: 600;
    color: #eee9e9;
    font-size: 16px;
}

.rating-bar .bar {
    background: linear-gradient( 135deg, #13373a, #54d6d6);
    height: 100%;
    width: 0%;
    border-radius: 5px;
    transition: width 2s ease-in-out;
}

/* Individual Customer Reviews */
.reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
}

.reviewer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.review-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star {
    color: #FFD700;
    font-size: 20px;
}

.review-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.whatsapp-btn img {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.whatsapp-btn:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .review-section {
        padding: 40px 15px;
    }

    h2 {
        font-size: 32px;
    }

    .rating-graph {
        padding-left: 15px;
    }

    .rating-bar .label {
        font-size: 14px;
    }

    .review {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .review-section {
        padding: 30px 15px;
    }

    h2 {
        font-size: 28px;
    }

    .rating-graph {
        padding-left: 10px;
    }

    .rating-bar .label {
        font-size: 12px;
    }

    .review {
        padding: 15px;
    }

    .review-header {
        flex-direction: column;
        align-items: center;
    }

    .review-name {
        margin-top: 10px;
    }

    .star-rating {
        margin-top: 5px;
    }

    .review-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 24px;
    }

    .review-header {
        flex-direction: column;
        align-items: center;
    }

    .review-name {
        font-size: 16px;
    }

    .reviewer-logo {
        width: 35px;
        height: 35px;
    }

    .star-rating {
        font-size: 18px;
    }

    .review-text {
        font-size: 13px;
    }
}



/* Pricing Section */
.pricing-section {
  background: #f9f9f9;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 300px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #13373a, #54d6d6);
  color: white;
  padding: 5px 15px;
  font-size: 0.9rem;
  border-radius: 20px;
  font-weight: bold;
}

.pricing-card h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #333;
}

.price {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
}

.cut-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
  font-size: 1rem;
}

.actual-price {
  font-weight: bold;
  color: #54d6d6;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  color: #555;
  font-size: 1rem;
}

.features li {
  margin-bottom: 10px;
}

.btn {
  background-color: #128C7E;
  border: none;
  padding: 12px 25px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #54d6d6;
}

.free-plan .btn {
  background-color: #54d6d6;
}

.free-plan .btn:hover {
  background-color: #128C7E;
}


.about-me {
    
    width: 80%;
    max-width: 900px;
    margin: 50px auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-size: 36px;
    color: #4A4A4A;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.3;
}

h2 {
    font-size: 26px;
    color: #1f2a40;
    margin-top: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    line-height: 1.8;
    font-size: 16px;
    color: #666;
    margin: 20px 0;
    font-weight: 400;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 5px;
    background-color: #333;
    color: white;
    margin-top: 50px;
    box-shadow: 0 -4px 10px #13373a;
}

/* Section Styles */
section {
    padding: 40px 20px;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        gap: 10px;
    }

    .navbar-links.active {
        display: block;
        background-color: #333;
        padding: 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .image-gallery {
        flex-direction: column;
        align-items: center;
    }

    .image-frame {
        width: 80%;
        margin-bottom: 20px;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}



.about-section {
  padding: 60px 20px;
  
  color: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.content {
  flex: 1 1 450px;
  min-width: 280px;
}

.content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.2);
}

.highlight {
  background: #54d6d6;
  color:#13373a ;
  font-weight: 700;
  padding: 0 6px;
  border-radius: 5px;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.15);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  background: #25d366;
  color: white;
  font-weight: 600;
  padding: 14px 25px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.1rem;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #1ebe57;
  box-shadow: 0 12px 20px rgba(27, 174, 89, 0.6);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.2));
}



/* Responsive */

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    gap: 30px;
  }

  .content, .image-container {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .content h2 {
    font-size: 2rem;
  }

  .btn-whatsapp {
    padding: 12px 20px;
    font-size: 1rem;
  }
}





