* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-light: #babcbf;
    --color-dark: #1c2b36;
    --color-orange: #585858;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Reset Bootstrap defaults for dropdowns */
.dropdown-menu {
    all: revert;
}

.dropdown-item {
    all: revert;
}

/* ===== DESKTOP VIEW ===== */

/* Top Yellow Banner */
.top-banner {
    background: linear-gradient(135deg, var(--wcus-accent) 0%, var(--wcus-dark) 100%);
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.banner-left {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 14px;
}

.banner-item {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-item i {
    font-size: 16px;
}

.banner-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.auth-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* Logo Section */
.header-middle {
    background-color: #fff;
    padding: 0px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img{
    max-height: 75px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #333, #FFC107);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.info-section {
    display: flex;
    gap: 50px;
    align-items: center;
}

.info-item {
    text-align: center;
}

.info-icon {
    font-size: 24px;
    color: #1c2a35;
    margin-bottom: 5px;
}

.info-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.info-value a{
    color: #333;
    text-decoration: none;
}

.info-value a:hover{
    color: #7b7b7b;
    text-decoration: none;
}


/* Navigation Bar */
.nav-bar {
    background: linear-gradient(135deg, var(--wcus-accent) 0%, var(--wcus-dark) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: #585858;
    color: #fff;
}

.nav-link.active {
    color: #FFC107;
}

.nav-link i {
    font-size: 12px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.nav-bar .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background-color: #fff !important;
    min-width: 250px !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
    border-radius: 4px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.nav-bar .dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.nav-bar .dropdown-item {
    color: #333 !important;
    padding: 8px 20px !important;
    text-decoration: none !important;
    display: block !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    border-left: 3px solid transparent !important;
    background-color: #fff !important;
    border: none !important;
    margin: 0 !important;
}

.nav-bar .dropdown-item:hover {
    background-color: #f5f5f5 !important;
    color: #1c2a35 !important;
    font-weight: 600;
}

.nav-bar .dropdown-item.highlight {
    color: #FFC107 !important;
}

/* Sub Dropdown Menu */
.nav-bar .dropdown-item-group {
    position: relative !important;
}

.nav-bar .dropdown-item.has-submenu {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.nav-bar .submenu {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    background-color: #fff !important;
    min-width: 320px !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
    border-radius: 4px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 1001 !important;
    margin-left: 0px !important;
    padding: 0 !important;
    border: none !important;
    height: 250px;
    overflow: scroll;
}

.nav-bar .dropdown-item-group:hover .submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

.nav-bar .submenu-item {
    color: #333 !important;
    padding: 10px 20px !important;
    text-decoration: none !important;
    display: block !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    border-left: 3px solid transparent !important;
    background-color: #fff !important;
    border: none !important;
    margin: 0 !important;
}

.nav-bar .submenu-item:hover {
    background-color: #f5f5f5 !important;
    color: #1c2a35 !important;
    font-weight: 600;
}

.nav-bar .submenu-item.highlight {
    color: #FFC107 !important;
}

/* Nav Right Section */
.nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-btn,
.dark-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 18px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover,
.dark-btn:hover {
    color: #FFC107;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.menu-overlay {
    display: none;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 1024px) {
    .info-section {
        gap: 30px;
    }

    .info-item {
        padding: 0 10px;
    }

    .info-value {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    /* Hide Desktop Elements */
    .top-banner {
        display: none;
    }

    /* Mobile Header - Simple */
    .header-middle {
        flex-direction: row;
        padding: 15px 20px;
        gap: 15px;
        justify-content: space-between;
    }
    
    .slider-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 23 / 15 !important;
        overflow: visible;
        /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(100, 200, 255, 0.2); */
        background: #1a1a2e;
    }
    
    .contact-widget .icon a {
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
         height: 15px; 
        color: #fff;
        text-decoration: none;
    }
    
    .contact-widget .label a {
        font-size: 10px !important;
        font-weight: 500;
        text-align: center;
        color: white;
        letter-spacing: 0.5px;
        text-decoration: none;
    }
    
    .contact-widget {
        width:60px! important;
    }
    
    .logo {
        font-size: 22px;
        gap: 8px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .info-section {
        display: none;
    }

    /* Mobile Navigation */
    .nav-bar {
        padding: 0;
        background-color: #333;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-btn {
        display: block;
        padding: 15px 20px;
        font-size: 22px;
        color: #fff;
        cursor: pointer;
        border: none;
        background: none;
        order: 2;
    }

    .nav-right {
        display: flex;
        padding: 0;
        border: none;
        gap: 0;
    }

    .search-btn,
    .dark-btn {
        padding: 15px 15px;
        border: none;
        font-size: 18px;
    }

    /* Slide-in Menu from Right */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background-color: #333;
        flex-direction: column;
        gap: 0;
        padding-top: 60px;
        transition: right 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        position: relative;
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid #444;
        justify-content: space-between;
    }

    .nav-link:hover {
        background-color: #a4a4a4;
        color: #333;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 0;submenu
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background-color: #2a2a2a;
        box-shadow: none;
        border-radius: 0;
        transform: none;
        transition: all 0.3s ease;
        min-width: 100%;
        margin: 0;
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-item {
        padding: 12px 40px;
        color: #fff;
        border-left: none;
        border-bottom: 1px solid #444;
    }

    .dropdown-item:hover {
        background-color: #2a2a2a;
        color: #FFC107;
        border-left: none;
    }

    .dropdown-item.highlight {
        color: #FFC107;
    }

    /* Mobile Sub Dropdown */
    .nav-bar .submenu {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        /*overflow: hidden !important;*/
        background-color: #2a2a2a !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        transform: none !important;
        transition: all 0.3s ease !important;
        min-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }

    .nav-bar .dropdown-item-group.active .submenu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
    }

    .nav-bar .submenu-item {
        padding: 12px 30px !important;
        color: #fff !important;
        border-left: none !important;
        border-bottom: 1px solid #444 !important;
        background-color: transparent !important;
    }

    .nav-bar .submenu-item:hover {
        background-color: #2a2a2a !important;
        color: #fff !important;
        border-left: none !important;
    }

    .nav-bar .submenu-item.highlight {
        color: #fff !important;
    }

    .nav-bar .dropdown-item.has-submenu {
        padding-right: 20px !important;
    }

    .submenu-toggle {
        font-size: 10px;
        margin-left: auto;
    }

    /* Menu Close Button */
    .menu-close {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
        z-index: 1000;
    }

    /* Menu Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 998;
    }

    .menu-overlay.active {
        display: block;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }
    .nav-bar .dropdown-menu {
        min-width: 100% !important;
    }
    .display-none{
        display: none;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .nav-menu {
        width: 100%;
        max-width: 100%;
    }

    .search-btn,
    .dark-btn {
        padding: 12px 12px;
        font-size: 16px;
    }

    .nav-bar {
        padding: 10px;
        background-color: #00000049;
    }
}



/* slider-css */

.slider-container {
    width: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 23 / 9;
    overflow: visible;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(100, 200, 255, 0.2); */
    background: #1a1a2e;
}

.slider-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: white;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

/* Different Slide Animations */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px) rotateY(45deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) rotateY(-45deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

@keyframes zoomInSlide {
    from {
        opacity: 0;
        transform: scale(0.5) rotateZ(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateZ(0);
    }
}

@keyframes flipInSlide {
    from {
        opacity: 0;
        transform: rotateX(90deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotateX(0) scale(1);
    }
}

@keyframes cubeInSlide {
    from {
        opacity: 0;
        transform: translateZ(100px) rotateX(90deg) rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: translateZ(0) rotateX(0) rotateY(0);
    }
}

@keyframes swipeSlide {
    from {
        opacity: 0;
        transform: translateY(50px) skewX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) skewX(0);
    }
}

@keyframes blurInSlide {
    from {
        opacity: 0;
        filter: blur(20px);
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

.slide.animation-0 { animation: slideInFromRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.slide.animation-1 { animation: slideInFromLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.slide.animation-2 { animation: zoomInSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.slide.animation-3 { animation: flipInSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.slide.animation-4 { animation: cubeInSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.slide.animation-5 { animation: swipeSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.slide.animation-6 { animation: blurInSlide 0.8s ease-out forwards; }

/* Content Animations */
.slide-content {
    position: relative;
    text-align: center;
    opacity: 0;
    z-index: 3;
}

@keyframes fadeUpContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScaleContent {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInTopContent {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateInContent {
    from {
        opacity: 0;
        transform: rotate(-20deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.slide.active .slide-content {
    animation: fadeUpContent 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.slide.active.content-1 .slide-content {
    animation: fadeInScaleContent 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
}

.slide.active.content-2 .slide-content {
    animation: slideInTopContent 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.slide.active.content-3 .slide-content {
    animation: rotateInContent 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.3s;
}

.slide-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-top: 15px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #013863, #0050b9);
    width: 0%;
    z-index: 20;
    transition: background 0.5s ease;
    border-radius: 20px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: none;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

.slide-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 25;
}

/* Thumbnails Section - Overlay on Right */
.thumbnails-section {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    max-height: 85%;
    /* overflow-y: auto; */
    scroll-behavior: smooth;
}

.thumbnails-section::-webkit-scrollbar {
    width: 4px;
}

.thumbnails-section::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.thumbnails-section::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.thumbnails-section::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 5px;
}

.thumbnail {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    background-size: cover;
    background-position: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transform: scale(1.15);
    /* box-shadow: 0 10px 40px rgba(100, 200, 255, 0.5); */
}

@media (max-width: 768px) {
    .thumbnails-section {
        right: 10px;
    }

    .thumbnail {
        width: 75px;
        height: 75px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slide {
        font-size: 32px;
    }

    .slide-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .thumbnails-section {
        right: 8px;
        max-height: 70%;
        display: none;
    }

    .thumbnail {
        width: 65px;
        height: 65px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
        display: block;
    }

    .nav-btn.prev {
        left: 8px;
    }

    .nav-btn.next {
        right: 8px;
    }

    .slide {
        font-size: 24px;
    }

    .slide-number {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* About-us-section */

.abt-bg{
    background:linear-gradient(135deg, rgb(255 255 255 / 88%) 0%, rgb(255 255 255 / 84%) 100%), url(../image/img/B2.jpg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.about-section {
    
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title span {
    font-size: 48px;
    background: linear-gradient(135deg, #002d54 0%, #00236a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle h1 {
    font-size: 26px;
    color: #023787;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-image {
    float: right;
    width: 45%;
    margin: 0 0 20px 30px;
    animation: slideInRight 0.8s ease-out 0.3s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border: 3px solid rgba(102, 126, 234, 0.1);
}

.floating-image:hover img {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.content-text {
    animation: fadeInText 0.8s ease-out 0.4s both;
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.content-text p {
    text-align: justify;
    line-height: 1.9;
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 1.8rem;
    transition: all 0.3s ease;
}

.content-text p:hover {
    color: #34495e;
    transform: translateX(5px);
}

.highlight {
    color: #1b2b34;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.highlight:hover::after {
    width: 100%;
}

.content-text::after {
    content: "";
    display: table;
    clear: both;
}

.container {
    max-width: 1000px;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.p-4 {
    padding: 2rem !important;
}

/* ===============================
   SERVICE SECTION – RENAMED
================================ */

.svc-section {
    position: relative;
    background: #ffffff;
    padding: 60px 0;
}

/* GRID WRAPPER */
.svc-grid {
    position: relative;
    background: transparent;
}

/* L SHAPE BACKGROUND */
.svc-grid::before,
.svc-grid::after {
    content: "";
    position: absolute;
    left: -25px;
    width: 80%;
    background: #adafb2;
    z-index: 0;
}

.svc-grid::before {
    top: -30px;
    height: calc(50% + 30px);
}

.svc-grid::after {
    bottom: -30px;
    height: calc(50% + 30px);
}

/* REMOVE GAPS */
.svc-grid .row.svc-no-gap {
    margin: 0;
}
.svc-grid .row.svc-no-gap > [class*="col-"] {
    padding: 0;
}

/* LEFT INTRO PANEL */
.svc-intro {
    background: #adafb2;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.svc-intro-inner {
    padding: 0 40px 0 10px;
}

.svc-intro-inner span {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding-bottom: 18px;
    margin-bottom: 25px;
    position: relative;
}

.svc-intro-inner span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 1px;
    background: #fff;
}

.svc-intro-inner p {
    margin-top: 25px;
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
}

/* SERVICE CARD */
.svc-card {
    background: #ffffff;
    border: 1px solid #d4d9df;
    padding: 55px 40px;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.35s ease;
}

/* REMOVE TOP BORDER SECOND ROW */
.svc-grid .col-lg-4:nth-child(4) .svc-card,
.svc-grid .col-lg-4:nth-child(5) .svc-card,
.svc-grid .col-lg-4:nth-child(6) .svc-card {
    border-top: none;
}

/* ICON */
.svc-icon {
    margin-bottom: 22px;
}

.svc-icon i {
    font-size: 42px;
    color: #c08a54;
}

/* CONTENT */
.svc-content span {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #373737;
}

.svc-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* FEATURED CARD */
.svc-grid .col-lg-4:nth-child(2) .svc-card {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

/* HOVER */
.svc-card:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    z-index: 10;
}

/* STACKING FIX */
.svc-grid > .row {
    position: relative;
    z-index: 1;
}

.svc-section > .container {
    position: relative;
    z-index: 1;
}

/* MOBILE */
@media (max-width: 991px) {
    .svc-grid::before,
    .svc-grid::after {
        display: none;
    }

    .svc-intro {
        padding: 60px 30px;
        text-align: center;
    }

    .svc-intro-inner span::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* Decorative elements */
.about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.title-deco{
    color: #fff;
    font-family: 'Playfair Display', serif; 
    font-style: italic;
}

@media (max-width: 768px) {
    .floating-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }

    .section-title span {
        font-size: 36px;
    }

    .section-subtitle h1 {
        font-size: 20px;
    }

    .content-text p {
        text-align: left;
        font-size: 15px;
    }

    .about-section {
        padding: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .section-title span {
        font-size: 28px;
    }

    .section-subtitle h1 {
        font-size: 18px;
    }

    .content-text p {
        font-size: 14px;
        line-height: 1.7;
    }
}

 /* Dotted Background */
.dots-bg {
    position: absolute;
    top: 0%;
    right: 5%;
    width: 260px;
    height: 260px;
    background-image:radial-gradient(rgb(0 0 0 / 96%) 1.5px, #00000000 1.5px);
    background-size: 14px 14px;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.15s linear;
}

/* Darker dots on large screens */
@media (max-width: 768px) {
    .dots-bg {
        width: 200px;
        height: 200px;
        opacity: 0.4;
    }
}



/* Grid Section */

.our-pro-title{
    color:#002d54;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card-grid {
    background: white;
    border: 1px solid var(--wcus-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card-grid:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.product-image-grid {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0px 0px;
}

.product-info {
    padding: 18px;
}

.product-title-grid a{
    font-size: 16px;
    font-weight: 600;
    color: var(--wcus-dark);
    margin-bottom: 8px;
    text-decoration: none;
}

.product-desc-grid {
    font-size: 13px;
    color: var(--wcus-accent);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .carousel-nav.prev {
        left: 5px;
    }

    .carousel-nav.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 22px;
    }
}


/* Why-choose-us-section */
:root {
    --wcus-light: #babcbf;
    --wcus-dark: #1c2b36;
    --wcus-accent: #585858;
}

.wcus-section {
    background: linear-gradient(rgba(28, 43, 54, 0.85), rgba(28, 43, 54, 0.85)),
        url('../image/img/B1.jpg') center/cover;
    background-attachment: fixed;
    color: white;
    padding: 60px 20px;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
}

.wcus-wrapper {
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

/* Title */
.wcus-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.wcus-highlight {
    color: var(--wcus-accent);
}

/* Left content */
.wcus-left {
    margin-bottom: 50px;
}

.wcus-text {
    color: var(--wcus-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Progress */
.wcus-progress-item {
    margin-bottom: 30px;
}

.wcus-progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.wcus-progress-track {
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.wcus-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wcus-accent), var(--wcus-light));
    border-radius: 10px;
}

/* Stats */
.wcus-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.wcus-stat {
    text-align: center;
}

.wcus-stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--wcus-light);
}

.wcus-stat-text {
    color: var(--wcus-light);
    font-size: 20px;
}

/* Features */
.wcus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 40px;
    overflow: hidden;
    border-radius: 8px;
}

.wcus-feature {
    padding: 40px 30px;
}

.wcus-feature.light {
    background: #f5f5f5;
    color: #333;
}

.wcus-feature.gray {
    background: #4f4f4f;
    color: #fff;
}

.wcus-feature.dark {
    background: var(--wcus-dark);
    color: #fff;
}

.wcus-feature-icon img {
    width: 50px;
    margin-bottom: 15px;
}

.wcus-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.wcus-feature-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media(max-width:768px) {
    .wcus-title {
        font-size: 2rem;
    }

    .wcus-stat-number {
        font-size: 2rem;
    }
}


/* Feedback-section-css */

.feedback-wrapper{
    padding:60px 20px;
}

.feedback-badge{
    display:inline-block;
    background:#b8b8b8;
    color:#1a1a1a;
    padding:8px 20px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:25px;
}

.feedback-badge::before,
.feedback-badge::after{
    content:'';
    width:8px;
    height:8px;
    background:#959595;
    border-radius:50%;
    display:inline-block;
    margin:0 10px;
}

.feedback-heading{
    font-size:48px;
    font-weight:700;
    text-align:center;
    margin-bottom:20px;
}

.feedback-heading span{color:#00295d}

.feedback-card{
    background:#2a2a2a;
    border-radius:16px;
    padding:30px;
    height:100%;
    border:1px solid #3a3a3a;
    transition:.3s;
}

.feedback-card:hover{
    border-color:#959595;
    transform:translateY(-5px);
}

.feedback-text{
    font-size:15px;
    line-height:1.6;
    color:#ddd;
    margin-bottom:25px;
}

.feedback-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #3a3a3a;
    padding-top:20px;
}

.feedback-name{color:#ffffff;font-weight:600}
.feedback-role{font-size:13px;color:#999}
.feedback-stars{color:#ffffff}

.feedback-controls{
    text-align:center;
    margin-top:40px;
}

.ctrl-btn{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#2a2a2a;
    border:1px solid #3a3a3a;
    color:#959595;
    font-size:20px;
    margin:0 6px;
    cursor:pointer;
}

.ctrl-btn:hover{
    background:#959595;
    color:#1a1a1a;
}

.ctrl-dots{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:8px;
}

.ctrl-dot{
    width:8px;
    height:8px;
    background:#3a3a3a;
    border-radius:50%;
    cursor:pointer;
}

.ctrl-dot.active{
    width:24px;
    border-radius:4px;
    background:#959595;
}

@media(max-width:768px){
    .feedback-heading{font-size:30px}
}


/* ===================== PCS CONTAINER ===================== */

.pcs-bg{
    background: linear-gradient(rgba(28, 43, 54, 0.785), rgba(28, 43, 54, 0.85)),
        url('../image/img/bgp.png') center/cover;
    background-attachment:fixed ;
}

.pcs-carousel-container{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.pcs-carousel-wrapper{
    width:100%;
    max-width:1200px;
    padding:20px;
}

.pcs-carousel-box{
    backdrop-filter: blur(4px);
    border-radius:20px;
    padding:40px 20px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.pcs-heading{
    text-align: center;
    margin: 20px 0;
}

.pcs-title{
    color: #fff;
    font-size: 40px;
    font-family: 'Playfair Display', serif; 
    font-style: italic;
    font-weight: 600;
}

.pcs-heading p{
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================== TRACK ===================== */
.pcs-carousel-viewport{
    overflow:hidden;
    position:relative;
}

.pcs-carousel-track{
    display:flex;
    transition:transform .5s cubic-bezier(.4,0,.2,1);
}

/* ===================== PRODUCT CARD ===================== */
.pcs-product-card{
    flex:0 0 25%;
    padding:0 15px;
    text-align:center;
    animation:pcsFade .4s ease-in;
}

@keyframes pcsFade{
    from{opacity:0;transform:scale(.95)}
    to{opacity:1;transform:scale(1)}
}

.pcs-product-image{
    width:100%;
    height:200px;
    margin:0px auto;
    border-radius:15px; 
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:80px;
    transition:.3s;
}

.pcs-product-card:hover .pcs-product-image{
    transform:scale(1.03);
}

.pcs-product-title{
    font-size:1.4rem;
    font-weight:600;
    margin-top:10px;
    background: #fff;
}

.pcs-product-title a{
    text-decoration: none;
    color: #000;
}

.pcs-product-desc{
    font-size:.95rem;
    color:#666;
    padding:10px 0 20px;
    background: #fff;
    border-radius:0 0 15px 15px;
}

/* ===================== NAV ===================== */
.pcs-carousel-nav{
    display:flex;
    gap:15px;
    justify-content:center;
    margin-top:30px;
}

.pcs-nav-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    border:2px solid #ffffff;
    background:#fff;
    color:#000000;
    font-size:1.2rem;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.pcs-nav-btn:hover{
    background:#aaaaaa;
    color:#fff;
    transform:scale(1.1);
}

/* ===================== DOTS ===================== */
.pcs-carousel-dots{
    display:flex;
    gap:8px;
    justify-content:center;
    margin-top:20px;
    display: none;
}

.pcs-dot{
    width:10px;
    height:10px;
    background:#ddd;
    border-radius:50%;
    cursor:pointer;
    transition:.3s;
}

.pcs-dot.active{
    background:#667eea;
    width:28px;
    border-radius:5px;
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:768px){
    .pcs-product-card{flex:0 0 50%}
}

@media(max-width:480px){
    .pcs-product-card{flex:0 0 100%}
}


/* Footer-css */

.logo-bg{
    max-width: 100px;
    background: #fff;
    padding: 10px;
}

/* FOOTER BASE */
.fs-footer {
    background: linear-gradient(180deg, #111 0%, #1b1b1b 100%);
    color: #bfbfbf;
    padding: 70px 0 0;
    font-size: 15px;
}

/* BRAND BLOCK */
.fs-footer-brand {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fs-footer-brand span {
    font-size: 15px;
    color: #999;
    display: block;
}

.fs-footer-desc {
    margin: 20px 0;
    line-height: 1.7;
    max-width: 380px;
}

/* NEWSLETTER */
.fs-footer-newsletter input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 10px 0;
    color: #fff;
    outline: none;
}

.fs-footer-newsletter a {
    display: inline-block;
    margin-top: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.fs-footer-newsletter a i {
    color: #7c7c7c;
    margin-right: 6px;
}

/* USEFUL LINKS */
.fs-footer-title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.fs-footer-title::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #7c7c7c;
    position: absolute;
    top: -12px;
    left: 0;
}

.fs-footer-links ul {
    list-style: none;
    padding: 0;
}

.fs-footer-links li {
    margin-bottom: 12px;
}

.fs-footer-links li::before {
    content: "↓";
    color: #7c7c7c;
    margin-right: 8px;
}

.fs-footer-links a {
    color: #bfbfbf;
    text-decoration: none;
}

.fs-footer-links a:hover {
    color: #7c7c7c;
}

/* CONTACT BOX */
.fs-footer-contact {
    background: #1f1f1f;
    padding: 30px;
    border-top: 3px solid #7c7c7c;
}

.fs-item div a{
    text-decoration: none;
    color: #7c7c7c;
}

.fs-footer-contact .fs-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.fs-footer-contact i {
    font-size: 26px;
    color: #7c7c7c;
}

.fs-footer-contact strong {
    display: block;
    color: #fff;
    font-weight: 600;
}

/* BOTTOM BAR */
.fs-footer-bottom {
    border-top: 1px solid #2b2b2b;
    margin-top: 60px;
    padding: 20px 0;
    font-size: 14px;
}

.fs-footer-bottom a {
    color: #7c7c7c;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .fs-footer-contact {
        margin-top: 40px;
    }
}


/* go to top  */
.v-backtop {
    position: fixed;
    right: 20px;
    bottom: 40px;

    background: #fff;
    color: #000;

    width: 44px;
    height: 140px;

    border: none;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;

    writing-mode: vertical-rl;
    transform: rotate(180deg);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.v-backtop.show {
    opacity: 1;
    visibility: visible;
}

.v-backtop:hover {
    transform: rotate(180deg) translateY(-6px);
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--wcus-dark) 0%, var(--wcus-accent) 100%);
    border-radius: 12px;
    margin: 60px 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

/* Contact Info Side */
.cta-info {
    background: linear-gradient(135deg, var(--wcus-dark) 0%, #1a2430 100%);
    padding: 60px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-info::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--wcus-light);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    right: -100px;
}

.cta-info::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--wcus-accent);
    border-radius: 50%;
    opacity: 0.08;
    bottom: -50px;
    left: -50px;
}

.cta-info-content {
    position: relative;
    z-index: 1;
}

.cta-info-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-detail {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--wcus-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wcus-dark);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-text a{
    display: block;
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.5;
    text-decoration: none;
    color: #fff;
}

.contact-text a:hover{ 
    color: #9c9c9c;
}

/* Form Side */
.cta-form-side {
    background: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-form-title {
    font-size: 1.8rem;
    color: var(--wcus-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-form-subtitle {
    color: var(--wcus-accent);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f9f9f9;
    color: #6f6f6f;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--wcus-light);
    background: white;
    box-shadow: 0 0 0 3px rgba(186, 188, 191, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.cta-button {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--wcus-light), #a0a2a5);
    color: var(--wcus-dark);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(186, 188, 191, 0.3);
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Floating shapes */
.faq-shape {
    position: absolute;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
}

.faq-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: #003585;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.faq-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: #003585;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

.faq-shape.shape-3 {
    width: 120px;
    height: 120px;
    background: var(--wcus-light);
    border-radius: 70% 30% 66% 34% / 33% 66% 34% 67%;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.faq-content {
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 2.2rem;
    color: var(--wcus-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-intro {
    color: var(--wcus-accent);
    font-size: 1.05rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    border-color: var(--wcus-light);
    box-shadow: 0 6px 16px rgba(186, 188, 191, 0.2);
    transform: translateX(5px);
}

.faq-question {
    width: 100%;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--wcus-dark);
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
}

.faq-question.active {
    background: linear-gradient(135deg, var(--wcus-light) 0%, #a0a2a5 100%);
    color: var(--wcus-dark);
}

.faq-toggle {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    user-select: none;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 20px;
    color: var(--wcus-accent);
    line-height: 1.7;
}

/* Icon animations */
.floating-icon {
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    margin: 0 10px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cta-info,
    .cta-form-side {
        padding: 40px 25px;
    }

    .cta-info-title,
    .cta-form-title {
        font-size: 1.5rem;
    }

    .faq-section {
        padding: 30px 20px;
    }

    .faq-title {
        font-size: 1.6rem;
    }

    .faq-shape {
        opacity: 0.04;
    }
}

/* Sitemap-css */

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #151515;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif; 
    font-style: italic;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.sitemap-link {
    text-decoration: none;
    display: block;
}

.sitemap-card {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--wcus-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: 2px solid transparent;
}

.sitemap-link:hover .sitemap-card {
    background: linear-gradient(135deg, #686868 0%, #070707 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.sitemap-card:focus-visible {
    outline: 2px solid var(--wcus-accent);
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .sitemap-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }

    .sitemap-card {
        padding: 20px 15px;
        font-size: 14px;
    }
}


/* breadcrumb-section */
 

.breadcrumb-section {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(51, 65, 85, 0.5);
    padding: 80px 40px;
    overflow: hidden;
    text-align: center;
}

/* Floating CSS Shapes */
.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Circle Shape */
.shape {
    position: absolute;
    opacity: 0.08;
}

.circle-1 {
    width: 200px;
    height: 200px;
    border: 3px solid #3b82f6;
    border-radius: 50%;
    top: -80px;
    left: -50px;
    animation: float-shape 12s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    border: 2px solid #06b6d4;
    border-radius: 50%;
    bottom: -40px;
    right: -30px;
    animation: float-shape 14s ease-in-out infinite reverse;
    animation-delay: 2s;
}

/* Square/Rectangle Shapes */
.square-1 {
    width: 120px;
    height: 120px;
    border: 2px solid #8b5cf6;
    top: 30%;
    right: 5%;
    animation: float-shape 16s ease-in-out infinite;
    animation-delay: 1s;
    transform: rotate(45deg);
}

.square-2 {
    width: 180px;
    height: 100px;
    border: 2px solid #ec4899;
    bottom: 10%;
    left: 5%;
    animation: float-shape 15s ease-in-out infinite reverse;
    animation-delay: 3s;
}

/* Triangle Shape */
.triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid #06b6d4;
    opacity: 0.06;
    top: 20%;
    left: 50%;
    animation: float-shape 18s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Gradient Circle */
.gradient-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: conic-gradient(#3b82f6, #06b6d4, #8b5cf6, #3b82f6);
    opacity: 0.04;
    top: -100px;
    right: -80px;
    animation: float-shape 20s linear infinite;
    animation-delay: 2.5s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(15px);
    }
    50% {
        transform: translateY(-50px) translateX(-10px);
    }
    75% {
        transform: translateY(-20px) translateX(25px);
    }
}

/* Content Layer */
.breadcrumb-content {
    position: relative;
    z-index: 1;
}

.breadcrumb-header {
    margin-bottom: 30px;
}

.breadcrumb-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #64748b;
    margin-bottom: 8px;
    display: block;
}

.breadcrumb-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Breadcrumb Trail */
.breadcrumb-trail {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-button {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.3) 0%, rgba(51, 65, 85, 0.2) 100%);
    border: 1px solid rgba(100, 116, 139, 0.3);
    color: #cbd5e1;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.breadcrumb-button:hover {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.4) 0%, rgba(71, 85, 105, 0.3) 100%);
    border-color: rgba(148, 163, 184, 0.5);
    color: #f1f5f9;
    transform: translateY(-2px);
}

.breadcrumb-button.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #1d4ed8;
    color: #ffffff;
}

.breadcrumb-button.active:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.breadcrumb-separator {
    color: #475569;
    font-size: 16px;
    margin: 0 -2px;
}

.icon-badge {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.breadcrumb-button:hover .icon-badge {
    background: rgba(59, 130, 246, 0.2);
}

/* Meta Information */
.breadcrumb-meta {
    margin-top: 25px;
    padding-top: 55px;
    border-top: 1px solid rgba(51, 65, 85, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94a3b8;
}

.meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 30px 20px;
    }

    .breadcrumb-title {
        font-size: 24px;
    }

    .breadcrumb-trail {
        gap: 8px;
    }

    .breadcrumb-button {
        padding: 6px 12px;
        font-size: 13px;
    }

    .breadcrumb-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* side-section */
.contact-widget {
    position: fixed;
    left: 0px;
    top: 75%;
    transform: translateY(-50%);
    width: 80px;
    background: linear-gradient(135deg, #646464 0%, #595959 100%);
    border-radius: 50px;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.contact-item:hover {
    transform: scale(1.1);
}

.icon a{
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    text-decoration: none;
}

.label a{
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    color: white;
    letter-spacing: 0.5px;
    text-decoration: none;
}

/* Rounded container styling */
.widget-container {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.custom-container{
    max-width:1150px;
    width:100%;
    margin:0 auto;
}