/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #666666;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    font-style: italic;
    color: #235467;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #aa9166;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #aa9166;
    color: #121518;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #aa9166;
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    transition: .3s ease-in-out;
    background: linear-gradient(90deg, #1d3a4b, #235467);
    /* Stylish gradient */
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    z-index: 999;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Navbar Items */
.navbar-dark .navbar-nav .nav-link {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #f1f1f1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color .3s ease;
    white-space: nowrap;
    /* Prevent overlap */
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffcc70;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffcc70;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 50%;
}

/* Dropdown Menu */
.nav-bar .dropdown-menu {
    margin-top: 10px;
    border-radius: 6px;
    background: #ffffff;
    padding: 8px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: none;
}

.nav-bar .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    color: #333;
    transition: .2s;
}

.nav-bar .dropdown-menu .dropdown-item:hover {
    background: #235467;
    color: #fff;
}

/* Desktop */
@media (min-width: 992px) {
    .nav-bar {
        padding: 12px 80px;
    }

    .nav-bar.nav-sticky {
        padding: 8px 80px;
    }

    .navbar-nav {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 991.98px) {
    .nav-bar {
        padding: 8px 20px;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
}

/* Fix dropdown hover disappearing */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* align neatly */
}

/* Dropdown caret icon spacing */
.navbar-nav .nav-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Smooth dropdown animation */
.nav-bar .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}


/*********** Logo Styles **********/
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.logo-img {
    height: 50px; /* Adjust this based on your header height */
    width: auto;
    max-width: 180px; /* Prevents logo from being too wide */
    transition: all 0.3s ease;
    filter: brightness(0) invert(1); /* Makes white logo visible on dark background */
    /* OR use drop-shadow for colored transparent logos */
    /* filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3)); */
}

/* Alternative filter options - try these if the above doesn't work */
.logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    transition: all 0.3s ease;
    
    /* Option 1: For light-colored transparent logos */
    filter: brightness(0) invert(1);
    
    /* Option 2: For dark-colored transparent logos */
    /* filter: brightness(0) invert(0.9) sepia(1) saturate(5) hue-rotate(175deg); */
    
    /* Option 3: Simple white color */
    /* filter: brightness(0) invert(1); */
    
    /* Option 4: Add subtle shadow for better visibility */
    /* filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); */
}

.navbar-brand:hover .logo-img {
    opacity: 0.9;
    transform: scale(1.05);
}

.brand-text {
    color: #ffffff;
    font-size: 1.4rem;
    margin-left: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Sticky navbar adjustments */
.nav-bar.nav-sticky .logo-img {
    height: 40px; /* Slightly smaller when sticky */
}

.nav-bar.nav-sticky .brand-text {
    font-size: 1.2rem;
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .brand-text {
        font-size: 1.2rem;
        margin-left: 8px;
    }
    
    .navbar-brand {
        padding: 3px 0;
    }
}

/* For very small screens */
@media (max-width: 576px) {
    .logo-img {
        height: 35px;
        max-width: 120px;
    }
    
    .brand-text {
        font-size: 1rem;
        margin-left: 6px;
    }
}



/* For mobile responsiveness */
@media (max-width: 991.98px) {
    .navbar-brand .logo-img {
        height: 35px;
    }
}





/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 170px);
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 25px;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    background: #121518;
    border: 2px solid #aa9166;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: #121518;
    background: #aa9166;
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }

    .carousel .carousel-caption p {
        font-size: 20px;
    }

    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }

    .carousel .carousel-caption p {
        font-size: 16px;
    }

    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #aa9166;
}

.page-header h2 {
    position: relative;
    color: #121518;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #121518;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #121518;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #121518;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }

    .page-header a {
        font-size: 18px;
    }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 1;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 4px;
    left: 50%;
    bottom: 0;
    background: linear-gradient(90deg, #235467, #aa9166);
    transform: translateX(-50%);
    border-radius: 2px;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
        white-space: normal;
    }
}


.feature-top .feature-item {
    padding: 30px 20px;
    /* more balanced spacing inside */
    text-align: center;
    background: rgba(35, 84, 103, 0.9);
    /* watery background overlay */
    border-radius: 12px;
    /* rounded corners */
    margin: 10px;
    /* space between boxes (horizontal + vertical) */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    /* soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-top .feature-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    background: rgba(35, 84, 103, 1);
    /* slightly darker on hover */
}

.feature-top .feature-item i {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-top .feature-item:hover i {
    color: #ffd166;
    /* accent highlight on hover */
}

.feature-top .feature-item h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-top .feature-item p {
    color: #e0e0e0;
    margin: 0;
    font-size: 16px;
}

/* Extra vertical spacing on small devices */
@media (max-width: 767.98px) {
    .feature-top .feature-item {
        margin: 15px 0;
        /* vertical gap */
    }
}

.court-functions {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.court-functions .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.court-functions .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 15px;
}

.court-functions .section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.functions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.function-card {
    background: rgba(35, 84, 103, 0.15);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
}

.function-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #235467, #aa9166);
    transform: scaleX(0);
    transition: 0.4s;
}

.function-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(35, 84, 103, 0.15);
}

.function-card:hover::before {
    transform: scaleX(1);
}

.function-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #235467, #2c6b8a);
    transition: 0.3s;
}

.function-card:hover .function-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #aa9166, #c8ab7a);
}

.function-icon i {
    font-size: 28px;
    color: #fff;
}

.function-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 20px;
    transition: 0.3s;
}

.function-card:hover .function-content h3 {
    color: #aa9166;
}

.function-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.point i {
    color: #28a745;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: 0.3s;
}

.function-card:hover .point i {
    color: #aa9166;
    transform: scale(1.1);
}

.point span {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    transition: 0.3s;
}

.function-card:hover .point span {
    color: #333;
}

/* Responsive */
@media (max-width:768px) {
    .functions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .function-card {
        padding: 25px;
    }

    .function-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .function-icon i {
        font-size: 24px;
    }

    .function-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .point span {
        font-size: 14px;
    }
}

@media (max-width:480px) {
    .court-functions {
        padding: 60px 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.function-card:nth-child(1) {
    animation-delay: 0.1s;
}

.function-card:nth-child(2) {
    animation-delay: 0.2s;
}

.function-card:nth-child(3) {
    animation-delay: 0.3s;
}

.function-card:nth-child(4) {
    animation-delay: 0.4s;
}

.function-card:nth-child(5) {
    animation-delay: 0.5s;
}

.function-card:nth-child(6) {
    animation-delay: 0.6s;
}



/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
}

.about .about-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #121518;
}

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

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    border: 2px solid #aa9166;
    border-radius: 0;
    background: #121518;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #121518;
    background: #aa9166;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    background: #121518;
    margin-bottom: 30px;
}

.service .service-icon {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.service .service-icon i {
    width: 100px;
    height: 100px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    color: #aa9166;
    background: #121518;
    transition: .5s;
}

.service .service-item:hover .service-icon i {
    margin-top: -15px;
}

.service .service-item h3 {
    margin: 0;
    padding: 25px 15px 15px 15px;
    font-size: 30px;
    font-weight: 600;
    color: #aa9166;
}

.service .service-item p {
    margin: 0;
    color: #999999;
    padding: 0 25px 25px 25px;
    font-size: 18px;
}

.service .service-item a.btn {
    position: relative;
    margin-bottom: 30px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    border: 2px solid #aa9166;
    border-radius: 0;
    background: #121518;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.feature .feature-item {
    margin-bottom: 30px;
}

.feature .feature-icon {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121518;
}

.feature .feature-icon i {
    width: 100px;
    height: 100px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    color: #aa9166;
    background: #000000;
    transition: .5s;
}

.feature .feature-item:hover .feature-icon i {
    margin-right: -15px;
}

.feature .feature-item h3 {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
}

.feature .feature-item h3::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #aa9166;
}

.feature .feature-item p {
    margin: 0;
    font-size: 16px;
}

.feature .feature-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #121518;
}

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


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    margin-bottom: 30px;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    padding: 50px 15px 30px 15px;
    text-align: center;
    background: #121518;
}

.team .team-text h2 {
    font-size: 22px;
    font-weight: 600;
    color: #aa9166;
}

.team .team-text p {
    margin: 0;
    color: #999999;
}

.team .team-social {
    position: absolute;
    width: calc(100% - 60px);
    height: 50px;
    top: -25px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #aa9166;
    font-size: 0;
    transition: .5s;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-social a {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
    text-align: center;
    color: #121518;
    transition: .3s;
}

.team .team-social a:last-child {
    margin-right: 0;
}

.team .team-social a:hover {
    color: #ffffff;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .faqs-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #121518;
}

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

@media(max-width: 767.98px) {
    .faqs .faqs-img {
        margin-bottom: 30px;
        height: auto;
    }
}

.faqs .card {
    margin-bottom: 15px;
    padding-top: 15px;
    border: none;
    border-radius: 0;
    border-top: 1px solid #aa9166;
}

.faqs .card:last-child {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #aa9166;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    width: 100%;
    color: #121518;
    font-size: 18px;
    line-height: 40px;
}

.faqs .card-header a span {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center;
    background: #121518;
    color: #aa9166;
    font-weight: 700;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #121518;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #121518;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-body {
    padding: 15px 0 0 0;
    font-size: 16px;
    border: none;
    background: #ffffff;
}

.faqs a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aa9166;
    border: 2px solid #aa9166;
    border-radius: 0;
    background: #121518;
    transition: .3s;
}

.faqs a.btn:hover {
    color: #121518;
    background: #aa9166;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 0 15px;
    padding: 30px;
    background: #121518;
    overflow: hidden;
}

.testimonial .testimonial-item i {
    position: absolute;
    top: 0;
    right: 0;
    color: #333333;
    font-size: 60px;
    transform: rotate(45deg);
    z-index: 1;
}

.testimonial .testimonial-item .col-12 {
    margin-top: 20px;
}

.testimonial .testimonial-item img {
    width: 100%;
}

.testimonial .testimonial-item h2 {
    color: #aa9166;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial .testimonial-item p {
    color: #999999;
    font-size: 16px;
    margin: 0;
}

.testimonial .owl-nav,
.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #aa9166;
}

.testimonial .owl-dot.active {
    background: #121518;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="%23235467" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.blog .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.blog .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #235467 0%, #aa9166 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.blog .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #235467, #aa9166);
    border-radius: 2px;
}

.blog .blog-carousel {
    position: relative;
    z-index: 1;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog .blog-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(35, 84, 103, 0.3);
}

.blog .blog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(35, 84, 103, 0.1) 0%, rgba(170, 145, 102, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.blog .blog-item:hover::before {
    opacity: 1;
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog .blog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog .blog-item:hover img {
    transform: scale(1.1);
}

.blog .blog-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #235467, #aa9166);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog .blog-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.blog .blog-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    background: linear-gradient(135deg, #235467 0%, #121518 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.blog .blog-item:hover h3 {
    background: linear-gradient(135deg, #aa9166 0%, #235467 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog .blog-item .meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 2px solid #f0f0f0;
}

.blog .blog-item .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.blog .blog-item .meta-item i {
    color: #aa9166;
    font-size: 16px;
    transition: all 0.3s ease;
}

.blog .blog-item:hover .meta-item i {
    color: #235467;
    transform: scale(1.2);
}

.blog .blog-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog .blog-item a.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #235467 0%, #2c6b8a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.blog .blog-item a.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #aa9166 0%, #c8ab7a 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.blog .blog-item a.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(35, 84, 103, 0.4);
}

.blog .blog-item a.btn:hover::before {
    left: 0;
}

.blog .blog-item a.btn i {
    transition: transform 0.3s ease;
}

.blog .blog-item a.btn:hover i {
    transform: translateX(5px);
}

/* Carousel Navigation */
.blog .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
    gap: 10px;
}

.blog .owl-prev,
.blog .owl-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #235467, #aa9166) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog .owl-prev:hover,
.blog .owl-next:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(35, 84, 103, 0.4) !important;
}

.blog .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.blog .owl-dot {
    display: inline-block;
    margin: 0 8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ddd !important;
    transition: all 0.3s ease;
    position: relative;
}

.blog .owl-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background: #235467;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.blog .owl-dot.active {
    background: transparent !important;
    border: 2px solid #235467;
}

.blog .owl-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog {
        padding: 60px 0;
    }

    .blog .section-header h2 {
        font-size: 32px;
    }

    .blog .blog-content {
        padding: 20px;
    }

    .blog .blog-item h3 {
        font-size: 20px;
    }

    .blog .owl-nav {
        position: relative;
        top: 0;
        justify-content: center;
        margin-top: 30px;
    }
}

/*******************************/
/******** Latest News CSS ******/
/*******************************/
.latest-news {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.latest-news .section-header {
    margin-bottom: 40px;
}

.latest-news .section-header h2 {
    color: #121518;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.latest-news .news-carousel {
    position: relative;
}

.latest-news .news-item {
    position: relative;
    margin: 0 15px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.latest-news .news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(35, 84, 103, 0.15);
}

.latest-news .news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.latest-news .news-category {
    background: linear-gradient(135deg, #235467, #aa9166);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
    align-self: flex-start;
}

.latest-news .news-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #235467;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-news .news-item p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-news .news-meta {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.latest-news .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
}

.latest-news .meta-item i {
    color: #aa9166;
    font-size: 12px;
}

.latest-news .news-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #235467;
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-decoration: none;
}

.latest-news .news-btn:hover {
    background: #aa9166;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(170, 145, 102, 0.3);
}

/* Carousel Navigation */
.latest-news .owl-nav {
    position: absolute;
    top: -70px;
    right: 0;
    display: flex;
    gap: 8px;
}

.latest-news .owl-prev,
.latest-news .owl-next {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #235467, #aa9166) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
}

.latest-news .owl-prev:hover,
.latest-news .owl-next:hover {
    transform: scale(1.1) !important;
}

.latest-news .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.latest-news .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd !important;
    transition: all 0.3s ease;
}

.latest-news .owl-dot.active {
    background: #235467 !important;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .latest-news .news-item {
        height: 260px;
        margin: 0 10px;
    }

    .latest-news .news-content {
        padding: 20px;
    }

    .latest-news .news-item h3 {
        font-size: 15px;
    }

    .latest-news .owl-nav {
        position: relative;
        top: 0;
        justify-content: center;
        margin-top: 20px;
    }
}


/*******************************/
/********* All News CSS ********/
/*******************************/
.all-news {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.all-news .section-header {
    margin-bottom: 50px;
    text-align: center;
}

.all-news .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 15px;
}

.all-news .section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* News Filters */
.news-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.news-filter-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #235467;
    color: #235467;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-filter-btn:hover,
.news-filter-btn.active {
    background: #235467;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(35, 84, 103, 0.3);
}

/* News Cards */
.news-page {
    margin-bottom: 50px;
}

.news-item {
    margin-bottom: 30px;
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

.news-item.hidden {
    opacity: 0;
    transform: scale(0.9);
    position: absolute;
    visibility: hidden;
}

.news-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(35, 84, 103, 0.15);
}

.news-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #235467, #aa9166);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: #aa9166;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.meta-item i {
    color: #aa9166;
    font-size: 14px;
}

.news-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: #235467;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.news-read-btn:hover {
    color: #aa9166;
    border-bottom-color: #aa9166;
    transform: translateX(5px);
}

.news-read-btn i {
    transition: transform 0.3s ease;
}

.news-read-btn:hover i {
    transform: translateX(3px);
}

/* News Pagination */
.news-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.news-pagination .page-item .page-link {
    color: #235467;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
}

.news-pagination .page-item .page-link:hover {
    background: #235467;
    color: #ffffff;
    border-color: #235467;
    transform: translateY(-2px);
}

.news-pagination .page-item.active .page-link {
    background: #aa9166;
    color: #ffffff;
    border-color: #aa9166;
    transform: translateY(-2px);
}

.news-pagination .page-item.disabled .page-link {
    color: #999;
    border-color: #e0e0e0;
    background: #f8f9fa;
    transform: none;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .all-news {
        padding: 60px 0;
    }

    .all-news .section-header h2 {
        font-size: 32px;
    }

    .news-filters {
        gap: 10px;
    }

    .news-filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .news-img {
        height: 200px;
    }

    .news-content {
        padding: 20px;
    }

    .news-content h3 {
        font-size: 18px;
    }

    .news-meta {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .news-pagination {
        gap: 5px;
    }

    .news-pagination .page-item .page-link {
        padding: 8px 12px;
        min-width: 40px;
        font-size: 14px;
    }
}

/* Animation for news items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-item {
    animation: fadeInUp 0.6s ease forwards;
}

.news-item:nth-child(1) {
    animation-delay: 0.1s;
}

.news-item:nth-child(2) {
    animation-delay: 0.2s;
}

.news-item:nth-child(3) {
    animation-delay: 0.3s;
}

.news-item:nth-child(4) {
    animation-delay: 0.4s;
}

.news-item:nth-child(5) {
    animation-delay: 0.5s;
}

.news-item:nth-child(6) {
    animation-delay: 0.6s;
}

/*******************************/
/******* Core Services CSS *****/
/*******************************/
.core-services {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background-color: #f8f9fa;
}

/* Section Header */
.core-services .section-header {
    margin-bottom: 30px;
    text-align: center;
}

.core-services .section-header h2 {
    color: #0d6efd; /* Digital blue */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.core-services .section-header p {
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
}

/* Service Card */
.core-services .service-card {
    position: relative;
    background: linear-gradient(135deg, #1f2a36 0%, #0d6efd 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    color: #ffffff;
    border-top: 3px solid #0d6efd;
}

.core-services .row > .col-lg-4:nth-child(n+4) {
    margin-top: 30px;
}

/* Hover Effect */
.core-services .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
    border-color: #66b2ff;
}

/* Icon Section */
.core-services .service-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    margin: 20px 20px 0 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.core-services .service-icon i {
    font-size: 42px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.core-services .service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.core-services .service-card:hover .service-icon i {
    transform: scale(1.15);
}

/* Content Section */
.core-services .service-content {
    padding: 20px 25px 25px 25px;
    text-align: center;
}

.core-services .service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.core-services .service-content p {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

/* Buttons */
.core-services .service-content a.btn {
    display: inline-block;
    padding: 8px 22px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.core-services .service-content a.btn:hover {
    background: #ffffff;
    color: #0d6efd;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .core-services .service-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .core-services .section-header h2 {
        font-size: 30px;
    }

    .core-services .service-icon {
        height: 80px;
        margin: 15px 15px 0 15px;
    }

    .core-services .service-icon i {
        font-size: 34px;
    }

    .core-services .service-content {
        padding: 15px 18px 20px 18px;
    }

    .core-services .row > .col-lg-4:nth-child(n+4) {
        margin-top: 15px;
    }
}


/*******************************/
/********* Timeline CSS ********/
/*******************************/
.timeline {
    position: relative;
    padding: 45px 0;
}

.timeline .timeline-start {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.timeline .timeline-container {
    padding: 0 15px;
    position: relative;
    background: inherit;
    width: 50%;
    margin-top: -5px;
}

.timeline .timeline-container.left {
    left: 0;
}

.timeline .timeline-container.right {
    left: 50%;
}

.timeline .timeline-container::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 5px;
    background: #aa9166;
    z-index: 1;
}

.timeline .timeline-container.left::before {
    top: 0;
    right: 0;
}

.timeline .timeline-container.right::before {
    bottom: 0;
    left: 0;
}

.timeline .timeline-container::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 5px;
    background: #aa9166;
    z-index: 1;
}

.timeline .timeline-container.left::after {
    bottom: 0;
    right: 0;
}

.timeline .timeline-container.right::after {
    top: 0;
    left: 0;
}

.timeline .timeline-container:first-child::before,
.timeline .timeline-container:last-child::before {
    display: none;
}

.timeline .timeline-container .timeline-content {
    padding: 30px;
    background: #121518;
    position: relative;
    border-right: 5px solid #aa9166;
}

.timeline .timeline-container.right .timeline-content {
    border-left: 5px solid #aa9166;
}

.timeline .timeline-container .timeline-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #aa9166;
}

.timeline .timeline-container .timeline-content h2 span {
    display: inline-block;
    margin-right: 15px;
    padding: 5px 10px;
    color: #121518;
    background: #aa9166;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
}

.timeline .timeline-container .timeline-content p {
    margin: 0;
    font-size: 16px;
    color: #999999;
}

@media (max-width: 767.98px) {
    .timeline .timeline-container {
        width: 100%;
        margin-top: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 30px;
    }

    .timeline .timeline-container:last-child {
        padding-bottom: 0;
    }

    .timeline .timeline-container.right {
        left: 0%;
    }

    .timeline .timeline-container.left::after,
    .timeline .timeline-container.right::after,
    .timeline .timeline-container.left::before,
    .timeline .timeline-container.right::before {
        width: 5px;
        height: 35px;
        left: 15px;
    }

    .timeline .timeline-container.left .timeline-content,
    .timeline .timeline-container.right .timeline-content {
        border-left: 5px solid #aa9166;
        border-right: none;
    }
}

/*******************************/
/********* Gallery CSS *********/
/*******************************/
.gallery-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.gallery-section .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 15px;
}

.gallery-section .section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #235467;
    color: #235467;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #235467;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(35, 84, 103, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    visibility: hidden;
}

.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #ffffff;
    height: 300px;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(35, 84, 103, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(35, 84, 103, 0.9) 0%, rgba(170, 145, 102, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: #ffffff;
}

.gallery-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-content p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.gallery-content span {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery-actions {
    display: flex;
    justify-content: flex-end;
}

.view-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    background: #ffffff;
    color: #235467;
    transform: scale(1.1);
}

.gallery-load-more {
    text-align: center;
}

.load-more-btn {
    padding: 15px 40px;
    background: #235467;
    border: none;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background: #aa9166;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(170, 145, 102, 0.3);
}

/* Lightbox Styles */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #ffffff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #235467;
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #ffffff;
    font-size: 18px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #235467;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-caption {
    padding: 20px;
    background: #ffffff;
    text-align: center;
}

.lightbox-caption h3 {
    color: #235467;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.lightbox-caption p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-section .section-header h2 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-card {
        height: 250px;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        height: 220px;
    }
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    visibility: hidden;
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
    color: #235467;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 15px;
}

.contact .section-header p {
    font-size: 18px;
    color: #235467;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info {
    background: #235467;
    color: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-header {
    color: #ffffff;

    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-header i {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
    display: block;
}

.contact-header h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #aa9166;
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 24px;
    color: #ffffff;
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
}

.contact-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-style: italic;
}

/* Phone Links */
.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.phone-link:hover {
    color: #aa9166;
    transform: translateX(5px);
}

.phone-link.call-center {
    color: #ffd700;
}

.phone-link.emergency {
    color: #ff6b6b;
    font-weight: 600;
}

.phone-link i {
    font-size: 14px;
    width: 20px;
}

/* Email Link */
.email-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.email-link:hover {
    color: #aa9166;
    transform: translateX(5px);
}

.email-link i {
    font-size: 14px;
    width: 20px;
}

/* Contact Form */
.contact-form-container {
    background: #235467;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.form-header i {
    font-size: 48px;
    color: #235467;

    margin-bottom: 15px;
    display: block;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.form-header p {
    color: #ffffff;
    margin: 0;
    font-size: 16px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    z-index: 2;
}

.textarea-icon i {
    top: 25px;
    transform: none;
}

.contact-form .form-control {
    width: 100%;
    height: 60px;
    padding: 0 20px 0 60px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #235467;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-form .form-control:focus {
    border-color: #aa9166;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(170, 145, 102, 0.1);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
}

.contact-form textarea.form-control {
    height: 150px;
    padding: 20px 20px 20px 60px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: linear-gradient(135deg, #aa9166, #c8ab7a);
    color: #235467;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(170, 145, 102, 0.4);
    color: #235467;
    background: linear-gradient(135deg, #c8ab7a, #aa9166);
}

/* Contact Footer */
.contact-footer {
    margin-top: 60px;
    color: #235467;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.info-card i {
    font-size: 48px;
    color: #235467;
    margin-bottom: 20px;
    display: block;
}

.info-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #235467;
    margin-bottom: 15px;
}

.info-card p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact .section-header h2 {
        font-size: 32px;
    }

    .contact-info,
    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-item {
        padding: 20px 0;
        gap: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 20px;
    }

    .contact-form .form-control {
        height: 55px;
        padding: 0 15px 0 50px;
    }

    .input-icon i {
        left: 15px;
        font-size: 16px;
    }

    .contact-form textarea.form-control {
        padding: 15px 15px 15px 50px;
    }

    .submit-btn {
        padding: 15px 30px;
        font-size: 16px;
    }

    .info-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .contact .section-header h2 {
        font-size: 28px;
    }

    .contact-header h3,
    .form-header h3 {
        font-size: 24px;
    }

    .contact-header i,
    .form-header i {
        font-size: 40px;
    }

    .info-card i {
        font-size: 40px;
    }
}

/* Footer Enhancements */
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact .contact-item i {
    font-size: 18px;
    color: #aa9166;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact .contact-text h4 {
    margin-bottom: 5px;
    color: #fff;
    font-size: 16px;
}

.footer-contact .contact-text a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.footer-contact .contact-text a:hover {
    color: #aa9166;
}

.footer-contact .contact-text span {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.court-hours {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.court-hours h4 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-links .row {
    margin: 0 -10px;
}

.footer-links .col-sm-6 {
    padding: 0 10px;
}

/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 65px 0;
}

.single img {
    margin: 10px 0 15px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}


/*******************************/
/********** Newsletter *********/
/*******************************/
.newsletter {
    position: relative;
    max-width: 900px;
    margin: 45px auto -140px auto;
    padding: 30px 15px;
    background: #aa9166;
    z-index: 1;
}

.newsletter .section-header {
    margin-bottom: 25px;
}

.newsletter .section-header h2::before,
.newsletter .section-header h2::after {
    border-color: #ffffff;
}

.newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter input {
    height: 50px;
    border: 2px solid #121518;
    border-radius: 0;
}

.newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #aa9166;
    background: #121518;
    border-radius: 0;
    border: 2px solid #aa9166;
    transition: .3s;
}

.newsletter .btn:hover {
    color: #121518;
    background: #aa9166;
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 180px;
    background: #235467;
    /* Changed from #121518 to #235467 */
    color: #ffffff;
}

.footer .footer-about,
.footer .footer-link,
.footer .footer-contact {
    position: relative;
    margin-bottom: 45px;
    color: #e0e0e0;
    /* Changed from #999999 to #e0e0e0 for better contrast */
}

.footer .footer-about h2,
.footer .footer-link h2,
.footer .footer-contact h2 {
    position: relative;
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
    /* Changed from #aa9166 to white for better contrast */
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #e0e0e0;
    /* Changed from #999999 to #e0e0e0 */
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #ffffff;
    /* Changed from #aa9166 to white */
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #ffffff;
    /* Changed from #aa9166 to white */
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #aa9166;
    /* Changed from #999999 to #aa9166 for hover effect */
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    background: #1a3d4d;
    /* Darker shade of #235467 for contrast */
    font-size: 0;
    text-align: center;
}

.footer .footer-menu .f-menu a {
    color: #e0e0e0;
    /* Changed from #999999 to #e0e0e0 */
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu .f-menu a:hover {
    color: #ffffff;
    /* Changed from #aa9166 to white */
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright {
    padding: 30px 15px;
    background: #235467;
    /* Darker shade of #235467 for contrast */
}

.footer .copyright p {
    margin: 0;
    color: #e0e0e0;
    /* Changed from #999999 to #e0e0e0 */
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
    /* Changed from #aa9166 to white */
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #aa9166;
    /* Changed from #ffffff to #aa9166 */
}

@media (max-width: 768px) {

    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

.footer-logo .logo-bg {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    /* White background */
    border-radius: 50%;
    /* Makes it circular */
    padding: 15px;
    max-width: 220px;
    max-height: 220px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    /* Keeps logo circular */
}

/******************************/
/******** VM Section **********/
/******************************/
.vm-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background: #f5f7f9;
    /* subtle light background */
}

.vm-section .section-header {
    margin-bottom: 50px;
}

.vm-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1d3a4b;
    margin-bottom: 10px;
}

.vm-section .section-header p {
    font-size: 18px;
    color: #555555;
}

.vm-content {
    display: flex;
    flex-wrap: wrap;
}

.vm-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.vm-icon {
    flex: 0 0 80px;
    height: 80px;
    background: #1d3a4b;
    color: #ffcc70;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.vm-item:hover .vm-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(29, 58, 75, 0.3);
}

.vm-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d3a4b;
    margin-bottom: 10px;
    position: relative;
}

.vm-text h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #ffcc70;
    position: absolute;
    left: 0;
    bottom: -5px;
}

.vm-text p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

.vm-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(29, 58, 75, 0.2);
}

.vm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vm-image img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991.98px) {
    .vm-item {
        flex-direction: row;
    }

    .vm-icon {
        margin-bottom: 0;
    }

    .vm-section {
        padding: 40px 15px;
    }

    .vm-section .section-header h2 {
        font-size: 28px;
    }
}

/******************************/
/******** PM Section **********/
/******************************/
.pm-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(35, 84, 103, 0.08), rgba(35, 84, 103, 0.15));
    overflow: hidden;
}

.pm-section::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(35, 84, 103, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.pm-section .section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.pm-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1d3a4b;
    margin-bottom: 10px;
    position: relative;
}

.pm-section .section-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #235467;
    margin: 10px auto 0;
    border-radius: 2px;
}

.pm-section .section-header p {
    font-size: 18px;
    color: #444;
    font-weight: 500;
}

.pm-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pm-image {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(35, 84, 103, 0.25);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    position: relative;
    padding: 8px;
    /* Space for the golden border */
    background: linear-gradient(135deg, #aa9166, #d4b77d, #aa9166);
    /* Golden border gradient */
}

.pm-image::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #ffffff;
    border-radius: 12px;
    z-index: 1;
}

.pm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.pm-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(170, 145, 102, 0.3);
}

.pm-image:hover img {
    transform: scale(1.06);
}

.pm-text p {
    font-size: 16.5px;
    color: #333;
    line-height: 1.9;
    margin-bottom: 15px;
}

.pm-text strong {
    color: #235467;
}

.pm-text .pm-signature {
    margin-top: 25px;
    font-size: 18px;
    color: #1d3a4b;
    font-weight: 600;
    border-left: 3px solid #235467;
    padding-left: 12px;
}

/* Alternative thicker border version */
.pm-image.thick-border {
    padding: 12px;
    background: linear-gradient(135deg, #aa9166, #d4b77d, #bfa270, #aa9166);
}

.pm-image.thick-border::before {
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 10px;
}

.pm-image.thick-border img {
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .pm-section {
        padding: 50px 15px;
    }

    .pm-section .section-header h2 {
        font-size: 28px;
    }

    .pm-image {
        margin-bottom: 25px;
    }
}

/*******************************/
/******* Terms of Use CSS ******/
/*******************************/
.terms-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.terms-section .section-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 10px;
}

.terms-section .section-header p {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #235467;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(35, 84, 103, 0.15);
}

.terms-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #235467, #2c6b8a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.terms-card:hover .terms-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #aa9166, #c8ab7a);
}

.terms-icon i {
    font-size: 24px;
    color: #ffffff;
}

.terms-text {
    flex: 1;
}

.terms-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 15px;
}

.terms-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.term-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.term-item i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.term-item:not(.prohibited) i {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.term-item.prohibited i {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.term-item span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.terms-note {
    background: rgba(35, 84, 103, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-left: 3px solid #235467;
}

.terms-note.warning {
    background: rgba(220, 53, 69, 0.05);
    border-left-color: #dc3545;
}

.terms-note i {
    color: #235467;
    font-size: 18px;
    margin-top: 2px;
}

.terms-note.warning i {
    color: #dc3545;
}

.terms-note p {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(35, 84, 103, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #235467;
    font-size: 14px;
}

.contact-item span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.terms-footer {
    margin-top: 50px;
    text-align: center;
}

.acceptance-box {
    background: linear-gradient(135deg, #235467, #2c6b8a);
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(35, 84, 103, 0.3);
}

.acceptance-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.acceptance-box p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
}

.last-updated i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-section {
        padding: 60px 0;
    }

    .terms-section .section-header h1 {
        font-size: 36px;
    }

    .terms-card {
        padding: 25px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .terms-icon {
        align-self: center;
    }

    .terms-text h2 {
        font-size: 22px;
    }

    .acceptance-box {
        padding: 30px 25px;
    }

    .acceptance-box h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .terms-section .section-header h1 {
        font-size: 32px;
    }

    .terms-card {
        padding: 20px;
    }

    .terms-icon {
        width: 50px;
        height: 50px;
    }

    .terms-icon i {
        font-size: 20px;
    }

    .contact-info {
        align-items: center;
    }

    .acceptance-box {
        padding: 25px 20px;
    }
}

/*******************************/
/******* Privacy Policy CSS ****/
/*******************************/
.privacy-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.privacy-section .section-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 10px;
}

.privacy-section .section-header p {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #235467;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(35, 84, 103, 0.15);
}

.privacy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #235467, #2c6b8a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.privacy-card:hover .privacy-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #aa9166, #c8ab7a);
}

.privacy-icon i {
    font-size: 24px;
    color: #ffffff;
}

.privacy-text {
    flex: 1;
}

.privacy-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 15px;
}

.privacy-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Privacy List */
.privacy-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.privacy-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    background: rgba(35, 84, 103, 0.05);
    border-radius: 8px;
    border-left: 3px solid #235467;
}

.privacy-item i {
    width: 40px;
    height: 40px;
    background: #235467;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.item-content {
    flex: 1;
}

.item-content strong {
    display: block;
    color: #235467;
    font-size: 16px;
    margin-bottom: 4px;
}

.item-content span {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.usage-item {
    text-align: center;
    padding: 20px;
    background: rgba(35, 84, 103, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-3px);
    background: rgba(35, 84, 103, 0.1);
}

.usage-icon {
    width: 50px;
    height: 50px;
    background: #235467;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
}

.usage-item h4 {
    color: #235467;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.usage-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Disclosure List */
.disclosure-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
}

.disclosure-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.disclosure-item i {
    width: 30px;
    height: 30px;
    background: rgba(35, 84, 103, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #235467;
    font-size: 14px;
    flex-shrink: 0;
}

.disclosure-item span {
    color: #333;
    font-size: 15px;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 6px;
}

.security-item i {
    color: #28a745;
    font-size: 14px;
}

.security-item span {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* Retention List */
.retention-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.retention-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(35, 84, 103, 0.05);
    border-radius: 8px;
}

.retention-item .number {
    width: 30px;
    height: 30px;
    background: #235467;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.retention-item span {
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.right-item {
    text-align: center;
    padding: 20px;
    background: rgba(35, 84, 103, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-3px);
    background: rgba(35, 84, 103, 0.1);
}

.right-item i {
    font-size: 32px;
    color: #235467;
    margin-bottom: 15px;
}

.right-item h4 {
    color: #235467;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.right-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Cookies Info */
.cookies-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 15px 0;
}

.cookie-type {
    padding: 15px;
    background: rgba(35, 84, 103, 0.05);
    border-radius: 8px;
    border-left: 3px solid #235467;
}

.cookie-type h4 {
    color: #235467;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-type p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(35, 84, 103, 0.05);
    border-radius: 8px;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: #235467;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-method div {
    flex: 1;
}

.contact-method strong {
    display: block;
    color: #235467;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-method span {
    color: #666;
    font-size: 14px;
}

/* Privacy Note */
.privacy-note {
    background: rgba(35, 84, 103, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-left: 3px solid #235467;
}

.privacy-note i {
    color: #235467;
    font-size: 18px;
    margin-top: 2px;
}

.privacy-note p {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Update Info */
.update-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(35, 84, 103, 0.05);
    border-radius: 6px;
    margin-top: 15px;
}

.update-info i {
    color: #235467;
    font-size: 16px;
}

.update-info span {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

/* Privacy Footer */
.privacy-footer {
    margin-top: 50px;
}

.compliance-box {
    background: linear-gradient(135deg, #235467, #2c6b8a);
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(35, 84, 103, 0.3);
    text-align: center;
}

.compliance-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.compliance-box p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.badge i {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-section {
        padding: 60px 0;
    }

    .privacy-section .section-header h1 {
        font-size: 36px;
    }

    .privacy-card {
        padding: 25px;
        flex-direction: column;
        gap: 20px;
    }

    .privacy-icon {
        align-self: center;
    }

    .privacy-text h2 {
        font-size: 22px;
    }

    .usage-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }

    .compliance-box {
        padding: 30px 25px;
    }

    .compliance-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .privacy-section .section-header h1 {
        font-size: 32px;
    }

    .privacy-card {
        padding: 20px;
    }

    .privacy-icon {
        width: 50px;
        height: 50px;
    }

    .privacy-icon i {
        font-size: 20px;
    }

    .cookies-info {
        grid-template-columns: 1fr;
    }

    .compliance-box {
        padding: 25px 20px;
    }
}

/*******************************/
/******** Cookies Policy CSS ****/
/*******************************/
.cookies-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.cookies-section .section-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 10px;
}

.cookies-section .section-header p {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.cookies-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cookies-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #235467;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
}

.cookies-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(35, 84, 103, 0.15);
}

.cookies-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #235467, #2c6b8a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cookies-card:hover .cookies-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #aa9166, #c8ab7a);
}

.cookies-icon i {
    font-size: 24px;
    color: #ffffff;
}

.cookies-text {
    flex: 1;
}

.cookies-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 15px;
}

.cookies-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* Cookies Note */
.cookies-note {
    background: rgba(35, 84, 103, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-left: 3px solid #235467;
}

.cookies-note.info {
    background: rgba(23, 162, 184, 0.05);
    border-left-color: #17a2b8;
}

.cookies-note i {
    color: #235467;
    font-size: 18px;
    margin-top: 2px;
}

.cookies-note.info i {
    color: #17a2b8;
}

.cookies-note p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Cookies Types */
.cookies-types {
    margin: 20px 0;
}

.cookie-type {
    background: rgba(40, 167, 69, 0.05);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #28a745;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.cookie-header i {
    font-size: 24px;
    color: #28a745;
}

.cookie-header h4 {
    color: #28a745;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.cookie-badge {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.cookie-type p {
    color: #666;
    margin-bottom: 15px;
}

.cookie-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    display: flex;
    gap: 10px;
}

.detail-item strong {
    color: #333;
    font-size: 14px;
    min-width: 80px;
}

.detail-item span {
    color: #666;
    font-size: 14px;
    flex: 1;
}

/* No Cookies List */
.no-cookies-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.no-cookie-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(220, 53, 69, 0.05);
    border-radius: 8px;
    border-left: 3px solid #dc3545;
}

.no-cookie-item i {
    color: #dc3545;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.no-cookie-item h4 {
    color: #dc3545;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.no-cookie-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Browser Controls */
.browser-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.browser-item {
    text-align: center;
    padding: 20px;
    background: rgba(35, 84, 103, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.browser-item:hover {
    transform: translateY(-3px);
    background: rgba(35, 84, 103, 0.1);
}

.browser-item i {
    font-size: 32px;
    color: #235467;
    margin-bottom: 15px;
}

.browser-item h4 {
    color: #235467;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.browser-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Impact List */
.impact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.impact-item i {
    width: 24px;
    height: 24px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    font-size: 12px;
    flex-shrink: 0;
}

.impact-item span {
    color: #333;
    font-size: 15px;
}

/* Privacy Features */
.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 6px;
}

.feature-item i {
    color: #28a745;
    font-size: 14px;
}

.feature-item span {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* Legal Basis */
.legal-basis {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.basis-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(35, 84, 103, 0.05);
    border-radius: 8px;
}

.basis-number {
    width: 30px;
    height: 30px;
    background: #235467;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.basis-content h4 {
    color: #235467;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.basis-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(35, 84, 103, 0.05);
    border-radius: 8px;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: #235467;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-method div {
    flex: 1;
}

.contact-method strong {
    display: block;
    color: #235467;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-method span {
    color: #666;
    font-size: 14px;
}

/* Update Notice */
.update-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(35, 84, 103, 0.05);
    border-radius: 6px;
    margin-top: 15px;
}

.update-notice i {
    color: #235467;
    font-size: 16px;
}

.update-notice span {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

/* Cookies Summary */
.cookies-summary {
    margin-top: 50px;
}

.summary-box {
    background: linear-gradient(135deg, #235467, #2c6b8a);
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(35, 84, 103, 0.3);
}

.summary-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.summary-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.summary-item i {
    color: #28a745;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.summary-item span {
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookies-section {
        padding: 60px 0;
    }

    .cookies-section .section-header h1 {
        font-size: 36px;
    }

    .cookies-card {
        padding: 25px;
        flex-direction: column;
        gap: 20px;
    }

    .cookies-icon {
        align-self: center;
    }

    .cookies-text h2 {
        font-size: 22px;
    }

    .browser-controls {
        grid-template-columns: 1fr;
    }

    .privacy-features {
        grid-template-columns: 1fr;
    }

    .summary-box {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .cookies-section .section-header h1 {
        font-size: 32px;
    }

    .cookies-card {
        padding: 20px;
    }

    .cookies-icon {
        width: 50px;
        height: 50px;
    }

    .cookies-icon i {
        font-size: 20px;
    }

    .detail-item {
        flex-direction: column;
        gap: 5px;
    }

    .summary-box {
        padding: 25px 20px;
    }

    .summary-item span {
        font-size: 14px;
    }
}

/*******************************/
/********** FAQs CSS ***********/
/*******************************/
.faqs-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.faqs-section .section-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 15px;
}

.faqs-section .section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Search Box */
.faq-search {
    max-width: 600px;
    margin: 0 auto 50px;
}

.search-box {
    position: relative;
    background: white;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #235467;
    box-shadow: 0 8px 25px rgba(35, 84, 103, 0.15);
}

.search-box i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
}

.search-box input {
    width: 100%;
    border: none;
    outline: none;
    padding: 0 0 0 40px;
    font-size: 16px;
    background: transparent;
    color: #333;
}

.search-box input::placeholder {
    color: #999;
}

/* FAQ Categories */
.faq-category {
    margin-bottom: 40px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: #235467;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #235467;
}

.category-title i {
    font-size: 24px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Items */
.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(35, 84, 103, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(35, 84, 103, 0.02);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #235467;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-question i {
    color: #235467;
    font-size: 16px;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(35, 84, 103, 0.02);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.faq-answer ul {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* FAQ Footer */
.faq-footer {
    margin-top: 60px;
}

.help-box {
    background: linear-gradient(135deg, #235467, #2c6b8a);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(35, 84, 103, 0.3);
}

.help-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.help-box p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.help-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.help-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.help-option i {
    font-size: 40px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.help-option h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.help-option p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 1;
}

.help-option span {
    font-size: 14px;
    opacity: 0.8;
}

/* Search Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-results i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #666;
    font-size: 24px;
    margin-bottom: 10px;
}

.no-results p {
    color: #888;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faqs-section {
        padding: 60px 0;
    }

    .faqs-section .section-header h1 {
        font-size: 36px;
    }

    .category-title {
        font-size: 24px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .help-box {
        padding: 40px 25px;
    }

    .help-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .help-option {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .faqs-section .section-header h1 {
        font-size: 32px;
    }

    .search-box {
        padding: 12px 20px;
    }

    .search-box i {
        left: 20px;
    }

    .search-box input {
        padding: 0 0 0 35px;
        font-size: 14px;
    }

    .category-title {
        font-size: 22px;
    }

    .faq-question {
        padding: 15px 18px;
    }

    .help-box {
        padding: 30px 20px;
    }

    .help-box h3 {
        font-size: 28px;
    }
}