 body {
     font-family: Arial, sans-serif;
     background: #fff;
     margin: 0;
     padding: 0;
 }

 /* 🔹 Border Frame */
 .border-frame {
    border-left: 40px solid transparent;   /* Left border */
    border-right: 40px solid transparent;  /* Right border */
    border-top: none;                      /* Remove top */
    border-bottom: none;                   /* Remove bottom */

    border-image-source: url("../../frontend/img/border.png");
    border-image-slice: 256;  /* Adjust according to your image */
    border-image-repeat: round;
    border-image-width: 40px; /* Matches left/right border size */

    margin: 0 250px;
 }

 /* 🔹 Header Layout */
 .header-top {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 20px;
     background: #fff;
     flex-wrap: wrap;
     /* allow wrapping on small screens */
 }

 /* 🔹 Logo */
 .logo img {
     height: 100px;
     border-radius: 10px;
     max-width: 100%;
 }

 /* 🔹 Contact Section */
 .contact-box {
     display: flex;
     align-items: center;
     gap: 15px;
     flex-wrap: wrap;
     margin-top: 10px;
     border: none !important;
 }

 .whatsapp-box {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
 }

 .whatsapp-icon {
     font-size: 36px;
     color: #25D366;
 }

 .whatsapp-text {
     font-size: 13px;
     font-weight: bold;
     color: #000;
     margin-top: 4px;
 }

 .contact-number {
     border: 1.5px solid #770415;
     border-radius: 20px;
     padding: 6px 16px;
     text-align: center;
 }

 .contact-number h3 {
     margin: 0;
     font-size: 32px;
     font-weight: bold;
     color: #770415;
     padding: 5px;
 }

 .contact-number small {
     font-size: 13px;
     color: #770415;
     font-weight: 500;
 }

 /* 🔹 Navbar Styling */
 .custom-navbar {
     border-radius: 12px;
     padding: 0;
    }
.submit-btn-home, .custom-navbar{
     background: #0510fe;
 }

 /* ✅ OPTION 1: clean gap style */
 .custom-navbar .navbar-nav {
     gap: 55px;
     /* space between menu items */
 }

 .custom-navbar .nav-link {
     color: #fff !important;
     font-weight: 500;
     padding: 10px 20px;
     text-align: center;
     border-right: 1 solid;
     /* no dividing line */
 }

 /* ✅ OPTION 2: block style with white dividers
    .custom-navbar .nav-link {
      color: #fff !important;
      font-weight: 500;
      padding: 10px 25px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.3);
    }
    .custom-navbar .nav-link:last-child {
      border-right: none;
    }
    */

 .custom-navbar .nav-link:hover {
     background: rgba(255, 255, 255, 0.15);
     border-radius: 8px;
 }

 .dropdown-menu {
     border-radius: 10px;
 }

 /* 🔹 Responsive Fix */
 @media (max-width: 768px) {
     .header-top {
         flex-direction: column;
         text-align: center;
     }

     .contact-box {
         justify-content: center;
     }

     .contact-number h3 {
         font-size: 18px;
     }

     .custom-navbar .navbar-nav {
         gap: 0;
         /* avoid extra spacing on mobile collapse */
     }

     .border-frame {
         border: 40px solid transparent;
         border-image: url("../../frontend/img/border.png") 240 round;
         margin: 20px;
     }
 }

 .left-box {
     flex: 1;
     border-radius: 15px;
     padding: 0px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .left-box img {
     max-width: 100%;
     height: 310px;
 }

 .container {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 20px;
     padding: 40px;
 }


 .form-box {
     background: #fff;
     padding: 20px;
     width: 430px;
     max-width: 100%;

     /* Gradient Border Trick */
     border-radius: 15px;
     position: relative;
     background: linear-gradient(#fff, #fff) padding-box,
         linear-gradient(45deg, #ff9966, #ff5e62) border-box;
     border: 2px solid transparent;

     box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
 }

 .form-box h3 {
     margin-bottom: 20px;
     font-size: 18px;
     font-weight: bold;
     border-bottom: none;
     padding-bottom: 6px;
     width: fit-content;
     margin-top: -30px;
     background: #fff;
     padding: 0 20px;
 }

 .form-group {
     display: flex;
     align-items: center;
     margin-bottom: 15px;
     gap: 10px;
 }

 .form-group label {
     flex: 1;
     font-weight: 500;
     font-size: 14px;
 }

 .form-group .input-field {
     flex: 2;
 }

 /* Radio buttons */
 .radio-group {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
 }

 .radio-option {
     display: flex;
     align-items: center;
     gap: 6px;
     border: 1px solid #ccc;
     padding: 6px 12px;
     border-radius: 6px;
     cursor: pointer;
     font-size: 14px;
 }

 input[type="radio"] {
     accent-color: #FF5700;
 }

 /* Dropdowns */
 .index select {
     width: 100%;
     padding: 10px;
     border-radius: 8px;
     border: 1px solid #ccc;
     font-size: 14px;
 }

 .age-select {
     display: flex;
     gap: 10px;
 }

 /* Submit Button */
 .btn1 {
     display: block;
     width: 65%;
     background: #FF5700;
     color: white;
     border: none;
     padding: 12px;
     border-radius: 8px;
     font-size: 15px;
     font-weight: bold;
     cursor: pointer;
     margin-top: 10px;
     margin: 0 auto;
     margin-right: 0px;
 }

 .btn:hover {
     background: #FF5700;
 }

 /* ✅ Responsive for Mobile */
 @media (max-width: 600px) {
     .form-group {
         flex-direction: column;
         align-items: flex-start;
     }

     .form-group label {
         margin-bottom: 6px;
         flex: unset;
     }

     .form-group .input-field,
     .age-select {
         width: 100%;
     }

     .age-select {
         flex-direction: column;
     }

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

 .container {
     display: flex;
     justify-content: center;
     align-items: flex-start;
     gap: 20px;
     padding: 40px 20px;
 }

 /* ✅ Mobile Responsive Fix */
 @media (max-width: 768px) {
     .container {
         flex-direction: column;
         /* stack vertically */
         padding: 20px;
     }

     .left-box {
         order: 2;
         /* show image below form (swap to 1 if you want image first) */
         padding: 10px;
     }

     .form-box {
         order: 1;
         /* form comes first */
         width: 100%;
         margin-bottom: 20px;
     }

     .btn {
         display: block;
         width: 100%;
         background: #FF5700;
         color: white;
         border: none;
         padding: 12px;
         border-radius: 8px;
         font-size: 15px;
         font-weight: bold;
         cursor: pointer;
         margin-top: 10px;
         margin: 0 auto;
         margin-right: 0px;
     }
 }

 /* Main container */
 .main-container {
     display: flex;
     justify-content: center;
     align-items: flex-start;
     gap: 20px;
     margin: 20px;
     flex-wrap: wrap;
 }

 /* Left images */
 .left-images {
     flex: 2;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .left-images img {
     width: 100%;
     height: auto;
     display: block;
     border-radius: 8px;
 }

 /* Right panel */
 .right-panel {
     flex: 1;
     min-width: 320px;
     /* give more breathing space */
     max-width: 100%;
 }

 /* Service box */
 .service-box {
     background: #FF5700;
     color: #fff;
     padding: 20px 30px;
     text-align: center;
     border-radius: 10px;
     margin-bottom: 15px;
     font-size: 18px;
     font-weight: bold;
     line-height: 1.5;
     word-wrap: break-word;
     /* stop text overflow */
 }

 /* Payment icons */
 .payment-icons {
     display: flex;
     justify-content: center;
     gap: 40px;
     margin: 10px 0;
     flex-wrap: wrap;
 }

 .payment-icons img {
     width: 60px;
     height: 60px;
     object-fit: contain;
 }

 /* QR box */
 .qr-box {
     background: #fff;
     border: 1px solid #d0c8c8;
     border-radius: 10px;
     padding: 15px;
     text-align: center;
 }

 .qr-box h5 {
     background: #FF5700;
     color: #fff;
     margin: -15px -15px 15px -15px;
     padding: 20px;
     border-radius: 10px 10px 0 0;
     font-size: 24px;
     font-weight: 700;
 }

 .qr-box img {
     width: 200px;
     max-width: 100%;
     height: auto;
     margin: 10px auto;
 }

 .qr-box p {
     font-size: 18px;
     font-weight: bold;
 }

 /* Contact box */
 .contact-box1 {
     border: 2px solid #006800;
     border-radius: 10px;
     padding: 15px;
     background: #fff;
     text-align: center;
     margin-top: 15px;
 }
 .text-color-details{
    color: #25488E;
 }

 .contact-box1 p {

     font-size: 18px;
     padding-top: 15px;
 }

 .contact-box1 .whatsapp {
     color: #000;
     font-size: 24px;
     margin-top: 8px;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 6px;
 }

 .contact-box1 .whatsapp img {
     width: 22px;
     height: 22px;
 }

 .service-payment {
     border: 2px solid #FF5700;
     padding: 10px;
     border-radius: 15px;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .main-container {
         flex-direction: column;
         align-items: stretch;
     }

     .right-panel {
         min-width: unset;
         /* allow it to shrink */
         width: 100%;
         /* take full width */
     }

     .service-box {
         font-size: 15px;
         padding: 15px;
     }

     .qr-box img {
         width: 160px;
     }

     .payment-icons {
         display: flex;
         justify-content: center;
         gap: 20px;
         margin: 10px 0;
         flex-wrap: wrap;
     }

     .qr-box h5 {
         background: #FF5700;
         color: #fff;
         margin: -15px -15px 15px -15px;
         padding: 20px;
         border-radius: 10px 10px 0 0;
         font-size: 18px;
         font-weight: 700;
     }

 }

 @media (max-width: 480px) {
     .payment-icons img {
         width: 40px;
         height: 40px;
     }

     .service-box {
         font-size: 14px;
     }

     .qr-box p {
         font-size: 16px;
     }

     .contact-box1 p {
         font-size: 14px;
     }

     .payment-icons {
         display: flex;
         justify-content: center;
         gap: 20px;
         margin: 10px 0;
         flex-wrap: wrap;
     }

     .qr-box h5 {
         background: #FF5700;
         color: #fff;
         margin: -15px -15px 15px -15px;
         padding: 20px;
         border-radius: 10px 10px 0 0;
         font-size: 18px;
         font-weight: 700;
     }

     .contact-box1 .whatsapp {
         color: #000;
         font-size: 20px;
         margin-top: 8px;
         display: flex;
         justify-content: center;
         align-items: center;
         gap: 6px;
     }

 }




 .wlcm {
     color: #FF5700;
     margin-left: 30px;
     font-family: "Mirandolina CalligrOne", cursive;
     font-weight: 400;
     font-style: normal;
     font-size: 26px;
     line-height: 1.2;
     letter-spacing: 0;
 }

 @media (max-width: 480px) {
     .wlcm {
         font-size: 16px;
     }
 }

 .header-top {
     display: flex;
     gap: 30px;
     padding: 15px 40px 0 40px;
     flex-wrap: wrap;
 }

 /* Logo */
 .logo img {
     height: 100px;
     width: auto;
     border-radius: 6px;
 }

 /* Middle image */
 .middle-img img {
     height: 100px;
     width: auto;
 }

 /* Zodiac Row */
 .zodiac-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     border: 2px solid #FF5700;
     border-radius: 10px;
     padding: 10px 20px;
     margin: 20px auto;
     max-width: 950px;
     flex-wrap: nowrap;
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
 }

 .zodiac-left,
 .zodiac-right {
     display: flex;
     gap: 10px;
     flex-wrap: nowrap;
 }

 .zodiac-left img,
 .zodiac-right img {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     flex-shrink: 0;
 }

 .zodiac-title {
     font-size: 18px;
     font-weight: bold;
     text-align: center;
     flex: 1;
     min-width: 80px;
 }

 /* Footer Info */
 .footer-info {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     text-align: center;
     margin: 15px auto;
     max-width: 1000px;
     font-size: 14px;
     line-height: 1.5;
 }

 .footer-info p {
     margin: 5px 10px;
     font-weight: 600;
 }

 .footer-info a {
     color: inherit;
     text-decoration: none;
 }

 /* Responsive Styles */
 @media (max-width: 768px) {
     .header-top {
         flex-direction: column;
         text-align: center;
     }

     .contact-box {
         justify-content: center;
     }

     .contact-number h3 {
         font-size: 24px;
     }

     .custom-navbar .navbar-nav {
         gap: 0;
         flex-direction: column;
         text-align: center;
     }

     .border-frame {
         margin: 20px;
         border-width: 30px;
     }

     .zodiac-left img,
     .zodiac-right img {
         width: 32px;
         height: 32px;
     }

     .zodiac-title {
         font-size: 16px;
     }

     .footer-info p {
         font-size: 13px;
     }

 }

 @media (max-width: 480px) {
     .border-frame {
         margin: 10px;
         border-width: 20px;
     }

     .zodiac-left img,
     .zodiac-right img {
         width: 28px;
         height: 28px;
     }

     .zodiac-title {
         font-size: 15px;
     }

     .footer-info p {
         font-size: 12px;
     }
 }

.marquee-wrapper {
    color: #ff5600;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 0px;
}

.subam-wrapper {
    text-align: center;        /* center inside container */
    margin: 15px auto;         /* some spacing */
}

.subam-image {
    max-width: 95%;            /* shrink image if container is small */
    width: auto;               /* keep original proportion */
    height: auto;
    display: inline-block;
}
@media screen and (max-device-width: 992px) {
    .custom-navbar .navbar-nav {
        gap: 45px !important;
    }
}
@media screen and (max-device-width: 800px) {
    .custom-navbar .navbar-nav {
        gap: 15px !important;
    }
}
@media screen and (max-device-width: 500px) {
    .custom-navbar .navbar-nav {
        gap: 10px !important;
    }

    .border-frame {
        margin: 0px 150px;
    }
}
@media screen and (max-device-width: 1500px) {
    .custom-navbar .navbar-nav {
        gap: 10px !important;
        font-size: 12px;
    }
}
