
/*gardenia-enquiry-pagecss*/
        /* ---------- RESET ---------- */
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          font-family: "Poppins", sans-serif;
        }

       /* .main-container {
          background-color: #f3f3f3;
          display: flex;
          justify-content: center;
          align-items: flex-start; */
          /* padding: 20px 0; */
          /* position: relative;
          overflow-x: hidden;
           font-family: "Poppins", sans-serif;
        } */
.main-container {
    background-color: #f3f3f3;
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center;     /* centers vertically */
    min-height: 100vh;       /* ensures container takes full viewport height */
    width: 100%;
    position: relative;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    padding: 20px;           /* optional padding inside container */
    box-sizing: border-box;  /* ensures padding doesn't break centering */
    left: 25%;
    /* transform: translateX(-50%); */
}

        /* FLOATING BUBBLES ANIMATION - Added keyframes and bubble styling */
        @keyframes float {

          0%,
          100% {
            transform: translateY(0px) translateX(0px);
            opacity: 0.3;
          }

          25% {
            transform: translateY(-20px) translateX(15px);
            opacity: 0.5;
          }

          50% {
            transform: translateY(-40px) translateX(-10px);
            opacity: 0.3;
          }

          75% {
            transform: translateY(-20px) translateX(20px);
            opacity: 0.4;
          }
        }

        @keyframes float-slow {

          0%,
          100% {
            transform: translateY(0px) translateX(0px);
            opacity: 0.2;
          }

          50% {
            transform: translateY(-30px) translateX(25px);
            opacity: 0.4;
          }
        }

        @keyframes float-fast {

          0%,
          100% {
            transform: translateY(0px) translateX(0px);
            opacity: 0.35;
          }

          33% {
            transform: translateY(-25px) translateX(-20px);
            opacity: 0.5;
          }

          66% {
            transform: translateY(-15px) translateX(15px);
            opacity: 0.3;
          }
        }

        .bubble {
          position: fixed;
          border-radius: 50%;
          /*background:linear-gradient(92.4deg, #14ae5c 40.88%, #042515 99.76%);*/
          border: 1px solid rgba(23, 162, 184, 0.2);
          pointer-events: none;
          z-index: 1;
        }

        .bubble:nth-child(1) {
          width: 80px;
          height: 80px;
          top: 10%;
          left: 5%;
          animation: float 8s infinite ease-in-out;
        }

        .bubble:nth-child(2) {
          width: 60px;
          height: 60px;
          top: 20%;
          right: 10%;
          animation: float-slow 12s infinite ease-in-out;
          animation-delay: 2s;
        }

        .bubble:nth-child(3) {
          width: 100px;
          height: 100px;
          top: 50%;
          left: 8%;
          animation: float-fast 10s infinite ease-in-out;
          animation-delay: 1s;
        }

        .bubble:nth-child(4) {
          width: 70px;
          height: 70px;
          top: 60%;
          right: 5%;
          animation: float 9s infinite ease-in-out;
          animation-delay: 3s;
        }

        .bubble:nth-child(5) {
          width: 50px;
          height: 50px;
          bottom: 15%;
          left: 15%;
          animation: float-slow 11s infinite ease-in-out;
          animation-delay: 1.5s;
        }

        .bubble:nth-child(6) {
          width: 90px;
          height: 90px;
          bottom: 20%;
          right: 12%;
          animation: float-fast 13s infinite ease-in-out;
          animation-delay: 2.5s;
        }
        

        /* ---------- CONTAINER ---------- */
        .preview-container {
          background: #fff;
          width: 100%;
          max-width: 1000px;
          border-radius: 8px;
           box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
          position: relative;
           /*z-index: 10; */
          /* left: 25%; */
              padding-top: 10px;
    padding-bottom: 30px;
    margin: auto;
        }

        .preview-header {
          position: sticky;
          top: 0;
          z-index: 10;
          background-color: #fafafa;
        }

        /* ---------- HEADER ---------- */
        .preview-header {
          display: block;
          justify-content: space-between;
          align-items: center;
          padding: 16px 20px;
          border-bottom: 1px solid #e0e0e0;
          background-color: #fafafa;
          position: sticky;
          top: 0;
          z-index: 10;
          text-align: center;
        }

        .preview-header h2 {
          font-size: 1.2rem;
          color: #333;
          font-weight: 600;
        }

        .close-btn {
          font-size: 20px;
          cursor: pointer;
          color: #666;
        }

        /* ---------- SECTION 1 ---------- */
        .preview-content {
          padding: 20px;
          text-align: center;
        }

        .subheading {
          font-size: 1rem;
          color: #555;
          font-weight: 500;
          margin-bottom: 5px;
        }

        .for-client {
          color: #888;
          font-size: 0.9rem;
          margin-bottom: 20px;
        }

        .image-section {
          width: 100%;
          overflow: hidden;
          border-radius: 8px;
          margin-bottom: 20px;
        }

        .image-section img {
          width: 100%;
          border-radius: 8px;
          object-fit: cover;
        height: 450px;
        }

        /* Initial hidden state */
        .image-section img {
          width: 100%;
          border-radius: 8px;
          object-fit: cover;

          opacity: 0;
          transform: translateY(50px);
          transition: all 0.8s ease-out;
        }

        /* Active state when visible */
        .image-section img.reveal {
          opacity: 1;
          transform: translateY(0);
        }

        .main-heading {
          font-size: 1.5rem;
          color: #222;
          font-weight: 700;
          margin-bottom: 20px;
        }

        /* ---------- SECTION 2 ---------- */
        .details-section {
          padding: 10px 40px;
          text-align: left;
          border-top: 1px solid #eaeaea;
          background-color: #fff;
        }

        .details-title {
          font-size: 1.6rem;
          font-weight: 700;
          color: #2d2d2d;
          line-height: 1.4;
          margin-bottom: 15px;
        }

        .details-text {
          font-size: 1rem;
          color: #444;
          line-height: 1.6;
          margin-bottom: 10px;
        }

        .details-stats {
          font-size: 1rem;
          color: #333;
          font-weight: 500;
          margin: 15px 0 25px;
        }

        /* ---------- BUTTON ---------- */
        .cta-button {
          display: flex;
          align-items: center;
          justify-content: space-between;
          /*background-color: #17a2b8;*/
          background:linear-gradient(92.4deg, #14ae5c 40.88%, #042515 99.76%);
          color: #fff;
          text-decoration: none;
          padding: 14px 20px;
          border-radius: 6px;
          font-size: 0.95rem;
          font-weight: 500;
          transition: background 0.3s ease;
          width: 100%;
          position: relative;
          gap: 10px;
          word-break: break-all;
        }

        /* Link icon styling */
        .link-icon {
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .link-icon img {
          width: 18px;
          height: 18px;
          object-fit: contain;
          filter: brightness(0) invert(1);
        }

        /* Add arrow after text */
        .cta-button::after {
          content: "›";
          font-size: 1.3rem;
          font-weight: bold;
          color: #fff;
          transition: transform 0.3s ease;
          margin-left: 8px;
        }

        /* Hover effect */
        .cta-button:hover::after {
          transform: translateX(4px);
        }

        /* Third section styling */
        /* General styling */
        .contact-map-area {
          padding: 60px 20px;
        }

        /* Section 2 */
        .iconia-section {
          background-color: #f9f9f9;
          text-align: center;
        }

        .iconia-section h2 {
          font-size: 26px;
          font-weight: 700;
          color: #222;
          margin-bottom: 15px;
        }

        .iconia-section p {
          color: #555;
          margin: 5px 0;
          font-size: 16px;
        }

        .iconia-link {
          display: inline-block;
          background-color: #10a3b5;
          color: #fff;
          text-decoration: none;
          padding: 14px 24px;
          border-radius: 8px;
          margin-top: 20px;
          font-weight: 600;
          position: relative;
          transition: background 0.3s ease;
        }

        /* Arrow pseudo-element */
        .iconia-link::after {
          content: "→";
          font-weight: bold;
          margin-left: 10px;
          transition: transform 0.3s ease;
        }

        .iconia-link:hover {
          background-color: #0e8fa0;
        }

        .iconia-link:hover::after {
          transform: translateX(5px);
        }

        /* Section 3 */
        .gallery-section {
          background: #fff;
          text-align: center;
          padding: 10px 40px;
        }

        .gallery-section h2 {
          font-size: 28px;
          font-weight: 700;
          color: #333;
          margin-bottom: 30px;
        }

        /* Block-level images */
        .image-blocks img {
          display: block;
          width: 100%;
          height: 450px;
          margin-bottom: 25px;
          border-radius: 12px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease;
        }

        .image-blocks img:hover {
          transform: scale(1.03);
        }

        /* Video block */
        .video-block {
          display: block;
          width: 100%;
          max-width: 900px;
          margin: 0 auto;
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .shared-card {
          padding: 30px 20px;
          background: #fff;
          text-align: center;
          border-radius: 10px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          margin-top: 40px;
        }

        .shared-by-text {
          font-weight: 600;
          font-size: 14px;
          color: #444;
          margin-bottom: 15px;
        }

        .profile-section .profile-image {
          width: 96px;
          height: 96px;
          border-radius: 50%;
          object-fit: cover;
          margin-bottom: 12px;
        }

        .profile-name {
          font-size: 18px;
          font-weight: 600;
          margin: 4px 0;
        }

        .profile-phone,
        .profile-company {
          font-size: 14px;
          margin: 2px 0;
          color: #666;
        }

        .contact-buttons {
          display: flex;
          justify-content: center;
          gap: 12px;
          margin-top: 20px;
          flex-wrap: wrap;
        }

        .contact-btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 12px 18px;
          font-size: 14px;
          font-weight: 500;
          color: #fff;
          border-radius: 6px;
          text-decoration: none;
          position: relative;
          padding-left: 36px;
          min-width: 100px;
        }

        /* Call Button */
        /*.contact-btn.call {*/
        /*  background-color: #17a2b8;*/
        /*}*/

        .contact-btn.call::before {
          content: '';
          position: absolute;
          left: 12px;
          width: 16px;
          height: 16px;
          background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1.003 1.003 0 011.11-.21c1.21.49 2.53.76 3.91.76.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.01c.55 0 1 .45 1 1 0 1.38.27 2.7.76 3.91.16.37.07.8-.21 1.11l-2.2 2.2z"/></svg>');
          background-size: contain;
          background-repeat: no-repeat;
        }

        /* SMS Button */
        /*.contact-btn.sms .contact-btn.whatsapp .contact-btn.call{*/
          /*background-color: #17a2b8;*/
        /*}*/

        .contact-btn.sms::before {
          content: '';
          position: absolute;
          left: 12px;
          width: 16px;
          height: 16px;
          background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 2H4a2 2 0 00-2 2v16l4-4h14a2 2 0 002-2V4a2 2 0 00-2-2z"/></svg>');
          background-size: contain;
          background-repeat: no-repeat;
        }

        /* WhatsApp Button */
        /*.contact-btn.whatsapp {*/
        /*  background-color: #17a2b8;*/
        /*}*/

        .contact-btn.whatsapp::before {
          content: '';
          position: absolute;
          left: 12px;
          width: 16px;
          height: 16px;
          background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16.003 2.003C8.823 2.003 3 7.826 3 15.003c0 2.648.727 5.17 2.108 7.382L3 29l6.846-2.072a13.038 13.038 0 006.157 1.58c7.18 0 13.004-5.823 13.004-13C29.004 7.826 23.181 2.003 16.003 2.003zm7.479 18.694c-.313.875-1.813 1.64-2.522 1.75-.672.094-1.531.125-2.469-.156-.563-.156-1.281-.406-2.219-.844-3.906-1.75-6.469-6.25-6.656-6.531-.188-.281-1.594-2.125-1.594-4.063 0-1.937 1.031-2.875 1.406-3.25.344-.344.75-.437.969-.437.219 0 .469 0 .656.031.219.031.5-.031.781.594.313.719 1.063 2.5 1.156 2.688.094.188.156.406.031.625-.125.219-.188.375-.344.563-.156.188-.313.406-.469.563-.156.156-.313.344-.156.625.156.281.688 1.125 1.469 1.813 1.031.906 1.906 1.219 2.188 1.375.281.156.438.125.594-.094.188-.281.688-.813.875-1.094.188-.281.375-.219.625-.125.25.094 1.563.719 1.813.844.25.125.438.188.5.281.063.094.063.875-.25 1.75z"/></svg>');
          background-size: contain;
          background-repeat: no-repeat;
        }

        .footer-credit {
          font-size: 14px;
          color: #999;
          margin-top: 25px;
          text-align: center;
          font-weight: 500;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 6px;
        }

        .footer-credit::before {
          content: '';
          width: 16px;
          height: 16px;
          display: inline-block;
          background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23f5b301" viewBox="0 0 24 24"><path d="M7 2v10h3v10l7-12h-4l3-8z"/></svg>');
          background-size: contain;
          background-repeat: no-repeat;
        }

        /* ---------- RESPONSIVE ---------- */
        @media (max-width: 787px) {
          .preview-container {
            width: 100%;
          }

          .preview-content .preview-header {
            padding: 10px 20px;
          }

          .shared-card .contact-map-area {
            padding: 10px 20px;
          }

          .details-section {
            padding: 10px 20px;
          }

          .gallery-section {
            padding: 10px 20px;
          }

          .cta-button {
            flex-wrap: nowrap;
            justify-content: space-between;
            font-size: 0.9rem;
            padding: 12px 16px;
          }

          .cta-button::after {
            margin-left: 8px;
          }

          .link-icon img {
            width: 16px;
            height: 16px;
          }
          
        .image-section img{
          height: 300px;
          width: 100%;
        }
        .image-blocks img{
           height: 250px;
          width: 100%;
        }
        }