   /* Hide inactive slides */
   .slide {
       position: absolute;
       inset: 0;
       opacity: 0;
       visibility: hidden;
       transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
   }

   .slide.active {
       opacity: 1;
       visibility: visible;
   }

   /* Navigation dot styles */
   .nav-dot.active {
       background-color: white;
       transform: scale(1.2);
   }

   /* Button hover effect */
   .btn-hover {
       transition: all 0.3s ease;
   }

   .btn-hover:hover {
       transform: translateY(-2px);
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   }

   /* Full Circular Spinner Animation */
   .circle-spinner {
       width: 100px;
       height: 100px;
       border: 5px solid #d1d5db !important;
       /* Light Gray Background */
       border-top: 5px solid #001e4f !important;
       /* Gold Color */
       border-radius: 50%;
       animation: spin 2s linear infinite;
       position: absolute;
       top: 0;
       left: 0;
       /* z-index: -1;  */
       z-index: 1;
   }

   @keyframes spin {
       0% {
           transform: rotate(0deg);
       }

       100% {
           transform: rotate(360deg);
       }
   }

   .overlap-card {
       position: static;
       transform: none;
       margin-top: 30px;
   }

   .section-two {
       display: none;
   }

   @media (min-width: 992px) {
       .overlap-card {
           position: absolute;
           left: 50%;
           top: 100%;
           transform: translate(-50%, -50%);
           z-index: 10;
           margin-top: 0;
       }

       .section-two {
           display: block;
       }
   }

   @media (max-width: 576px) {
       .h-screen {
           height: 60vh !important;
       }

       .min-h-screen {
           min-height: 60vh !important;
       }
   }




   .popup-overlay {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.5);
       display: flex;
       align-items: center;
       justify-content: center;
       z-index: 1000;
       opacity: 0;
       visibility: hidden;
       transition: all 0.3s ease;
   }

   .popup-overlay.active {
       opacity: 1;
       visibility: visible;
   }

   .popup-container {
       position: relative;
       max-width: 900px;
       width: 90%;
       background: white;
       border-radius: 20px;
       overflow: hidden;
       box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
       transform: translateY(30px);
       transition: transform 0.3s ease;
   }

   .popup-overlay.active .popup-container {
       transform: translateY(0);
   }

   .close-btn {
       position: absolute;
       top: 20px;
       right: 25px;
       width: 30px;
       height: 30px;
       background: none;
       border: none;
       font-size: 24px;
       color: #666;
       cursor: pointer;
       z-index: 10;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .close-btn:hover {
       color: #000;
   }

   /* First Popup Styles */
   .popup-first {
       display: flex;
       height: auto;
       /* remove fixed height so both adjust naturally */
       align-items: flex-start;
       /* top-align both left and right sections */
   }

   .popup-left {
       flex: 1;
       background: transparent;
       position: relative;
       display: flex;
       align-items: flex-start;
       /* align image to top */
       justify-content: center;
       padding: 20px;
       /* optional spacing */
   }

   .popup-left img {
       max-width: 100%;
       height: auto;
       display: block;
   }



   .popup-right {
       flex: 1;
       padding: 60px 40px 40px;
       background: white;
   }

   .popup-title {
       font-size: 28px;
       font-weight: 700;
       color: #2c3e50;
       margin-bottom: 8px;
       line-height: 1.2;
   }

   .popup-subtitle {
       font-size: 14px;
       color: #666;
       margin-bottom: 30px;
   }

   .feature-item {
       display: flex;
       align-items: center;
       margin-bottom: 15px;
       color: #666;
       font-size: 14px;
   }

   .feature-icon {
       width: 20px;
       height: 20px;
       background: #e8f5e8;
       border-radius: 3px;
       margin-right: 12px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: #4caf50;
   }

   .cta-button {
       width: 100%;
       padding: 15px;
       background: linear-gradient(135deg, #2196f3, #1976d2);
       color: white;
       border: none;
       border-radius: 8px;
       font-size: 16px;
       font-weight: 600;
       cursor: pointer;
       margin: 20px 0;
       transition: transform 0.2s;
   }

   .cta-button:hover {
       transform: translateY(-2px);
   }

   .secondary-text {
       text-align: center;
       color: #666;
       font-size: 14px;
   }

   /* Second Popup Styles */
   .popup-second {
       display: flex;
       height: 400px;
   }

   .popup-second-left {
       flex: 1;
       background: rgb(37, 72, 136);
       padding: 50px;
       color: white;
       display: flex;
       flex-direction: column;
       justify-content: center;
   }

   .second-title {
       font-size: 24px;
       font-weight: 300;
       color: #ffd700;
       margin-bottom: 20px;
   }

   .second-tagline {
       font-size: 20px;
       color: #ff6b6b;
       margin-bottom: 30px;
       font-weight: 300;
   }

   .second-feature {
       display: flex;
       align-items: center;
       margin-bottom: 20px;
   }

   .check-icon {
       width: 20px;
       height: 20px;
       background: #4caf50;
       border-radius: 3px;
       margin-right: 15px;
       display: flex;
       align-items: center;
       justify-content: center;
       color: white;
       font-size: 14px;
   }

   .input-field {
       width: 100%;
       padding: 15px;
       border: 2px solid #34495e;
       border-radius: 8px;
       background: transparent;
       color: white;
       font-size: 16px;
       margin: 20px 0;
   }

   .input-field::placeholder {
       color: #bdc3c7;
   }

   .appointment-btn {
       width: 100%;
       padding: 15px;
       background: linear-gradient(135deg, #3b82f6, #1d4ed8);
       color: white;
       border: none;
       border-radius: 8px;
       font-size: 16px;
       font-weight: 600;
       cursor: pointer;
       transition: transform 0.2s;
   }

   .appointment-btn:hover {
       transform: translateY(-2px);
   }

   .popup-second-right {
       flex: 1;
       background: linear-gradient(135deg, #a8b8c8, #c8d0d8);
       display: flex;
       align-items: center;
       justify-content: center;
       position: relative;
   }

   .appointment-img {
       display: none;
   }

   .content-placeholder {
       text-align: center;
       padding: 40px;
       color: #666;
   }

   @media (max-width: 768px) {

       .popup-first,
       .popup-second {
           flex-direction: column;
           height: auto;
       }

       .popup-left,
       .popup-second-left {
           min-height: 200px;
       }

       .popup-right,
       {
       padding: 30px 25px;
   }

   .popup-second-right {
       display: none !important;
   }
   }

   .banner-desc {
       width: 400px;
       text-align: justify;
   }

   @media only screen and (max-width: 600px) {
       .banner-desc {
           width: 100%;
           text-align: start;

       }
   }

   #uc-contact-modal {
       position: fixed;
       inset: 0;
       z-index: 50;
       display: flex;
       align-items: center;
       justify-content: center;
       background-color: rgba(0, 0, 0, 0.8);
       padding: 1rem;
       display: none;
   }

   #uc-contact-modal.active {
       display: flex;
       /* show when active */
   }


   #uc-contact-modal .popup-container {
       display: flex;
       width: 100%;
       max-width: 900px;
       border-radius: 0.5rem;
       overflow: hidden;
       background: transparent;
       box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
           0 10px 10px -5px rgba(0, 0, 0, 0.04);
       position: relative;
   }

   #uc-contact-modal .popup-left {
       flex: 2;
       background-image: url('/odon/static/web/assets/images/popups.png');
       background-size: cover;
       background-position: left;
       min-height: 500px;
   }

   #uc-contact-modal .popup-right {
       position: absolute;
       top: 2.5rem;
       right: 2.5rem;
       width: 100%;
       height: 100%;
       background-color: white;

       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       text-align: center;
       border-radius: 0.5rem;
       box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
           0 10px 10px -5px rgba(0, 0, 0, 0.04);
   }

   @media screen and (min-width: 640px) {
       #uc-contact-modal .popup-right {
           position: relative;
           width: 100px !important;
           background-color: transparent;
           padding: 0;
           box-shadow: none;
       }

       #uc-contact-modal .popup-right>.popup-content {
           background-color: white;
           border-radius: 0.5rem;
           padding: 2rem;
           box-shadow: 0 25px 30px rgba(0, 0, 0, 0.1);
           height: 400px;
           display: flex;
           flex-direction: column;
           align-items: center;
           justify-content: center;
           text-align: center;
       }
   }

   #uc-contact-modal .close-btn {
       position: absolute;
       top: 4rem;
       right: 3rem;
       font-size: 1.5rem;
       color: #6b7280;
       background: none;
       border: none;
       cursor: pointer;
   }

   #uc-contact-modal .close-btn:hover {
       color: #1f2937;
   }

   @media screen and (min-width: 640px) {
       #uc-contact-modal .close-btn {
           top: 1rem;
           right: 1rem;
       }
   }

   #uc-contact-modal form {
       display: flex;
       flex-direction: column;
       gap: 1rem;
       width: 100%;
   }

   #uc-contact-modal input {
       width: 100%;
       padding: 0.5rem;
       font-size: 0.875rem;
       border: 1px solid #d1d5db;
       border-radius: 0.375rem;
       background-color: #f9fafb;
       outline: none;
   }

   #uc-contact-modalinput:focus {
       border-color: #3b82f6;
       box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
   }

   #uc-contact-modal button {
       padding: 0.25rem 1rem;
       background-color: #2563eb;
       color: white;
       font-size: 1rem;
       border-radius: 0.375rem;
       border: none;
       cursor: pointer;
       transition: 0.3s;
   }

   #uc-contact-modal button:hover {
       background-color: #1d4ed8;
   }

   /* Hide image on small screens */
   @media (max-width: 640px) {

       #uc-contact-modal .popup-left {
           display: none !important;
           /* hide image */
       }

       .pop-left-img {
           display: block !important;
           padding-right: 10px !important;
       }

       #uc-contact-modal .pop-left-img {
           display: none !important;
           padding-right: 10px !important;
       }

       #uc-contact-modal .popup-container {
           flex-direction: column;
           align-items: center;
           /* center horizontally */
           justify-content: center;
           /* center vertically */
       }

       #uc-contact-modal .popup-right {
           position: relative !important;
           width: 100% !important;
           max-width: 400px;
           /* optional: limit form width */
           height: auto !important;
           background-color: transparent !important;
           box-shadow: none !important;

           display: flex;
           align-items: center;
           /* center content vertically */
           justify-content: center;
           /* center content horizontally */
           top: 0 !important;
           right: 0 !important;

       }

       #uc-contact-modal .popup-content {
           width: 100%;
           background: white;
           padding: 1.5rem;
           border-radius: 0.5rem;
           box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
           text-align: center;
           /* keep text centered */
       }

       .appointment-img {
           display: block;
       }
   }