*{
    top:0;
    left:0;
    bottom: 0;
    right:0;
    box-sizing: border-box;
}

.top-header {
    background-color: #564A8E;
    font-size: 14px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
}

.top-left .label {
    font-weight: 600;
}

.top-left .email {
    color: #ffffff;
    text-decoration: none;
}

.top-left .email:hover {
    text-decoration: underline;
}

.top-right {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.top-btn {
    background-color: #ffffff;
    color: #564A8E;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.top-btn:hover {
    background-color: #e6e3f3;
    color: #564A8E;
}

.top-btn.outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.top-btn.outline:hover {
    background-color: #ffffff;
    color: #564A8E;
}
/* top header end */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo img {
    height: 48px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight:500;
    text-transform:uppercase;
    font-size:14px;
}

.main-nav a:hover {
    color: #564A8E;
}

/* CTA Button */
.nav-btn {
    background: #564A8E;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 4px;
}

.nav-btn:hover {
    background: #453b74;
}

/* Dropdown Container */
.nav-dropdown {
    position: relative;
}

/* Dropdown Toggle */
.dropdown-toggle {
    cursor: pointer;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top:200%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    height: max-content;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

/* Dropdown Links */
.dropdown-menu a {
    padding: 5px 10px;
    color: #212529;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

/* Show dropdown */
.dropdown-menu.show {
    display: flex;
}

/* Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #564A8E;
    margin: 4px 0;
    transition: 0.3s;
}

/* Mobile Styles */



.hero-section {
    width: 100%;
    height: 550px;
}

.hero-content {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    max-width: 600px;
    color: #ffffff;
    z-index: 2;
    text-align: right;
}
.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 80px;
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* Overlay */
.swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
   
}


.hero-btn {
    display: inline-block;
    background: #564A8E;
    color: #fff;
    padding: 12px 26px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}

.hero-btn:hover {
    background: #453b74;
}

/* Slide Backgrounds */
.slide-bg-1 { background-image: url('/image/slider/banner_1.jpg'); }
.slide-bg-2 { background-image: url('/image/slider/banner_2.jpg'); }
.slide-bg-3 { background-image: url('/image/slider/banner_3.jpg'); }
.slide-bg-4 { background-image: url('/image/slider/banner_4.jpg'); }

.footer {
    background-color: #564A8E;
    color: #ffffff;
    font-size: 14px;
}

.footer-box h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-box p,
.footer-box li {
    color: #eae7f7;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-box ul li a {
    color: #eae7f7;
    text-decoration: none;
}

.footer-box ul li a:hover {
    color: #ffffff;
}

/* Icons */
.footer-box i {
    margin-right: 8px;
}

/* Footer bottom */
.footer-bottom {
    background: #453b74;
    text-align: center;
    padding: 12px 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.achievement-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.achievement-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.achievement-box:hover {
    transform: translateY(-6px);
}

.achievement-box h2 {
    font-size: 36px;
    font-weight: 700;
    color: #564A8E;
    margin-bottom: 10px;
}

.achievement-box p {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    margin: 0;
}

/* Responsive */
.about-home {
    position: relative;
    padding: 100px 0;
    background-image: url('/image/about/bg-about.jpg'); /* public/images */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Overlay */
.about-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00c2f4a1;
    z-index: 1;
}

/* Content above overlay */
.about-home .container {
    position: relative;
    z-index: 2;
}

/* Image Styling */

/* Text Styling */
.about-content h6 {
    letter-spacing: 2px;
    color: #f8f9fa;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-content h2 {
    font-weight: 700;
    margin-bottom: 20px; 
    color:#0d0d0d;
}

.about-content p {
    color: #0d0d0d;
    line-height: 1.8;
    text-align:justify;
    font-size:18px;
}

/* Arrival Section */
.arrival {
    background-color: #ffffff; /* white background */
    padding: 80px 0;
}

.arrival-card {
   background: transparent;
    border: 0px;
    border-radius: 0px;
    padding: 0px;
    margin-bottom: 10px;
    text-align: center;
}

/* Image Top */
.arrival-card img {
    display: block;
    max-width: 90%;
    height: auto;
    margin: auto;
   
}

/* Content Bottom */
.arrival-content {
    padding: 25px;
    text-align: center;
    color: #0b0b0b; /* white text */
}

.arrival-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.arrival-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
    font-weight: 500;
}

/* Section heading underline */
h1.underline::after {
    content: '';
    display: block;
    width: 70px;
    border-bottom: 2px solid #000;
    margin: 10px 0 20px;
}

/* Wrapper */
.details-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Common box style */
.details-section-one,
.details-section-two,
.details-section-three {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 58%;              /* 🔹 width kam */
}

/* Left aligned */
.details-section-one,
.details-section-three {
    margin-right: auto;     /* left position */
}

/* Right aligned */
.details-section-two {
    margin-left: auto;      /* right position */
    
}


/* Content */
.section-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.Franchisee-heading{
    width:50%;
    margin: auto;
}

.Franchisee-heading{
    width:50%;
}

.Franchisee-heading h1{
  color:#585858;
}
.Franchisee-heading p{
    line-height:1.9;
    font-size: 14px;
}

/* Franchisee Section */
.Franchisee {
    background: #f8f9fa;
}

/* Common Box Styling */
.box-1, .box-2, .box-3 {
    background: #e9ecef;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Hover Effect */
.box-1:hover, .box-2:hover, .box-3:hover {
    transform: translateY(-8px);
}

/* Box Backgrounds */
.box-1 {
    border-bottom: 10px solid #198754; /* Success Green */
}

.box-3 {
    border-bottom: 10px solid #6255A0; /* Yellow */
}

.box-2 {
    background: #212529; /* Dark Background */
    color: #ffffff;
    border-bottom: 10px solid #ED7725; /* Sky Blue */
}

/* Image Section */
.image-section img {
    max-width: 120px;
    margin-bottom: 20px;
}

/* Content Styling */
.section-content h3 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 22px;
}

.section-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Dark box text override */
.box-2 .section-content p {
    color: #d1d1d1;
}


/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Breadcrumb Menu */
.about-menu ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.about-menu ul li {
    color: #6c757d;
}

.about-menu ul li a {
    text-decoration: none;
    color: #0e0e0e;
    font-weight: 500;
}

.about-menu ul li a:hover {
    text-decoration: underline;
}

/* Content Area */
.about-section-centent {
    background: #ffffff;
    padding: 40px;
   
}

/* Headings */
.about-section-centent h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-section-centent h3 {
    font-size: 22px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 15px;
}

.about-section-centent h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #495057;
}

/* Paragraphs */
.about-section-centent p {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    color: #555555;
    margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 15px;
    }

    .about-section-centent {
        padding: 25px;
    }

    .about-section-centent h2 {
        font-size: 26px;
    }

    .about-section-centent h3 {
        font-size: 20px;
    }

    .about-section-centent p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .about-menu ul {
        flex-wrap: wrap;
        font-size: 13px;
    }
}

.breadcrumb-custom {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-custom li {
    color: #6c757d;
}

.breadcrumb-custom li a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 500;
}

.breadcrumb-custom li a:hover {
    text-decoration: underline;
}

.breadcrumb-custom .separator {
    color: #999;
    font-weight: 600;
}

.breadcrumb-custom .active {
    color: #212529;
    font-weight: 600;
}

.box-offerings{
    background-color:#FFEFE1;
    color:#212529;
    font-size:14px!important;
}
.box-offerings-grey{
    background-color:#EBEBEC;
    color:#212529;
    font-size:14px!important;
}

.table {
    font-size: 14px;
    border-collapse: collapse;
}

/* Table Header */
.table thead th {
    background-color: #212529;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    padding: 12px;
    font-weight: 600;
}

/* Table Body */
.table tbody td {
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    color: #333;
}

/* First text column align left */
.table tbody td:nth-child(2) {
    text-align: left;
}

/* Icons styling */
.table i.fa-check {
    color: #198754; /* success green */
    font-size: 16px;
}

/* Borders */
.table-bordered > :not(caption) > * {
    border-width: 1px;
    border-color: #dee2e6;
}




/* Wrapper row spacing */
.ticket-service {
    margin-bottom: 25px;
}

/* Icon Box */
.ticket-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Content container */
.ticket-content {
    flex-direction: column;
    gap: 10px;
}

/* Heading */
.content-heading h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    color: #212529;
}

/* Description */
.content-all p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}



