/********** Template CSS **********/

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.privacy-policy {
    max-width: 900px;
    margin: auto;
    padding: 30px;
    line-height: 1.7;
}

.privacy-policy h1,
.privacy-policy h3 {
    margin-top: 20px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 15px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 0;
    outline: none;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary)
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-right: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.terms-conditions {
    max-width: 900px;
    margin: auto;
    padding: 30px;
    line-height: 1.7;
}

.terms-conditions h1,
.terms-conditions h3 {
    margin-top: 20px;
}

.order-link {
    transition: all 0.3s ease;
}

.order-link:hover {
    
    box-shadow: 0 0 10px ;
}
.order-link {
    transition: all 0.25s ease;
}.order-link:hover {
    
    box-shadow: 0 0 10px ;
}


.order-link:hover {
       /* Bootstrap primary color */
    outline-offset: 4px;          /* space between box & outline */
    border-radius: 8px;
}
/* Overlay */

.faq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* Popup Box */
.faq-popup {
  background: #011f1f;
  width: 92%;
  max-width: 520px;
  border-radius: 14px;
  padding: 28px 26px;
  position: relative;
  font-family: "Inter", "Segoe UI", sans-serif;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Title */
.faq-popup h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

/* Close Button */
.faq-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: #ffffff;
  transition: 0.2s ease;
}

.faq-close:hover {
    color: #555;
}

/* Slide Up Animation */
.slide-up {
  animation: slideUp 0.45s ease;
}

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

/* FAQ Item */
.faq-item {
  background: #021f1f;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 14px;
}

/* Question */
.faq-item h5 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffffff;
}

/* Answer */
.faq-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* Pointer Style Icons */
.faq-item h5::before {
  content: "▶";
  color: #ffffff;
  margin-right: 8px;
  font-size: 12px;
}

/* Mobile Friendly */
@media (max-width: 480px) {
  .faq-popup {
    padding: 22px 18px;
  }

  .faq-popup h3 {
    font-size: 20px;
  }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -100px;
    padding-top: 150px;
    background: url(../img/hero-bg.jpg) top center no-repeat;
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.header-carousel {
    position: relative;
    padding: 45px 90px 45px 0;
}

.header-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 2px solid var(--bs-white);
    transition: .5s;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: var(--bs-white);
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Project ***/
.project-item img {
    transition: .5s;
}
  
.project-item:hover img {
    transform: scale(1.2);
}
  
.project-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 30px 25px;
    transition: .5s;
}

.service-item.bg-primary:hover {
    background: var(--bs-light) !important;
}

.service-item.bg-primary p {
    color: var(--bs-light);
    transition: .5s;
}

.service-item.bg-primary:hover p {
    color: var(--bs-secondary);
}

.service-item.bg-light:hover {
    background: var(--bs-primary) !important;
}

.service-item.bg-light p {
    color: var(--bs-secondary);
    transition: .5s;
}

.service-item.bg-light:hover p {
    color: var(--bs-light);
}


.service-item .service-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
}

.service-item.bg-primary .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: .5s;
}

.service-item.bg-primary:hover .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
}

.service-item.bg-light .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
    transition: .5s;
}

.service-item.bg-light:hover .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
}


/*** Our Team ***/
.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}

.team-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-text h5 {
    position: relative;
    padding-left: 45px;
}

.testimonial-text h5::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    position: absolute;
    height: 17px;
    bottom: 0;
    right: 0;
    left: auto;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 2px solid var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-dots {
        left: 0;
        right: auto;
    }

    .testimonial-carousel .owl-dot {
        margin-right: 10px;
        margin-left: 0;
    }
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/hero-bg.jpg) bottom right no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-white);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: var(--bs-white);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.service-slider-container {
  position: relative;
  height: 300px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

/* Slides */
.service-slide {
  position: absolute;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
  filter: blur(6px);
}

.service-slide h2 {
  font-size: 36px;
  font-weight: 700;
}

/* Active slide */
.service-slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Description box */
.service-desc-box {
  position: absolute;
  bottom: 5px;
  right: 20px;
  background: #011f1f;
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  max-width: 260px;
  animation: fadeUp 0.6s ease;
}

/* Animation */

/* Slides base */
.service-slide {
  position: absolute;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.7s ease, opacity 0.7s ease;
  text-align: center;
}

/* Active slide (center) */
.service-slide.active {
  opacity: 1;
  transform: translateX(0);
}

/* Slide out to left */
.service-slide.exit-left {
  transform: translateX(-100%);
  opacity: 0;
}

/* Slide out to right */
.service-slide.exit-right {
  transform: translateX(100%);
  opacity: 0;
}

/* Icon */
.service-icon {
  font-size: 50px;
  margin-bottom: 15px;
  color: #011f1f;
  opacity: 0.9;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #011f1f;
  cursor: pointer;
  padding: 8px 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  z-index: 10;
  user-select: none;
  transition: 0.3s ease;
}

.slider-arrow:hover {
  background: #011f1f;
}

.slider-arrow.left {
  left: 15px;
}

.slider-arrow.right {
  right: 15px;
}




/* =========================
   MOBILE UI IMPROVEMENTS
   ========================= */

@media (max-width: 768px) {

  .why-main-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .why-animated-box {
    flex-direction: column;
    gap: 25px;
    min-height: 260px;
    text-align: center;
  }

  /* ICON */
  .why-icon-box {
    font-size: 48px;
    height: 70px;
  }

  .why-icon-box i {
    top: -90px;
  }

  /* Adjust icon animations for mobile */
  @keyframes iconDrop {
    from {
      top: -90px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes iconExit {
    from {
      top: 0;
      opacity: 1;
    }
    to {
      top: 90px;
      opacity: 0;
    }
  }

  /* TEXT */
  .why-text-box {
    max-width: 100%;
    padding: 0 10px;
  }

  .why-text-box h4 {
    font-size: 18px;
    transform: translateY(-20px);
  }

  .why-text-box p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Softer text animations on mobile */
  @keyframes titleSlide {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Right-side navbar logo */
.navbar-right-logo img {
  height: 36px;
  width: auto;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .navbar-right-logo {
    margin-top: 10px;
  }

  .navbar-right-logo img {
    height: 28px;
  }
}

/* title dec */

.slider-viewport {
    height: 180px; /* Adjust height to show roughly 1.5 - 2 items */
    overflow: hidden;
    position: right;
    display: flex;
    padding: 5px;
    justify-content: flex-start;
    
}

.slider-track {
    display: flex;
    flex-direction: column;
    animation: slide-down-loop 15s infinite ease-in-out;
}

.slider-item {
    height: 180px; /* Height of one item */
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: flex-start;
    transition: filter 0.3s;
}

@keyframes slide-down-loop {
    /* Start at the first 'real' item (skip the clone) */
    0%, 14% { transform: translateY(-190px); }
    
    16%, 30% { transform: translateY(-360px); }
    33%, 47% { transform: translateY(-540px); }
    50%, 64% { transform: translateY(-720px); }
    66%, 80% { transform: translateY(-900px); }
    83%, 97% { transform: translateY(-1080px); }
    
    /* Smooth transition to the final clone before resetting */
    100% { transform: translateY(-1260px); }
}


/* title dec */

/* 1. THE DESIGNATED BOX */
.slider-container {
  height: 180px;
  width: 100%;
  max-width: 500px;
  margin-left: auto; /* Aligns box to the right */
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}

/* 2. THE WRAPPER (Stacking context) */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
}

/* 3. THE ITEMS (Fade Logic) */
.slider-wrapper p {
  position: absolute; /* Stack all items on top of each other */
  top: 0;
  right: 0;
  width: 100%;
  height: 180px;
  margin: 0;
  padding: 0 30px;
  opacity: 0; /* Hidden by default */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  backdrop-filter: blur(8px);
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.5;
  box-sizing: border-box;
  
  /* Applying the fade animation */
  animation: fade-loop 15s infinite ease-in-out;
}

/* 4. DELAY LOGIC (3s per slide: 18s total / 6 items) */
.slider-wrapper p:nth-child(1) { animation-delay: 0s; }
.slider-wrapper p:nth-child(2) { animation-delay: 2.5s; }
.slider-wrapper p:nth-child(3) { animation-delay: 5s; }
.slider-wrapper p:nth-child(4) { animation-delay: 7.5s; }
.slider-wrapper p:nth-child(5) { animation-delay: 10s; }
.slider-wrapper p:nth-child(6) { animation-delay: 12.5s; }

/* 5. FADE ANIMATION */
@keyframes fade-loop {
  0% { opacity: 0; }
  10% { opacity: 1; }  /* Fade in quick */
  20% { opacity: 1; } /* Stay visible */
  20% { opacity: 0; } /* Fade out */
  0% { opacity: 0; }
}

/* dropdown */


/* Logo */
.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #0c6b67;
    object-fit: cover;
    cursor: pointer;
}

/* Glass Container */
.glass-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(-20px);
    -webkit-backdrop-filter: blur(-20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-25px);
    transition: all 0.45s ease;
    z-index: 9999;
}

/* Active */
.glass-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* List */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

/* Items */
.menu-list li {
    width: 100%;
    text-align: center;
}

/* Links */
.menu-list a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
.menu-list a:hover {
    background: rgba(13, 110, 253, 0.85);
    color: #fff;
}

/* Active Page */
.menu-list a.active {
    background: #0c6b67;
}

/* Desktop Dropdown Style */
@media (min-width: 992px) {
    .glass-menu {
        position: absolute;
        inset: auto;
        top: 60px;
        left: 0;
        width: 220px;
        height: auto;
        border-radius: 14px;
        background: rgba(255,255,255,0.9);
        transform: translateY(10px);
    }

    .menu-list {
        align-items: stretch;
        padding: 8px;
    }

    .menu-list a {
        font-size: 16px;
        color: #000;
        padding: 10px 14px;
        border-radius: 8px;
    }

    .menu-list a:hover {
        background: #0c6b67;
        color: #fff;
    }
}

/* moiblie drop down */

/* ===== MOBILE DROPDOWN STYLE ===== */
@media (max-width: 991px) {

    .glass-menu {
        position: absolute;
        inset: auto;
        top: 52px;          /* just below navbar */
        left: 12px;
        width: 200px;
        height: auto;
        border-radius: 12px;
        background: rgba(228, 239, 231, 0.92); /* glass */
        box-shadow: 0 10px 28px rgba(0,0,0,0.15);
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: all 0.25s ease;
        z-index: 1000;
    }

    /* Visible state */
    .glass-menu.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Menu list */
    .menu-list {
        list-style: none;
        padding: 6px;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    /* Links */
    .menu-list a {
        font-size: 15px;
        font-weight: 500;
        color: #0c6b67;
        padding: 10px 12px;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease;
    }

    /* Hover / tap */
    .menu-list a:hover,
    .menu-list a:active {
        background: #0c6b67;
        color: #e4efe7;
    }

    /* Active page */
    .menu-list a.active {
        background: rgba(12, 107, 103, 0.85);
        color: #e4efe7;
    }
}

/* navebar faq */ 

/* 3-line icon */
.faq-btn {
    position: fixed;        /* 🔥 stick to screen */
    top: 35px;              /* adjust to navbar height */
    right: 75px;            /* ✅ TOUCH RIGHT EDGE */
    width: 36px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 900;          /* above navbar */
}

.faq-btn span {
    height: 3px;
    width: 100%;
    background: #0c6b67;
    border-radius: 3px;
}

/* Dropdown (RIGHT) */

.faq-dropdown {
    position: fixed;        /* 🔥 relative to screen */
    top: 60px;              /* adjust to navbar height */
    right: 0;               /* ✅ TOUCHES RIGHT SCREEN */
    left: auto;

    width: 220px;
    background: rgba(228, 239, 231, 0.95);
    backdrop-filter: blur(14px);
    border-radius: 12px 0 0 12px; /* nice edge fit */
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);

    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 1000;
}

/* Show dropdown */
.faq-dropdown.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* List */
.faq-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 8px;
}

/* Links */
.faq-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #0c6b67;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

/* Hover */
.faq-dropdown li a:hover {
    background: #0c6b67;
    color: #e4efe7;
}


/* faq drop */ 

.fraq-overlay {
    position: fixed;          /* 🔥 viewport-based */
    inset: 0;
    display: none;

    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);

    z-index: 99999;           /* 🔥 ABOVE NAV + DROPDOWN */
}

.fraq-popup {
    background: #e4efe7;
    width: 90%;
    max-width: 420px;
    border-radius: 14px;
    padding: 20px;

    animation: fraqSlideUp 0.35s ease;
}

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

.fraq-close {
    float: right;
    cursor: pointer;
    font-size: 18px;
    color: #0c6b67;
}


/* ===== Comment Section Wrapper ===== */
.comment-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  font-family: "Poppins", system-ui, sans-serif;
}

/* ===== Title ===== */
.comment-section h3 {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  color: #021f1f;
}

/* ===== Form ===== */
#commentForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#commentForm input,
#commentForm textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  font-size: 14px;
  transition: 0.3s ease;
  background: #fafafa;
}

#commentForm textarea {
  resize: none;
  min-height: 120px;
}

/* Focus effect */
#commentForm input:focus,
#commentForm textarea:focus {
  outline: none;
  border-color: #4f46e5;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

/* ===== Button ===== */
#commentForm button {
  margin-top: 6px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #021f1f;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

#commentForm button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(79,70,229,0.3);
}

/* ===== Message Text ===== */
#msg {
  font-size: 13px;
  margin-top: 6px;
  color: #16a34a;
}

/* ===== Comment List ===== */
#commentList {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== Single Comment Card ===== */
.comment {
  background: #f9fafb;
  border-radius: 12px;
  padding: 16px 18px;
  animation: fadeUp 0.4s ease;
}

/* Name */
.comment strong {
  font-size: 14px;
  color: #111827;
}

/* Comment text */
.comment p {
  margin: 8px 0 10px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

/* Date */
.comment small {
  font-size: 12px;
  color: #6b7280;
}

/* ===== Animation ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Mobile Optimization ===== */
@media (max-width: 600px) {
  .comment-section {
    margin: 20px;
    padding: 20px;
  }

  .comment-section h3 {
    font-size: 20px;
  }
}

/* ===== Comment Layout with Avatar ===== */
.comment {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* ===== Avatar Circle ===== */
.avatar {
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #98cce4;
  color: #021f1f;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 2px rgba(56,241,241,0.25),
    0 8px 18px rgba(56,241,241,0.45);
  flex-shrink: 0;
}

/* ===== Comment Body ===== */
.comment-body {
  flex: 1;
}

/* Hover glow (luxury feel) */
.comment:hover .avatar {
  box-shadow:
    0 0 0 3px rgba(56,241,241,0.45),
    0 12px 28px rgba(56,241,241,0.7);
  transform: scale(1.05);
  transition: 0.3s ease;
}


.load-more {
  background: transparent;
  border: 1px solid #021f1f;
  color: #021f1f;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  margin: 20px auto;
  display: none;
}

.load-more:hover {
  background: #021f1f;
  color: #fff;
}


/* order */

/* ===== Order Section (White Background Friendly) ===== */
.order-section {
  max-width: 720px;
  margin: 80px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Title */
.order-section h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #021f1f;
  font-weight: 600;
}

/* ===== Inputs: NO BOX STYLE ===== */
#orderForm input,
#orderForm select,
#orderForm textarea {
  width: 100%;
  padding: 14px 6px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #cfdede;
  color: #021f1f;
  font-size: 15px;
  transition: 0.3s ease;
}

/* Placeholder */
#orderForm input::placeholder,
#orderForm textarea::placeholder {
  color: #7a9a9a;
}

/* Focus effect */
#orderForm input:focus,
#orderForm select:focus,
#orderForm textarea:focus {
  outline: none;
  border-bottom-color: #021f1f;
}

/* Textarea */
#orderForm textarea {
  resize: none;
  min-height: 120px;
}

/* Select dropdown */
#orderForm select {
  cursor: pointer;
  background-color: transparent;
}

/* File upload */
#fileUpload {
  border-bottom: 2px dashed #cfdede;
  padding-bottom: 12px;
}

/* Button */
#orderForm button {
  margin-top: 24px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #021f1f;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

#orderForm button:hover {
  background: #043333;
  transform: translateY(-2px);
}

/* Message */
#orderMsg {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  color: #021f1f;
}


