    /* Tabs */
    .tabs {
      display: flex;
      justify-content: center;
      background: #fff;
      margin-top: 0px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .tabs button {
      flex: 1;
      padding: 15px;
      border: none;
      background: #f7f7f7;
      cursor: pointer;
      font-weight: bold;
    }

    .tabs button:hover,
    .tabs button.active {
      background: #a52828;
      color: #fff;
    }

    /* Form */
    .form-section {
      max-width: 900px;
      margin: 20px auto;
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .form-section input,
    .form-section select {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .form-section button {
      background: #a52828;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    /* Plans */
    .plans {
  display: flex;
  justify-content: center;   /* center the cards in row */
  align-items: flex-start;
  gap: 20px;                 /* space between cards */
  padding: 20px;             /* minimal section padding */
  max-width: 1200px;         /* optional: keep content centered */
  margin: 0 auto;            /* center the whole section */
}

    .plan-card {
  flex: 1;                   /* equal width for all cards */
  min-width: 280px;          /* don’t shrink too small */
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
    .plan-card img {
      max-width: 100%;
      border-radius: 8px;
    }

    .plan-card h3 {
      margin: 15px 0;
      color: #a52828;
      text-align: center;
    }

    .plan-card p{
        color: black;
    }

    .plan-card button {
      margin-top: 10px;
      background: #a52828;
      color: #fff;
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
    }

    /* FAQ */
    .faq {
      max-width: 100%;
      margin: 40px auto;
      padding: 100px;
    }

    .faq h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #9d0a0e;
    }

    .faq-item {
      border-bottom: 1px solid #ddd;
      padding: 15px 0;
      cursor: pointer;
    }
        .custom-select {
            appearance: none;
            /* Remove default arrow */
            background-color: #b37d2b;
            /* White background */
            font-size: 16px;
            /* Font size */
            color: #2F3943;
            /* Dark text color */
            transition: border-color 0.3s;
            /* Smooth transition */
        }

        .custom-select:focus {
            border-color: #007bff;
            /* Blue border on focus */
            outline: none;
            /* Remove outline */
        }

        .custom-select option {
            padding: 10px;
            /* Padding for options */
        }

        .form-group {
            margin: 0;
            /* Remove margin for better alignment */
        }

        /* Add a custom arrow */
        .custom-select::after {
            content: '▼';
            /* Unicode for down arrow */
            position: absolute;
            /* Position it */
            right: 10px;
            /* Align to the right */
            top: 50%;
            /* Center vertically */
            transform: translateY(-50%);
            /* Adjust position */
            pointer-events: none;
            /* Allow clicks to pass through */
        }

        .topbar {
            padding: 10px 0;
            /* Padding for the top bar */
        }

        .contact-info {
            font-size: 14px;
            /* Smaller font for contact info */
        }

        .form-control {
            padding: 5px !important;
            width: 100%;
            text-align: center;
            border-radius: 5px;
        }

        .portfolio-content {
            display: flex;
            flex-direction: column;
            height: 100%;
            overflow: hidden;
            /* Prevents overflow if image is larger */
        }

        .portfolio-content img {
            width: 100%;
            /* Makes the image take full width */
            height: 400px;
            /* Set a fixed height for the images */
            object-fit: cover;
            /* Maintains aspect ratio while filling the space */
        }

        .portfolio-info {
            padding: 10px;
            /* Adjust padding as necessary */
            text-align: center;
            /* Center the text */
        }



        .layout_padding {
            padding: 90px 0;
        }

        .offer_section .row>div {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: stretch;
            -ms-flex-pack: stretch;
            justify-content: stretch;
        }

        .offer_section .box {
            margin: 10px;
            height: 100%;
            position: relative;
            min-height: 175px;
        }

        .offer_section .box img {
            width: 100%;
            min-height: 100%;
        }

        .offer_section .box .detail-box {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            color: #ffffff;
            padding: 25px;
           
        }

        .offer_section .box .detail-box h2 {
            font-weight: bold;
            color: #ffffff;
        }

        .offer_section .box .detail-box a {
            display: inline-block;
            padding: 8px 40px;
           
            color: #fd9c6b;
            border-radius: 0;
            border: 1px solid #fd9c6b;
            -webkit-transition: all .2s;
            transition: all .2s;
            margin-top: 10px;
        }

        .offer_section .box .detail-box a:hover {
            background-color: #fd9c6b;
            color: #ffffff;
        }

        .offer_section .box.offer-box1 {
            min-height: 225px;
        }

        .offer_section .box.offer-box1 .detail-box {
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
        }

        .offer_section .box.offer-box1 .detail-box h2 {
            font-size: 3rem;
        }

        .offer_section .box.offer-box2 .detail-box h2,
        .offer_section .box.offer-box3 .detail-box h2 {
            font-size: 2rem;
        }

        .offer_section .box.offer-box2 .detail-box {
            -webkit-box-align: end;
            -ms-flex-align: end;
            align-items: flex-end;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
        }

        .offer_section .box.offer-box3 .detail-box {
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
        }

        .color_p {
            font-size: 24px;
            color: #b37d2b;

        }

 /* Hero Section Styling */
        .hero-section {
   /*   background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/ssbg.jpg);*/
            /* Dark Navy Background */
            color: #9d0a0e;
            /*background-color: #6c012b;*/
            /* White Text */
            text-align: center;
            padding: 80px 20px;
            position: relative;
            height: 120vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

      .hero-section2 {
        margin : 0px;
        background-position: top;
          background-size: cover;
        background-repeat: no-repeat;
            /* Dark Navy Background */
            color: #9d0a0e;
            /*background-color: #5f1b53;*/
            /* White Text */
            text-align: center;
            padding: 80px 20px;
            position: relative;
            height: 60vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* Logo (Optional) */
        .hero-section .logo {
            width: 300px;

            margin-bottom: 20px;
            margin-top: 100px;
        }

        /* Main Headline in Gold */
        .hero-section h1 {
            color: #CB9B52;
            /* Gold Color */
            font-weight: bold;
            margin-bottom: 20px;
            font-size: 4rem;
        }

        /* Subheading */
        .hero-section p {
            font-size: 2rem;
            margin-bottom: 30px;
            line-height: 1.6;
            font: 36px;
        }

        .hero-section2 .logo {
            width: 300px;
            margin-bottom: 20px;
        }

        /* Main Headline in Gold */
        .hero-section2 h5 {
            color: #9d0a0e;
            /* Gold Color */
            font-weight: bold;
            margin-bottom: 20px;
            font-size: 24px;
        }

        /* Subheading */
        .hero-section2 p {
            font-size: 2rem;
            margin-bottom: 30px;
            line-height: 1.6;
            font: 36px;
        }

        /* Call-to-Action Buttons */
        /* Solid Gold Button */
        .btn-gold {
            background-color: #d4af37;
            color: #0b2037;
            border: none;
            border-radius: 20px;
            font-weight: bold;
            padding: 10px 30px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .btn-gold:hover {
            background-color: #b9972f;
            color: #ffffff;
        }

        /* Container for the Gradient Border */
        .btn-gradient-border {
            display: inline-block;
            padding: 3px;
            /* Thickness of the border */
            border-radius: 40px;
            /* Must match the inner button's border radius */
            background: linear-gradient(to right,
                    #DCBB5C 0%,
                    #EDD77C 17%,
                    #F9EB94 28%,
                    #F9EB94 48%,
                    #AF7827 71%,
                    #BB8B38 74%,
                    #D6B65D 82%,
                    #EAD578 89%,
                    #F6E888 96%,
                    #FAEF8E 100%);
        }

        /* Contact Us Button with transparent background to reveal the border */
        .btn-outline-gold {
            background-color: #333C49;
            border: none;
            border-radius: 40px;
            /* Matches the container */
            color: #d4af37;
            /* font-weight: bold; */
            padding: 10px 30px;
            display: block;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .btn-outline-gold:hover {
            background-color: #d4af37;
            color: #0b2037;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-top: 90px;
        }

        /* Add horizontal lines at the start and end */
        .social-icons::before,
        .social-icons::after {
            content: "";
            display: block;
            width: 50px;
            /* Adjust width as needed */
            height: 1px;
            background-color: #ccc;
            /* Line color */
            align-self: center;
        }

        .social-icons::before {
            margin-right: 15px;
        }

        .social-icons::after {
            margin-left: 15px;
        }

        /* Icon styles */
        .social-icons a {
            color: #ffffff;
            margin: 0 10px;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #d4af37;
        }


        .social-icons a {
            color: #ffffff;
            margin: 0 10px;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #d4af37;
        }



         .design-image {
            position: absolute;
            width: 100%;
            top: 6vh;
            /* Base value */
            left: 0;
            z-index: 1;
        }

        @media (max-width: 575.98px) {
            .design-image {
                display: none;
            }
        }

        /* Extra small devices (portrait phones, less than 576px) */
        @media (max-width: 575.98px) {

              .hero-section2 h5 {
            color: #9d0a0e;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 20px;
            font-size: 18px;
        }

            .hero-section {
                height: fit-content;
            }

            .hero-section .logo {
                width: 200px;

                margin-bottom: 20px;
                margin-top: 50px;
            }

            /* Main Headline in Gold */
            .hero-section h1 {
                color: #CB9B52;
                /* Gold Color */
                font-weight: bold;
                margin-bottom: 20px;
                font-size: 2rem;
            }

            /* Subheading */
            .hero-section p {
                font-size: 1rem;
                margin-bottom: 30px;
                line-height: 1.6;
                font: 36px;
            }

            .social-icons {
                margin-top: 50px;
            }

            .design-image {
                top: 13vh;
                /* Adjust as needed */
            }

            .hero-decor {
                display: none;
            }

              

        }

        /* Small devices (landscape phones, 576px and up) */
        @media (min-width: 576px) and (max-width: 767.98px) {
            .design-image {
                top: 14vh;
                /* Adjust as needed */
            }

            .hero-decor {
                display: none;
            }

        }

        /* Medium devices (tablets, 768px and up) */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .design-image {
                top: 14vh;
                /* Adjust as needed */
            }


        }

        /* Large devices (desktops, 992px and up) */
        @media (min-width: 992px) and (max-width: 1199.98px) {
            .design-image {
                top: 10vh;
                /* Adjust as needed */
            }
        }

        /* Extra large devices (large desktops, 1200px and up) */
        @media (min-width: 1200px) {
            .design-image {
                top: 8vh;
                /* Adjust as needed */
            }
        }

        @media (min-width: 1400px) {
            .design-image {
                top: 8vh;
                /* Adjust as needed */
            }
        }

        @media (min-width: 1900px) {
            .design-image {
                top: 6vh;
                /* Adjust as needed */
            }
        }

        .design-image img {
            display: block;
            /* Remove inline spacing */
            width: 100%;
            /* Image takes full width of its container */
        }

        .hero-decor {
            position: absolute;
            /* width: 100px; */
            /* Adjust width as needed */
            height: auto;
        }

        .hero-decor-left {
            left: 10px !important;
            bottom: 0% !important;
            /* transform: translateY(-50%) !important; */
        }

        .hero-decor-right {
            right: 10px !important;
            bottom: 0 !important;
            /* transform: translateY(-50%) !important; */
        }

        /* .logo {
            width: 500px;
        } */


       

        body {

            background-color: white;
        }


         /* Section background and text color */
            .scheme-section {
              
                /* Dark navy */
                color: #2F3943;
                padding: 100px 0;
            }

            /* Heading styling (partially gold text) */
            .scheme-heading {
                font-size: 1.8rem;
                margin-bottom: 1rem;
                color: #2F3943;
                font-size: 48px;
            }

            .scheme-heading .highlight {
                color: #FFD700;
                /* Gold */
                text-shadow: 0 0 10px #FFD700;
                /* Gold color */
            }

            /* The square container */
            .square-bg {
                position: relative;
                /* Needed for absolute positioning of child images */
                width: 300px;
                /* Fixed width for a perfect square */
                height: 250px;
                /* Same height as width */
                /* background-color: #ffffff; */
                border: 2px solid #957461;
                /* Background color (change as needed) */
                border-radius: 4px;
                /* Slightly rounded corners (optional) */

                /* Hides anything that goes beyond the container */
            }

            /* Shared styles for absolutely positioned images */
            .abs-img {
                position: absolute;
                width: 400px;
                /* Example width - adjust as needed */
                height: auto;
                /* Keep aspect ratio */
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
                border-radius: 4px;
                /* Optional if images have corners */
            }

            /* Position the first image (top-left) */
            .abs-img1 {
                top: -10%;
                left: -90%;
            }

            /* Position the second image (bottom-right) */
            .abs-img2 {
                bottom: -100%;
                right: -10%;
                width: 300px;
                z-index: 10;
            }


            /* Horizontal line (gold or white) */
            .scheme-divider {
                width: 60px;
                height: 2px;

                /* Could use #d4af37 for gold line */
                margin: 1rem 0;
            }

            @media (max-width: 1500.98px) {
                .abs-img {
                    width: 300px;
                }

                .abs-img1 {
                    top: -10%;
                    left: -40%;
                }


            }

            @media (max-width: 768px) {
                .scheme-heading {
                    margin-top: 220px;
                    font-size: 28px;
                }

                .scheme-para {
                    font-size: 20px;
                }

                .scheme-section {
                    margin-bottom: 50px;
                }
            }


             /* Section styling */
            .gold-jewels-section {
              
                /* Dark navy */
                color: #2F3943;
                padding: 100px 20px 0;
                text-align: center;
            }

            /* Title styling */
            .gold-jewels-section h2 {
                font-size: 3rem;
                font-weight: 700;
                margin-bottom: 60px;
                font-style: italic;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: #2F3943;
            }

            /* Image and caption container */
            .jewel-item img {
                width: 100%;
                height: auto;
                border-radius: 4px;
                object-fit: cover;
            }

            .jewel-item p {
                margin-top: 10px;
                font-size: 1.5rem;
                font-weight: 500;
                color: #2F3943;
                text-align: left;
            }

            /* View All link */
            .view-all-link {
                margin-top: 40px;
                font-size: 1.2rem;
                color: #2F3943;
                text-decoration: none;
                display: inline-block;
                position: relative;
                transition: color 0.3s ease;
            }

            .view-all-link:hover {
                color: #d4af37;
                /* Gold hover color */
            }

            .view-all-link::after {
                content: \"\\2192\";
                /* Arrow symbol */
                margin-left: 8px;
                transition: margin-left 0.3s ease;
            }

            .view-all-link:hover::after {
                margin-left: 12px;
            }

            /* Section Container */
            .scheme-intro {
           
                padding: 30px 20px;
                overflow: hidden;
                height: max-content;
                position: relative;
                /* Contains absolute elements if they overflow */
            }

            /* Left Column: Circular Image Composition */
            .circle-wrapper {
                position: relative;
                width: 100%;
                /* If you want the parent to always be tall enough: */
                min-height: 600px;
                /* or 500px + some extra space */
                margin: 0 auto 40px auto;
                overflow: visible;
                /* Ensures large circle won't be cut off */
            }

            /* Base styling for all circles */
            .circle-img {
                position: absolute;
                /* border: 2px solid #d4af37; */
                /* Gold border */
                /* border-radius: 50%; */
                /* overflow: hidden; */
            }

            .circle-img img {
                width: 100%;
                height: inherit;

            }

            /* Large Circle */
            .circle-large {
                position: absolute;
                width: 70%;
                height: 600px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                /* Centers horizontally & vertically */
                z-index: 10;
            }


            /* Small Circle (top) */
            .circle-small-top {
                width: 200px;
                height: 200px;
                top: 20px;
                left: 0px;
            }

            /* Small Circle (bottom) */
            .circle-small-bottom {
                width: 200px;
                bottom: -20px;
                right: 20px;
                z-index: 13;
            }

            /* Right Column: Text Box */
            .scheme-textbox {
                position: absolute;
                
                /* Dark background */
                color: rgba(231, 231, 231, 0.87);

                /* border: 2px solid #d4af37; */
                /* Gold border */
                border-radius: 8px;
                padding: 60px 30px 60px 150px;
                /* max-width: 500px; */
                margin: 0 auto;
                left: 40%;
                width: 42%;
                top: 30%;
                /* Center on small screens */
            }

            .scheme-textbox2 {
                position: absolute;
             
                /* Dark background */
                color: rgba(231, 231, 231, 0.87);
                /* border: 2px solid #d4af37; */
                /* Gold border */
                border-radius: 8px;
                padding: 60px 180px 60px 30px;
                /* max-width: 500px; */
                margin: 0 auto;
                right: 35% !important;
                width: 45%;
                top: 30%;
                /* Center on small screens */
            }

            .scheme-textbox2 h2 {
                font-size: 3rem;
                margin-bottom: 1.5rem;
                font-weight: 600;
                color: #ffffff;
                /* font-style: italic; */
            }

            .scheme-textbox2 .gold {
                color: #FFD700;
                /* Gold color */
                font-style: italic;
            }

            .scheme-textbox2 p {
                margin-bottom: 0.5rem;
                line-height: 1.5;
                font-size: 24px;
            }

            .scheme-textbox2 .highlight {
                color: #FFD700;
                font-weight: 600;
            }

            .scheme-textbox h2 {
                font-size: 3rem;
                margin-bottom: 1.5rem;
                font-weight: 600;
                color: #ffffff;
                /* font-style: italic; */
            }

            .scheme-textbox .gold {
                color: #FFD700;
                /* Gold color */
                font-style: italic;
            }

            .scheme-textbox p {
                margin-bottom: 0.5rem;
                line-height: 1.5;
                font-size: 24px;
            }

            .scheme-textbox .highlight {
                color: #FFD700;
                font-weight: 600;
            }

            @media (max-width: 1500px) {
                .scheme-textbox {
                    position: absolute;
                
                    /* Dark background */
                    color: rgba(231, 231, 231, 0.87);

                    /* border: 2px solid #d4af37; */
                    /* Gold border */
                    border-radius: 8px;
                    padding: 40px 30px 40px 150px;
                    /* max-width: 500px; */
                    margin: 0 auto;
                    left: 40%;
                    width: 55%;
                    top: 30%;
                    /* Center on small screens */
                }

                .scheme-textbox2 {
                    position: absolute;
                   
                    /* Dark background */
                    color: rgba(231, 231, 231, 0.87);
                    /* border: 2px solid #d4af37; */
                    /* Gold border */
                    border-radius: 8px;
                    padding: 60px 180px 60px 30px;
                    /* max-width: 500px; */
                    margin: 0 auto;
                    right: 35% !important;
                    width: 55%;
                    top: 30%;
                    /* Center on small screens */
                }
            }

            /* Responsive Adjustments */
            @media (max-width: 768px) {
                .scheme-intro {
                    padding: 80px 40px;
                }

                .circle-wrapper {
                    display: none;
                    /* Remove extra bottom margin on larger screens */
                }

                .scheme-textbox {
                    position: unset;
                    padding: 30px 30px 30px 30px;
                    margin: 0 auto;
                    width: 100%;
                }

                .scheme-textbox2 {
                    position: unset;
                    padding: 30px 30px 30px 30px;
                    margin: 0 auto;
                    width: 100%;
                }

                .scheme-textbox h2 {
                    font-size: 2rem;
                }

                .scheme-textbox p {

                    font-size: 20px;
                }
            }

            /* Small Circle (top) */
            .circle-small-top2 {
                width: 200px;
                height: 200px;
                top: 20px;
                right: 0px;
            }

            /* Small Circle (bottom) */
            .circle-small-bottom2 {
                width: 180px;
                bottom: -20px;
                left: 20px;
                z-index: 13;
            }

            @media (max-width: 500px) {
                .scheme-intro {
                    padding: 40px 20px;
                }

                .scheme-textbox h2 {
                    font-size: 1.5rem;
                }

                .scheme-textbox p {

                    font-size: 16px;
                }

                .scheme-textbox2 h2 {
                    font-size: 1.5rem !important;
                }

                .scheme-textbox2 p {

                    font-size: 16px !important;
                }
            }

            
            /* Left Section */
            .left {
                flex: 1.8;
                min-width: 380px;
                padding: 40px;
                text-align: left;
                /* background: rgba(255, 215, 0, 0.08); */
                /* Subtle gold overlay */
                color: #ffffff;
                border-radius: 10px;
                /* box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); */
                /* Gold glow effect */
            }

            .left h1 {
                font-size: 2.2rem;
                color: #FFD700;
                margin-bottom: 20px;
                font-weight: bold;
            }

            .scheme-list {
                list-style: none;
                padding: 0;
                margin-bottom: 20px;
            }

            .scheme-list li {
                font-size: 20px;
                margin-bottom: 12px;
                color: #f1f1f1;
                display: flex;
                align-items: center;
                font-weight: 500;
            }

            .scheme-list li i {
                margin-right: 12px;
                color: #FFD700;
                font-size: 20px;
            }

            /* Payment Section */
            .left h3 {
                margin-top: 25px;
                margin-bottom: 15px;
                font-size: 20px;
                color: rgb(255, 255, 255);
                font-weight: 600;
                display: flex;
                align-items: center;
            }

            .left h3 i {
                margin-right: 12px;
                font-size: 22px;
                color: #FFD700;
            }

            .left p {
                font-size: 20px;
                color: #f1f1f1;
                display: flex;
                align-items: center;
                margin-bottom: 8px;
            }

            .left p i {
                margin-right: 10px;
                font-size: 18px;
                color: #FFD700;
            }

            /* Enroll Button */
            .btn {
                display: inline-block;
                margin-top: 20px;
                padding: 12px 24px;
                background: #FFD700;
                color: #1d1d1d;
                text-decoration: none;
                border-radius: 8px;
                font-weight: bold;
                font-size: 18px;
                transition: 0.3s ease-in-out;
                box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            }

            .btn:hover {
                background: #b69530;
                box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
            }

            .btn {
                display: inline-block;
                margin-top: 15px;
                padding: 10px 20px;
                background: #FFD700;
                color: white;
                text-decoration: none;
                border-radius: 5px;
                font-weight: bold;
                transition: 0.3s ease;
            }

            .btn:hover {
                background: #b69530;
            }

            .website {
                margin-top: 15px;
                font-size: 14px;
                color: #ffffff;
                display: flex;
                align-items: center;
            }

            .website i {
                margin-right: 8px;
                color: #FFD700;
            }

            /* Center Image */
            .center {
                flex: 1;
                text-align: center;
            }

            .center img {
                width: 100%;
                max-width: 450px;
                height: auto;
                border-radius: 10px;
            }

            /* Right Section (Quote Section) */
            .right {
                flex: 1;
                min-width: 350px;
                padding: 40px;
                text-align: center;
                background: #f8f2e5;
                color: #1d2330;
            }

            .right h2 {
                font-size: 1.8rem;
                color: rgb(227, 194, 4);
                font-weight: bold;
                margin-bottom: 20px;
            }

            .quote {
                font-size: 16px;
                font-style: italic;
                color: #555;
            }

            /* Responsive Design */
            @media (max-width: 900px) {
               

                .left,
                .right {
                    text-align: center;
                }

                .right {
                    padding: 20px;
                }

                .center img {
                    max-width: 80%;
                }
            }

             /* Section Styling */
            .terms-section {
                /* background: linear-gradient(to right, #2c2c2c, #1d1d1d); */
                color: #ffffff;
                padding: 100px 20px;
                text-align: center;
            }

            /* Heading */
            .terms-section h2 {
                font-size: 3rem;
                margin-bottom: 40px;
                font-weight: 700;
                font-style: italic;
                /* color: #d4af37; */
                /* text-shadow: 0px 0px 10px rgba(255, 215, 0, 0.8); */
            }

            /* Card Container */
            .terms-card {
                border-radius: 40px 0 40px 0;
                padding: 20px;
                text-align: center;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
                height: 250px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 15px;
                position: relative;
                overflow: hidden;
            }

            /* Adding Shine Effect */
            .terms-card::before {
                content: "";
                position: absolute;
                top: -100%;
                left: -100%;
                width: 250%;
                height: 250%;
                background: radial-gradient(circle, rgba(255, 217, 0, 0.05) 10%, rgba(255, 215, 0, 0) 70%);
                transition: all 0.4s ease-in-out;
            }

            /* Shine Effect on Hover */
            .terms-card:hover::before {
                top: 0;
                left: 0;
                transition: all 0.4s ease-in-out;
            }

            .terms-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
            }

            /* Odd and Even Card Backgrounds */
            .terms-card:nth-of-type(2n+1) {
                background: linear-gradient(135deg, rgba(62, 76, 90, 0.9), rgba(92, 107, 121, 0.9));
            }

            .terms-card:nth-of-type(2n) {
                background: linear-gradient(135deg, rgba(39, 47, 54, 0.9), rgba(69, 79, 91, 0.9));
            }

            /* Icon Styling */
            .terms-card i {
                font-size: 3rem;
                color: #FFD700;
                /* text-shadow: 0px 0px 12px rgba(255, 215, 0, 0.8); */
                transition: transform 0.3s ease-in-out;
            }

            /* Icon Hover Effect */
            .terms-card:hover i {
                transform: scale(1.1);
            }

            /* Term Text */
            .terms-card p {
                font-size: 18px;
                line-height: 1.5;
                margin: 0;
                color: rgb(255, 255, 255);
            }


            .scheme-details-section {
               
                /* Dark navy background */
                color: #2F3943;
                padding: 60px 20px;
                text-align: center;
            }

            /* Heading */
            .scheme-details-section h2 {
                font-size: 3rem;
                margin-bottom: 20px;
                font-weight: 700;
                /* Bold */
                color: #2F3943;
                font-style: italic;
                /* Italic (optional if you want it) */
                text-transform: uppercase;
            }

            /* Duration text */
            .scheme-details-section p.duration {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .scheme-details-section p.duration span {
                color: #d4af37;
                /* Gold color */
            }

            /* Details Box (with background image + overlay) */
            .details-box {
                /* You can replace 'necklace.png' with your own image path */
                background:

                    /* Dark overlay */
                    url('./assets/img/backschema.png') center/cover no-repeat;
                border-radius: 8px;
                padding: 20px;
                /* max-width: 700px; */
                height: 500px;
                /* Adjust as needed */
                margin: 0 auto;
                display: flex;
                align-items: center;
                justify-content: center;
            }


            /* List styling */
            .details-box ul {
                list-style: none;
                margin: 0;
                padding: 0;
                text-align: left;
                /* Align left if desired */
            }

            .details-box li {
                margin-bottom: 15px;
                position: relative;
                padding-left: 35px;
                /* More space for bullet alignment */
                font-size: 1.8rem;
                color: rgb(220, 220, 220);
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
                /* Text shadow */
            }

            /* Fixing bullet alignment */
            .details-box li::before {
                content: "\f111";
                /* Font Awesome solid circle */
              
                font-weight: 900;
                position: absolute;
                left: 5px;
                /* Adjusted for alignment */
                top: 50%;
                transform: translateY(-50%);
                /* Perfect vertical alignment */
                color: #d4af37;
                /* Gold color */
                font-size: 0.75rem;
                z-index: 10;
            }


            @media (max-width: 767.98px) {
                .details-box {
                    height: fit-content;
                }

                .details-box li {
                    font-size: 20px !important;
                }
            }

