        :root {
            --primary-color: #b8860b;
            --secondary-color: #1a1a2e;
            --accent-color: #d4af37;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Titillium Web", sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }

        html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    border: 1;
    color: #242424;
    /* line-height: 30px; */
 /*    font-size: 16px; */
    font-family: 'Poppins', sans-serif;
}

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Filosofia Italic', serif;
        }

        /* Top Bar */

        .top-bar {
            background: var(--secondary-color);
            color: var(--white);
            padding: 8px 0;
            font-size: 13px;
        }

        .top-bar a {
            color: var(--white);
            text-decoration: none;
            margin-left: 15px;
        }

        .top-bar a:hover {
            color: var(--accent-color);
        }

        /* Navbar */
        .main-navbar {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand span {
            color: var(--primary-color);
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            padding: 6px 16px !important;
            transition: color 0.3s;
            font-size: 15px;
        }

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

        .navbar-toggler {
            border: none;
            padding: 10px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Dropdown */

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            border-radius: 10px;
            padding: 15px;
        }

        .dropdown-item {
            padding: 10px 15px;
            border-radius: 5px;
            color: var(--text-dark);
        }

        .dropdown-item:hover {
            background: var(--bg-light);
            color: var(--primary-color);
        }

        /* Buttons */

        .btn-primary-custom {
            background: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            color: white;
            transition: all 0.3s;
        }

        .btn-primary-custom:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-2px);
        }

        .btn-outline-custom {
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            padding: 6px 20px;
            border-radius: 30px;
            background: transparent;
            transition: all 0.3s;
        }

        .btn-outline-custom:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        /* Hero Section */

        .hero-section {
            background: #f8f9fa;
            padding: 0;
            text-align: center;
            min-height: auto;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        /* Sections */

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Product Cards */

        .product-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            margin-bottom: 30px;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .product-card .card-img {
            height: 250px;
            overflow: hidden;
        }

        .product-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .card-img img {
            transform: scale(1.1);
        }

        .product-card .card-body {
            padding: 25px;
            text-align: center;
        }

        .product-card h4 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .product-card .price {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Features */

        .feature-box {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            background: var(--white);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-box .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-box .icon i {
            font-size: 2rem;
            color: white;
        }

        /* Footer */

        .footer-section {
            background: var(--secondary-color);
            color: var(--white);
            padding: 60px 0 0 0;
        }

        .footer-title {
            font-family: 'Filosofia Italic', serif;
            font-size: 22px;
            margin-bottom: 25px;
            color: var(--accent-color);
            position: relative;
            padding-bottom: 15px;
        }



        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--primary-color);
        }

        .footer-text {
            color: #a0a0a0;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: #2d2d44;
            color: var(--white);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a0a0a0;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: #a0a0a0;
        }

        .footer-contact li i {
            color: var(--primary-color);
            margin-right: 15px;
            margin-top: 4px;
        }

        .footer-bottom {
            background: #0f0f1a;
            padding: 20px 0;
            margin-top: 50px;
            text-align: center;
        }

        .footer-bottom p {
            margin: 0;
            color: #a0a0a0;
            font-size: 14px;
        }

        /* Search Bar */

        .search-box {
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 1px solid #ddd;
            border-radius: 30px;
            outline: none;
        }

        .search-box button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        /* Responsive */

        @media (max-width: 991px) {
            .navbar-collapse {
                margin-top: 15px;
                padding: 15px;
                background: var(--white);
                border-radius: 10px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                min-height: auto;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .section-padding {
                padding: 50px 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        /* Swarnaudayam Plans Dropdown Hover Effect */
        @media (min-width: 992px) {
            .plans-dropdown {
                position: relative;
            }

            .plans-dropdown .dropdown-menu {
                display: block !important;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease-out;
                transform: translateY(-10px);
                min-width: 250px;
                margin-top: 10px;
            }

            .plans-dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .plans-dropdown .dropdown-toggle::after {
                transition: transform 0.3s ease;
            }

            .plans-dropdown:hover .dropdown-toggle::after {
                transform: rotate(180deg);
            }
        }



        /* Top Bar */

        .top-bar {
            background: var(--secondary-color);
            color: var(--white);
            padding: 8px 0;
            font-size: 13px;
        }

        .top-bar a {
            color: var(--white);
            text-decoration: none;
            margin-left: 15px;
        }

        .top-bar a:hover {
            color: var(--accent-color);
        }

        /* Navbar */

        .main-navbar {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 6px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            height: 70px;
        }



        .navbar-brand img {
            width: auto;
            height: 100%;
        }

        .navbar-brand span {
            color: var(--primary-color);
        }

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

        .navbar-toggler {
            border: none;
            padding: 10px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Dropdown */

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            border-radius: 10px;
            padding: 15px;
        }

        .dropdown-item {
            padding: 10px 15px;
            border-radius: 5px;
            color: var(--text-dark);
        }

        .dropdown-item:hover {
            background: var(--bg-light);
            color: var(--primary-color);
        }

        /* Buttons */

        .btn-primary-custom {
            background: var(--primary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            color: white;
            transition: all 0.3s;
        }

        .btn-primary-custom:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section */

        .hero-section {
            background: #f8f9fa;
            padding: 0;
            text-align: center;
            min-height: auto;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        /* Sections */

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-family: 'Filosofia Italic', serif;
            color: #8b1c1c !important;
            font-size: 50px;
            font-weight: 500;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Product Cards */

        .product-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            margin-bottom: 30px;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .product-card .card-img {
            height: 250px;
            overflow: hidden;
        }

        .product-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .card-img img {
            transform: scale(1.1);
        }

        .product-card .card-body {
            padding: 25px;
            text-align: center;
        }

        .product-card h4 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .product-card .price {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Features */

        .feature-box {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            background: var(--white);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-box .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-box .icon i {
            font-size: 2rem;
            color: white;
        }

        /* Footer */

        .footer-section {
            background: var(--secondary-color);
            color: var(--white);
            padding: 60px 0 0 0;
        }

        .footer-title {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            margin-bottom: 25px;
            color: var(--accent-color);
            position: relative;
            padding-bottom: 15px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--primary-color);
        }

        .footer-text {
            color: #a0a0a0;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: #2d2d44;
            color: var(--white);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a0a0a0;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: #a0a0a0;
        }

        .footer-contact li i {
            color: var(--primary-color);
            margin-right: 15px;
            margin-top: 4px;
        }

        .footer-bottom {
            background: #0f0f1a;
            padding: 20px 0;
            margin-top: 50px;
            text-align: center;
        }

        .footer-bottom p {
            margin: 0;
            color: #a0a0a0;
            font-size: 14px;
        }

        /* Search Bar */

        .search-box {
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 1px solid #ddd;
            border-radius: 30px;
            outline: none;
        }

        .search-box button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        /* Responsive */

        @media (max-width: 991px) {

            .navbar-collapse {
                margin-top: 15px;
                padding: 15px;
                background: var(--white);
                border-radius: 10px;
            }
        }

        @media (max-width: 768px) {

            .hero-section {
                padding: 80px 0;
                min-height: auto;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .section-padding {
                padding: 50px 0;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        .about_sb_title {
            font-size: 23px;
            font-weight: 300;
            font-family: "Titillium Web", sans-serif;
        }

        .about_box p {
            font-weight: 300;
            margin-bottom: 30px;
            font-family: 'Titillium Web', sans-serif;
        }

        .text_box_p p {
            font-size: 16px;
        }

        .more_detalis {
            color: #fff;
            background: #e81a46;
            padding: 13px 35px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 500;
            text-transform: uppercase;
            border: 1px solid #e81a46;
            font-family: 'Poppins', sans-serif;
            margin-top: 30px;
        }

        .more_detalis:hover {
            color: #e81a46;
            background: #fff;
            border: 1px solid #e81a46;
        }

        .swarnaudayam-title {
            color: #8b1c1c;
            font-size: 32px;
            line-height: 45px;
        }

        .circle-box {
            border-radius: 50%;
            position: relative;
            /* overflow: hidden; */
            /*  max-width: 477px;
            max-height: 477px; */
        }

        .circle-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .circle-box-text {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;

        }

        .circle-box-text p {
            position: inherit;
            top: 49%;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            text-align: center;
            font-size: 18px;
            opacity: 0.8;
            line-height: 1.8;
            width: 100%;
            padding: 0 35px;
        }

        .footers {
    width: 100%;
    background-color: #9d231f;
    padding: 16px 0;
}

.copy_right {
    padding-left: 35px;
    text-align: left;
}

.copy_right p {
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7em;
    text-align: center;
    margin-bottom: 0;
}

.follow_icon_a {
    display: flex;
    float: right;
    padding-right: 55px;
    list-style-type: none;
    margin-bottom: 0;
    gap: 4px;
    padding-left: 10px;
}

.follow_icon {
    float: right;
    color: white;
    padding-right: 15px;
    font-weight: 400;
}

.man_website_link {
    float: right;
    margin-right: 15px;
    margin-bottom: 0;
    
}
.man_website_link a {
    color: white;
    text-decoration: none;
}

.follow_icon_a li a i {
    color: white;
    font-size: 20px;
    padding-right: 10px;
    position: relative;
    top: 2px;
}


/* .about_page_img {
    padding-top: 50px;
    margin-top: 20px;
    padding-bottom: 52px;
} */
/* .box_border_about_tabe {
    margin-top: 50px;
} */

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.tabe_colo_back_box {
    background: #9d231f;
    color: white;
    padding: 2% 3% 2% 3%;
    display: block;
    position: relative;
}
.img_advance_logo {
    width: 44px;
    margin-right: 30px;
}
.tabe_colo_back_box a {
    color: white;
    font-size: 22px;
}
a, a:hover, a:focus {
    cursor: pointer !important;
    outline: none;
    text-decoration: none;
}
.tabe_text_box_p {
    border: 1px solid #6666;
    padding: 21px;
    background-color: #f9f9f9;
}
.tabe_1st_box_sb_title {
    padding-top: 10px;
    text-align: justify;
    font-size: 18px;
    font-weight: 600;
    color: #9d231f;
}
.tabe_1st_box_p {
   /*  padding-top: 15px; */
    text-align: justify;
    font-size: 16px;
    /* padding-bottom: 20px; */
}
.tabe_title_text_h2 {
    font-size: 24px;
    font-weight: 600;
    color: #9d231f;
}
.table_box_text {
    margin-top: 7%;
}
p, tr, td {
    font-family: 'Titillium Web', sans-serif !important;
}
.table_FIXED_PLAN tr td {
    width: 60%;
}
.nav-pills{
    position: relative;
}
.nav-pills:after {
    position: absolute;
    left: 4%;
    /* top: 74px; */
    right: 0;
    bottom: 0%;
    content: '';
    width: 0;
    height: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    border-style: solid;
    border-width: 16px 26px 4px;
    border-color: #9d231f transparent transparent transparent;
}

.tabe_colo_back_box_2 {
    background: #9d231f;
    color: white;
    padding: 2% 7% 2% 3%;
    display: block;
}
.tabe_colo_back_box_2 a {
    color: white;
    font-size: 22px;
}

.next_section_title {
    color: #9d231f;
    font-size: 32px;
    padding-top: 20px;
}

.tabe_title_text_h2 {
    font-size: 24px;
    font-weight: 600;
    color: #9d231f;
}
.content-block ul, ol, .content-block p, .content-block strong, .content-block label {
    font-family: 'Titillium Web', sans-serif !important;
}

.tram_text_span li, strong {
    font-size: 16px;
}
.tram_text_span li {
    padding-left: 20px;
    padding-bottom: 10px;
    margin-left: 15px;
    padding-top: 10px;
}
.tabe_1st_box_sb_title {
    padding-top: 10px;
    text-align: justify;
    font-size: 18px;
    font-weight: 600;
    color: #9d231f;
}
.text_point_color li {
    color: #9d231f;
}
.tram_text_span li, strong {
    font-size: 16px;
}
.text_point_color li {
    color: #9d231f;
}

.girl_title_text {
    padding-bottom: 5%;
}
.tram_text_span{
    padding-left: 0;
}

.our_loction_page_text_h2 {
    font-size: 50px;
    color: #9d231f;
    font-weight: 500;
    text-align: left;
    padding: 0 0 50px 0;
    text-align: center;
}

.store-name{
    font-size: 28px;
    margin: 15px 0 20px 0;
 font-family: "Titillium Web", sans-serif;
}
.customer-personal-details{
    display: flex;
    gap: 50px;
}

.personal-details-title{
    color :#000;
    font-size: 14px;
    min-width: 130px;
}

.personal-details{
    font-size: 14px;
}

.block-heading{
    font-size: 20px;
    color: #000;
    font-family: poppins, sans-serif;
    font-weight: 500;    
    margin-bottom: 0;
}

.block-heading-box{
padding-bottom: 12px;
    border-bottom: 1px solid #ededed;
}
.coustomer-dashboard-section{
    min-height: 85vh;
}

.fd-btn-primary {
    background-color: #9d231f !important;
    color: #fff !important;
    font-size: 14px;
    padding :10px 15px;
}

.fd-btn-primary:hover{
    background-color: #9d231f !important;
    color: #fff !important;
}