/* ============================================= */
/* ================ BASE STYLES ================ */
/* ============================================= */
:root {
    --primary-color: #00265f;
    --primary-light: #00265f;
    --primary-dark: #32005a;
    --secondary-color: #ff7f50;
    --text-color: #333;
    --light-text: #666;
    --lighter-text: #999;
    /*--background-light: #f9f9f9;*/
    --background-light:#f4f3f3;
    --white: #ffffff;
    --black: #000000;
    --gray: #e0e0e0;
    --dark-gray: #888;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    font-size: 14px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================= */
/* ================ ICON STYLES ================ */
/* ============================================= */
i.fas, i.far, i.fab {
    color: var(--primary-color);
}

.p-icon {
    color: var(--primary-color) !important;
}

/* ============================================= */
/* ================ NAVIGATION ================= */
/* ============================================= */
.desktop-menu {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar {
    padding: 0 !important;
    height: 100% !important;
    display: flex;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin-right: 30px;
    height: 80px;
    display: flex;
    align-items: center;
}

.custom-logo {
    height: 245px;
    width: auto;
    max-width: none;
    object-fit: contain;
    padding-left: 3px;
    padding-top: 48px;
}

.navbar-toggler {
    border: 1px solid rgba(75, 0, 130, 0.2);
    padding: 0.5rem 0.75rem;
    font-size: 1.25rem;
    color: var(--primary-color);
    display: block;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234b0082' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.25em;
    height: 1.25em;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(75, 0, 130, 0.25);
    outline: none;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
    text-transform: capitalize;
    color: var(--text-color) !important;
    font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* ============================================= */
/* ================ DROPDOWN STYLES ============ */
/* ============================================= */
.dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow);
    padding: 15px;
    margin-top: 10px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-menu h6 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(75, 0, 130, 0.1);
    text-align: left;
    white-space: nowrap;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu ul li {
    margin-bottom: 6px;
    text-align: left;
}

.dropdown-item {
    padding: 8px 0;
    color: var(--light-text);
    transition: var(--transition);
    white-space: normal;
    display: block;
    text-align: left;
    border: none;
    background-color: transparent;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.dropdown-item:hover, 
.dropdown-item:focus {
    color: var(--primary-color);
    background-color: rgba(75, 0, 130, 0.05);
    padding-left: 5px;
}

.services-dropdown .dropdown-menu {
    min-width: 500px;
    width: auto;
    max-width: 600px;
    padding: 20px 15px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: 10px;
}

.services-dropdown .dropdown-menu .container {
    padding: 0;
    width: 100%;
}

.services-dropdown .dropdown-menu .row {
    display: flex;
    margin: 0 -10px;
    width: 100%;
}

.services-dropdown .dropdown-menu .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

.services-dropdown .dropdown-submenu {
    position: relative;
}

.services-dropdown .dropdown-submenu > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    padding: 10px;
    margin-top: -8px;
    margin-left: 0;
    box-shadow: var(--box-shadow);
}

.services-dropdown .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.mega-dropdown .dropdown-menu {
    width: 100%;
    max-width: 1200px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 25px;
    margin-top: 10px;
    min-width: 1200px;
}

.mega-dropdown .dropdown-menu .container {
    padding: 0;
    max-width: 100%;
}

.mega-dropdown .dropdown-menu .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    width: 100%;
}

.mega-dropdown .dropdown-menu .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    padding: 0 10px;
}

.mega-dropdown .dropdown-menu .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.mega-dropdown .dropdown-item {
    white-space: normal;
    text-align: left;
    padding: 8px 12px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 0;
    display: none;
    min-width: 220px;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

/* ============================================= */
/* ============ MOBILE RESPONSIVE STYLES ======= */
/* ============================================= */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: var(--box-shadow);
        position: fixed;
        top: 80px;
        left: 15px;
        right: 15px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        display: none;
        z-index: 999;
    }

    .navbar-collapse.show {
        display: block;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-link {
        padding: 12px 0 !important;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        margin-top: 5px !important;
        margin-bottom: 15px;
        box-shadow: none;
        border: 1px solid var(--gray);
    }
    
    .mega-dropdown .dropdown-menu {
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
    }
    
    .mega-dropdown .dropdown-menu .row {
        display: block;
    }
    
    .mega-dropdown .dropdown-menu .col-lg-2 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }
    
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: 10px;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }
    
    .show > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .dropdown-submenu .dropdown-menu {
        position: static !important;
        margin-left: 15px !important;
        border-left: 2px solid var(--primary-light);
    }
    
    .services-dropdown .dropdown-menu {
        width: 100% !important;
        min-width: 100% !important;
        left: 0 !important;
        transform: none !important;
        position: static !important;
    }
    
    .services-dropdown .dropdown-menu .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .services-dropdown .dropdown-submenu > .dropdown-menu {
        position: static;
        margin: 10px 0 10px 20px;
        border-left: 2px solid var(--primary-light);
        box-shadow: none;
    }
    
    .dropdown-menu h6,
    .dropdown-menu ul li {
        text-align: left;
    }
    
    .dropdown-submenu .dropdown-menu {
        position: static;
        margin: 10px 0 10px 20px;
        border-left: 2px solid var(--primary-light);
        box-shadow: none;
        display: none;
        width: auto;
    }
    
    .dropdown-submenu.show .dropdown-menu {
        display: block;
    }

    .desktop-menu {
        height: 70px;
    }
    
    .navbar-brand {
        margin-right: 15px;
    }
    
    .custom-logo {
        height: 202px;
        padding-left: 1px;
    }
}

/* ============================================= */
/* ================ UTILITY CLASSES ============ */
/* ============================================= */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.section-header p {
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.title {
    font-size: 2.5rem;
    /*font-weight: 700;*/
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sub-heading2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.small-heading2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ============================================= */
/* ================ HERO BANNER ================ */
/* ============================================= */
.homebanner {
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(0 38 95 / 20%) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.absolute-center {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 700;
}

.banner-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.banner-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.banner-image-right img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ============================================= */
/* ================ HIGHLIGHTS SECTION ========= */
/* ============================================= */
.whychoose-section {
    padding: 80px 0;
    background-color: var(--white);
}

.hero-search {
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.search-inner {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    padding: 30px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 5px;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.img-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: rgba(75, 0, 130, 0.1);*/
    border-radius: 50%;
}

.img-box img {
    max-width: 30px;
    max-height: 30px;
}

.info-box h6 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-box h6 .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.info-box p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0;
}

.whychoose-box {
    margin-top: 50px;
}

.why-card-box {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    transition: var(--transition);
    height: 100%;
}

.why-card-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}


/* Back to Top Button */
/* Progress Back to Top Button */
/* Progress Back to Top Button */
#progressContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    width: 60px;
    height: 60px;
    display: none; /* Initially hidden */
  }
  
  #progressCircle {
    transform: rotate(-90deg);
  }
  
  #progressCircle .track {
    fill: none;
    stroke: rgba(0, 38, 95, 0.1);
    stroke-width: 4;
  }
  
  #progressCircle .fill {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    transition: stroke-dashoffset 0.1s linear;
  }
  
  #backToTopBtn {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    margin: 5px;
    border: none;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    transform: none !important; /* Remove scaling */
  }
  
  #backToTopBtn:hover {
    background-color: #102c58;
    box-shadow: var(--box-shadow);
  }
/* ============================================= */

.image-box {
    /*width: 100px;*/
    height: 67px;
    margin: 0 auto 20px;
    position: relative;
}

.image-box img {
    max-width: 50px;
    max-height: 50px;
}

.badge {
    border: 1px solid #ffcb00;
    position: absolute;
    bottom: -10px;
    left: 27%;
    transform: translateX(-50%);
    background-color: #ffffdf;
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (min-width: 768px) {
    .badge {
        left: 40%;
    }
}

.badge img {
    width: 20px;
    height: 20px;
}

.why-card-box p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================= */
/* ================ COMMITMENT SECTION ========= */
/* ============================================= */
.commitment-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.commitment-section .row {
    row-gap: 30px;
}

.padding-50 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.cta-card {
    margin-top: 30px;
}

.commitment-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.commitment-box:hover {
    transform: translateY(-5px);
}

.commitment-box i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.commitment-box p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.padding-50 {
    padding: 50px 0;
}

.cta-card {
    background: linear-gradient(142deg, #fff5ce, #fcdfa3);
    border: 1px solid #d9b259;
    padding: 30px 60px;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1), 1.25em 1.25em 0 -0.5em #d9b259;
}

.cta-badge {
    background-color: #00265f;
    color: white;
    padding: 4px 7px;
    border-radius: 0px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-card p {
    margin-bottom: 20px;
}

.excellence {
    width: 12.25rem;
    height: 11rem;
    position: relative;
}

/* ============================================= */
/* ================ MASONRY SECTION ============ */
/* ============================================= */
.mansory-section {
    padding: 80px 0;
    background-color: var(--white);
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 20px;
}

.box {
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.box:hover {
    transform: translateY(-5px);
}

.box-one {
    background-color: rgba(0, 38, 95, 0.1);
    grid-column: 1 / 7;
    grid-row: 1 / 3;
}

.box-two {
    background-color: rgba(0, 38, 95, 0.05);
    grid-column: 7 / 10;
    grid-row: 1 / 2;
    text-align: center;
}

.box-three {
    background-color: rgba(0, 38, 95, 0.1);
    grid-column: 7 / 10;
    grid-row: 2 / 3;
}

.box-four {
    background-color: rgba(0, 38, 95, 0.05);
    grid-column: 10 / 13;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.box img {
    margin-top: 15px;
    align-self: flex-end;
}

.link-button a {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.link-button a:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.link-button i {
    margin-left: 5px;
}

/* ============================================= */
/* ================ SERVICES SECTION =========== */
/* ============================================= */
.services-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: left    ;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    min-height: 1.6rem;
}

.service-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================= */
/* ================ BRANDS SECTION ============= */
/* ============================================= */
.brands-sec {
    padding: 80px 0;
}

.brands-div {
    background-color: var(--white);
    padding: 20px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.brands-div:hover {
    transform: translateY(-5px);
}

.brands-div img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.light-background {
    background-color: var(--background-light);
}

/* ============================================= */
/* ================ EDITOR SECTION ============= */
/* ============================================= */
.editor-section {
    padding: 80px 0;
    background-color: var(--white);
}

.editor-card {
    background-color: var(--background-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.header {
    display: flex;
    padding: 20px;
    gap: 20px;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray);
}

.editor-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.info {
    flex: 1;
}

.info .text {
    color: var(--light-text);
    margin-bottom: 10px;
}

.info .badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.info h4 {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 5px;
}

.logo1 {
    max-width: 150px;
}

.body {
    padding: 20px;
}

.body p {
    color: var(--light-text);
    margin-bottom: 0;
}

.bottom {
    background-color: var(--white);
    padding: 20px;
    border-top: 1px solid var(--gray);
}

.table {
    margin-bottom: 0;
}

.table th, .table td {
    padding: 8px;
    text-align: center;
}

.table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    transition: var(--transition);
    margin-top: 15px;
}

.btn-order:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-order .text {
    text-align: left;
    margin-right: 10px;
}

.btn-order .text h6 {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.btn-order .text p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.btn-order img {
    width: 25px;
    height: 25px;
}

.excellence-logos {
    max-width: 100px;
    margin-bottom: 11px;
}
/* ============================================= */
/* ============ TESTIMONIAL SECTION ============ */
/* ============================================= */

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.testimonial-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testi-quote {
    color: #3498db;
    font-size: 36px;
    opacity: 0.2;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    color: #3498db;
    font-size: 40px;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-author h6 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 14px;
}

/* Owl Carousel Overrides */
.owl-carousel .owl-stage-outer {
    padding: 30px 0;
    margin: -30px 0;
}

.owl-nav {
    display: none !important;
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3498db !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    pointer-events: all;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #2980b9 !important;
    transform: scale(1.1);
}

.owl-nav button.owl-prev {
    margin-left: -50px;
}

.owl-nav button.owl-next {
    margin-right: -50px;
}

.owl-dots {
    display: none !important;
    text-align: center;
    margin-top: 30px;
}

.owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dots button.owl-dot.active {
    background: #3498db !important;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .testimonial-section {
        padding: 60px 0;
    }
    
    .owl-nav button.owl-prev {
        margin-left: -20px;
    }
    
    .owl-nav button.owl-next {
        margin-right: -20px;
    }
}

@media (max-width: 767px) {
    .testimonial-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testi-quote {
        font-size: 28px;
    }
}
/* ============================================= */
/* ================ FAQ SECTION ================ */
/* ============================================= */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.publisher-card {
    background-color: var(--background-light);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.publisher-card img {
    border-radius: 5px;
    object-fit: cover;
    height: 100%;
}

.publisher-card h6 {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0;
}

.publisher-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.faq-border {
    border-top: 1px solid var(--gray);
    padding-top: 15px;
    margin-top: 15px;
    color: var(--light-text);
    font-size: 0.95rem;
}

.custom-accordion .accordion-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: none;
}

.custom-accordion .accordion-button {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 500;
    padding: 15px 20px;
    border: none;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--white);
}

.custom-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.custom-accordion .accordion-body {
    padding: 20px;
    background-color: var(--background-light);
    color: var(--light-text);
}

/* ============================================= */
/* ================ WHITE SECTION ============== */
/* ============================================= */
.white-section {
    padding: 50px 0;
    background-color: var(--white);
}

/* ============================================= */
/* ================ FOOTER ===================== */
/* ============================================= */
footer {
    background-color: #00265f;
    color: var(--white);
    padding: 50px 0 0;
}

.upper-footer {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-list ul li {
    margin-bottom: 10px;
}

.footer-list ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.footer-list ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-list ul li.email a {
    word-break: break-all;
}

.lower-footer {
    padding: 20px 0;
}

.lower-footer p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons ul {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-icons ul li a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icons ul li a:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ============================================= */
/* ================ MODAL ====================== */
/* ============================================= */
.custom-modal {
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.modal-body {
    padding: 30px;
}

.btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}

.modal-body h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    padding: 12px 15px 12px 40px;
    border-radius: 5px;
    border: 1px solid var(--gray);
    font-size: 0.95rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.icons01 {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.message-icon {
    position: absolute;
    left: 15px;
    top: 20px;
}

.submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.submit:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.alert {
    display: none;
}

/* ============================================= */
/* ================ RESPONSIVE STYLES ========== */
/* ============================================= */
@media (max-width: 1199px) {
    .wrapper {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .box-one {
        grid-column: 1 / 4;
        grid-row: 1 / 3;
    }
    
    .box-two {
        grid-column: 4 / 7;
        grid-row: 1 / 2;
    }
    
    .box-three {
        grid-column: 4 / 7;
        grid-row: 2 / 3;
    }
    
    .box-four {
        grid-column: 1 / 7;
        grid-row: 3 / 4;
    }
}

@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .editor-section .row {
        flex-direction: column;
    }
    
    .editor-card {
        margin-bottom: 30px;
    }
    
    .service-card i {
        font-size: 2.2rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .hero-search {
        margin-top: 0;
    }
    
    .search-inner {
        padding: 20px;
    }
    
    .highlight-card {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .box {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }
    
    .testimonial-column {
        padding: 20px;
    }
    
    .faq-section .row {
        flex-direction: column;
    }
    
    .publisher-card .row {
        flex-direction: column;
    }
    
    .publisher-card img {
        margin-bottom: 15px;
        width: 100%;
        height: auto;
    }
    
    .social-icons ul {
        justify-content: center;
    }
    
    .lower-footer .col-lg-6 {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .service-card {
        padding: 25px;
    }
}

@media (max-width: 575px) {
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .title {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .sub-heading2 {
        font-size: 1.3rem;
    }
    
    .small-heading2 {
        font-size: 1.4rem;
    }
    
    .header {
        flex-direction: column;
        text-align: center;
    }
    
    .editor-image {
        margin: 0 auto;
    }
    
    .bottom .col-12 {
        margin-bottom: 15px;
    }
    
    .bottom .col-12:last-child {
        margin-bottom: 0;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
}