/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    background-color: rgb(246, 251, 255);
}

/* Navigation Bar */
nav {
    background-color: white;
    color: #333;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

@media (min-width: 769px) {
    nav {
        padding: 10px 40px;
    }
}

.logo {
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    width: 156px;
    height: 58px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 5px;
}

nav a {
    text-decoration: none;
    color: inherit;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.3s;
}

nav a img {
    width: 30px;
    height: 30px;
    margin-bottom: 1px;
}

nav a:hover {
    background-color: #c0ecfe;
    border-radius: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: inherit;
    padding: 0 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.3s;
}

.dropdown-toggle img {
    width: 30px;
    height: 30px;
    margin-top: 5px;
}

.dropdown-toggle:hover {
    background-color: #c0ecfe;
    border-radius: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    font-size: 14px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

/* Mobile Menu */
.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
}

.menu-icon i {
    color: #333;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .menu-icon {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 2;
    }

    nav ul {
        flex-direction: column;
        margin-top: 50px;
        width: 100%;
        padding-left: 0;
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        margin: 1px 0;
        width: 100%;
    }

    nav a {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 10px;
    }

    nav a img {
        margin-right: 10px;
        margin-bottom: 0;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: left;
        width: 100%;
        flex-direction: row;
        align-items: center;
        padding: 10px;
    }

    .dropdown-toggle img {
        margin-right: 10px;
        margin-bottom: 0;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
    }

    .dropdown:last-child {
        display: none;
    }
}



/* Header Section with Auto-Typing */
.header-container {
    width: 100%;
    height: 400px;
    background-image: url('/assets/images/home/feel-tourism.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.search-bar {
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.search-bar:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.search-icon {
    background-color: transparent;
    border: none;
    border-radius: 30px 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
}

.search-icon i {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.search-bar:hover .search-icon i {
    color: #007bff;
}

.search-input {
    font-family: Verdana, sans-serif;
    font-size: 1.5rem;
    border: none;
    border-radius: 0 30px 30px 0;
    background-color: transparent;
    color: #000000;
    padding: 10px 15px;
    outline: none;
    width: 100%;
}

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

@media (max-width: 768px) {
    .header-container {
        height: 350px;
    }

    .search-input {
        font-size: 1.2rem;
    }

    .search-bar {
        max-width: 400px;
    }

    .search-icon {
        padding: 8px 12px;
    }

    .search-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 300px;
    }

    .search-input {
        font-size: 1rem;
    }

    .search-bar {
        max-width: 300px;
    }

    .search-icon {
        padding: 6px 10px;
    }

    .search-icon i {
        font-size: 0.9rem;
    }
}


/* Hotel Destinations */
.hotel-destinations {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto 2rem auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: left;
}

.hotel-destinations h2 {
    margin-bottom: 10px;
}

.hotel-destinations p {
    margin-bottom: 20px;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 5px;
}

.hotel-item {
    padding: 7px;
    display: flex;
    align-items: center;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.hotel-item img {
    max-width: 60px;
    height: auto;
    margin-right: 10px;
    border-radius: 10px;
}

.hotel-details {
    text-align: left;
}

.hotel-details strong {
    font-weight: bold;
    font-size: 16px;
}

.hotel-details p {
    font-size: 14px;
    margin: 5px 0;
    margin-top: auto;
}

.hotel-item:hover {
    background-color: #c0ecfe;
    border-radius: 10px;
    transform: translate(-1px, -1px);
}

@media (max-width: 768px) {
    .hotel-destinations {
        width: 95%;
        padding: 1rem;
        margin: 10px auto;
    }

    .hotel-destinations h2 {
        margin: 1rem 0;
        font-size: 1.2em;
    }

    .hotel-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .hotel-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 8px;
        box-sizing: border-box;
    }

    .hotel-item img {
        margin: 0 0 8px 0;
        max-width: 100%;
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 8px;
    }

    .hotel-details {
        text-align: center;
    }

    .hotel-details strong {
        font-size: 14px;
    }

    .hotel-details p {
        font-size: 12px;
        margin: 3px 0;
    }

    .hotel-item:hover {
        transform: translate(-1px, -1px);
    }
}

@media (max-width: 480px) {
    .hotel-destinations {
        width: 98%;
        padding: 0.5rem;
        margin: 5px auto;
    }

    .hotel-destinations h2 {
        font-size: 1.1em;
        margin: 0.8rem 0;
    }

    .hotel-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hotel-item img {
        aspect-ratio: 1 / 1;
    }
}

/* Flight Routes */
.flight-routes-section {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto 2rem auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.flight-routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.flight-route {
    padding: 7px;
    display: flex;
    align-items: center;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.route-image img {
    max-width: 60px;
    height: auto;
    margin-right: 10px;
    border-radius: 10px;
}

.route-details {
    text-align: left;
}

.route-cities {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.route-cities i {
    margin: 0 5px;
}

.route-codes {
    font-size: 18px;
    color: #888;
}

.flight-route:hover {
    background-color: #c0ecfe;
    border-radius: 10px;
    transform: translate(-1px, -1px);
}

@media (max-width: 768px) {
    .flight-routes-section {
        width: 95%;
        padding: 1rem;
        margin: 10px auto;
    }

    .flight-routes-section h2 {
        margin: 1rem 0;
        font-size: 1.2em;
    }

    .flight-routes-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .flight-route {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 8px;
        box-sizing: border-box;
    }

    .route-image img {
        margin: 0 0 8px 0;
        max-width: 100%;
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 8px;
    }

    .route-details {
        text-align: center;
    }

    .route-cities {
        font-size: 14px;
    }

    .route-codes {
        font-size: 12px;
        margin: 3px 0;
    }

    .flight-route:hover {
        transform: translate(-1px, -1px);
    }
}

@media (max-width: 480px) {
    .flight-routes-section {
        width: 98%;
        padding: 0.5rem;
        margin: 5px auto;
    }

    .flight-routes-section h2 {
        font-size: 1.1em;
        margin: 0.8rem 0;
    }

    .flight-routes-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .route-image img {
        aspect-ratio: 1 / 1;
    }
}

/* Cab Routes */
.cab-routes-section {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto 2rem auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.cab-routes-section h2 {
    margin-bottom: 10px;
}

.cab-routes-section p {
    margin-bottom: 20px;
}

.cab-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 5px;
}

.cab-route {
    padding: 7px;
    display: flex;
    align-items: center;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.route-image img {
    max-width: 60px;
    height: auto;
    margin-right: 10px;
    border-radius: 10px;
}

.route-details {
    text-align: left;
}

.cab-route .route-details strong {
    font-weight: bold;
    font-size: 16px;
}

.cab-route .route-details p {
    font-size: 14px;
    margin: 5px 0;
}

.cab-route:hover {
    background-color: #c0ecfe;
    border-radius: 10px;
    transform: translate(-1px, -1px);
}

@media (max-width: 768px) {
    .cab-routes-section {
        width: 95%;
        padding: 1rem;
        margin: 10px auto;
    }

    .cab-routes-section h2 {
        margin: 1rem 0;
        font-size: 1.2em;
    }

    .cab-routes-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .cab-route {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 8px;
        box-sizing: border-box;
    }

    .route-image img {
        margin: 0 0 8px 0;
        max-width: 100%;
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 8px;
    }

    .route-details {
        text-align: center;
    }

    .route-details strong {
        font-size: 14px;
    }

    .route-details p {
        font-size: 12px;
        margin: 3px 0;
    }

    .cab-route:hover {
        transform: translate(-1px, -1px);
    }
}

@media (max-width: 480px) {
    .cab-routes-section {
        width: 98%;
        padding: 0.5rem;
        margin: 5px auto;
    }

    .cab-routes-section h2 {
        font-size: 1.1em;
        margin: 0.8rem 0;
    }

    .cab-routes-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .route-image img {
        aspect-ratio: 1 / 1;
    }
}

/* Slider */
.slider-box {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto 2rem auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: left;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    position: relative;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.slider-header h2 {
    margin: 0;
}

.slider-controls {
    display: flex;
}

.slider-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 2px;
    transition: background-color 0.3s ease;
}

.slider-button:hover {
    background-color: #0056b3;
}

.slider-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 calc(25% - 10px);
    text-align: center;
    margin: 0 5px;
    box-sizing: border-box;
    position: relative;
    transition: flex 0.3s ease;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 7px;
    aspect-ratio: 300 / 400;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    text-align: center;
}

.slide-info h3 {
    margin: 5px 0;
    font-size: 1.1em;
}

.slide-info p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

/* Hide empty sliders */
.slider-box:empty,
.slider-track:empty {
    display: none;
}

/* Responsive */
@media (min-width: 769px) {
    .slide {
        flex: 0 0 calc(25% - 10px);
    }
}

@media (max-width: 768px) {
    .slider-box {
        width: 95%;
        padding: 1rem;
        margin: 10px auto;
        overflow: hidden;
    }

    .slider-box h2 {
        margin: 0;
        font-size: 1.1em;
        flex: 1;
    }

    .slider-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .slider-controls {
        display: flex;
        align-items: center;
    }

    .slider-button {
        padding: 6px 10px;
        font-size: 1em;
        margin: 0 3px;
    }

    .slider-track {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .slide {
        flex: 0 0 calc(50% - 10px) !important;
        scroll-snap-align: start;
        margin: 0 5px;
    }

    .slide img {
        width: 100%;
        aspect-ratio: 300 / 400;
        object-fit: cover;
        border-radius: 8px;
    }

    .slide-info {
        padding: 8px 0;
    }

    .slide-info h3 {
        font-size: 0.95em;
    }

    .slide-info p {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .slider-box {
        width: 98%;
        padding: 0.5rem;
        margin: 5px auto;
    }

    .slider-box h2 {
        font-size: 1em;
        margin: 0;
    }

    .slider-header {
        margin-bottom: 10px;
    }

    .slider-controls [id^="prev-next-buttons-"] {
        display: none !important; /* Hide buttons container on mobile */
    }

    .slider-track {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .slide {
        flex: 0 0 calc(100% - 10px);
        margin: 0 5px;
    }

    .slide img {
        aspect-ratio: 300 / 400;
    }

    .slide-info h3 {
        font-size: 0.9em;
    }

    .slide-info p {
        font-size: 0.75em;
    }
}

.slide.full-width {
    flex: 0 0 100%;
    margin: 0;
}

.slide.full-width img {
    width: 100%;
}

/* Why Travel With FeelTourism */
.ft-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 2rem;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.ft-innerWrap {
    width: 100%;
    padding: 0 15px;
}

.ftheader {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 15px 0;
    text-align: center;
    width: 100%;
}

.ft-flex {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-between {
    justify-content: space-between;
}

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

.ftsection {
    margin-top: 20px;
}

.ftcard {
    padding: 15px;
    text-align: center;
    border-right: 1px solid #CED9E0;
    flex: 1 1 18%;
    min-width: 180px;
    margin: 10px 5px;
    box-sizing: border-box;
}

.ftcard:last-child {
    border-right: none;
}

.fttitle {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 10px 0;
}

.ftbody {
    font-size: 13px;
    color: #4d4d4d;
    line-height: 1.4;
    margin: 0;
}

.ftcard i {
    font-size: 40px;
    color: #2196f3;
    margin-bottom: 10px;
}

.ftcard:hover {
    background: #ecf5fe;
    border-radius: 10px;
    transition: background 0.3s ease;
}

@media (max-width: 1200px) {
    .ft-container {
        width: 95%;
        padding: 1rem;
    }

    .ft-innerWrap {
        padding: 0 10px;
    }

    .ftcard {
        flex: 1 1 45%;
        margin: 10px;
        border-right: none;
    }
}

@media (max-width: 768px) {
    .ft-container {
        width: 95%;
        padding: 1rem;
    }

    .ft-innerWrap {
        padding: 0 10px;
    }

    .ftheader {
        font-size: 22px;
    }

    .ftsection {
        display: flex !important;
        flex-wrap: wrap;
    }

    .ftcard {
        flex: 1 1 calc(50% - 10px) !important;
        margin: 5px;
        border-right: none;
        min-width: 0;
    }

    .fttitle {
        font-size: 14px;
    }

    .ftbody {
        font-size: 12px;
    }

    .ftcard i {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .ft-container {
        width: 98%;
        padding: 0.5rem;
    }

    .ftheader {
        font-size: 22px;
    }

    .ftcard {
        flex: 1 1 100%;
        margin: 5px 0;
    }

    .fttitle {
        font-size: 16px;
    }

    .ftbody {
        font-size: 12px;
    }

    .ftcard i {
        font-size: 36px;
    }
}

/* Copyright Notice */
.copyright-notice {
    font-size: 0.8rem;
    font-weight: 400;
    color: #1e3a8a;
    line-height: 1.4;
    margin: 0.5rem auto 0;
    padding: 0.3rem;
    border-top: 1px solid #b3c8ff;
}

@media (max-width: 768px) {
    .copyright-notice {
        font-size: 0.75rem;
        padding: 0.25rem;
        margin-top: 0.4rem;
    }
}

@media (max-width: 480px) {
    .copyright-notice {
        font-size: 0.7rem;
        line-height: 1.3;
        padding: 0.2rem;
        margin-top: 0.3rem;
    }
}

/* Remove blue color and underline for links in sliders */
.slider-box .slide a,
.slider-box .slide-info h3 a {
    color: #333333;
    text-decoration: none;
}

.slider-box .slide a:hover,
.slider-box .slide-info h3 a:hover {
    color: #555555;
    text-decoration: none;
}

/* Remove blue color and underline for links in hotel destinations */
.hotel-destinations .hotel-item a,
.hotel-destinations .hotel-details strong a {
    color: #333333;
    text-decoration: none;
}

.hotel-destinations .hotel-item a:hover,
.hotel-destinations .hotel-details strong a:hover {
    color: #555555;
    text-decoration: none;
}

/* Remove blue color and underline for links in cab routes */
.cab-routes-section .cab-route a,
.cab-routes-section .route-details strong a {
    color: #333333;
    text-decoration: none;
}

.cab-routes-section .cab-route a:hover,
.cab-routes-section .route-details strong a:hover {
    color: #555555;
    text-decoration: none;
}

/* Remove blue color and underline for links in flight routes */
.flight-routes-section .flight-route a,
.flight-routes-section .route-cities a {
    color: #333333;
    text-decoration: none;
}

.flight-routes-section .flight-route a:hover,
.flight-routes-section .route-cities a:hover {
    color: #555555;
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #323232;
    padding: 20px 5px;
    color: #fff;
    font-size: 14px;
    text-align: left;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    max-width: 300px;
    height: fit-content;
    overflow: hidden;
}

.footer-links {
    flex: 0 0 auto;
    max-width: 860px;
    height: fit-content;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.footer-links .tabs {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links .tab-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #3a3a3a;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 156px;
    margin-bottom: 5px;
}

.footer-logo p.logo-desc {
    margin: 0;
    font-size: 11px;
    color: #ccc;
    line-height: 1.4;
}

.footer-contact {
    margin-bottom: 15px;
}

.footer-contact p {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
}

.footer-contact p:not(.contact-email, .contact-phone) {
    color: #ccc;
    font-weight: normal;
}

.footer-contact p.for-hiring {
    margin-top: 15px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    display: inline-block;
}

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

.footer-social {
    margin-bottom: 15px;
}

.footer-social p {
    margin: 0;
    font-size: 11px;
    color: #ccc;
    font-weight: normal;
    line-height: 1.4;
}

.footer-social a.social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    margin-right: 10px;
    display: inline-block;
}

.footer-social a.social-icon:hover {
    color: #c0ecfe;
}

.footer-social a.social-icon i.fab {
    font-size: 16px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    text-align: left;
}

.copyright {
    color: #ccc;
    font-size: 11px;
    line-height: 1.4;
    margin: 0;
}

.footer-links .top-footer-container {
    display: block;
}

.footer-links .top-footer-title {
    font-weight: 400;
    color: #ccc;
    font-size: 11px;
    cursor: pointer;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: linear-gradient(145deg, #3a3a3a, #2e2e2e);
    transition: all 0.3s ease;
}

.footer-links .top-footer-title:hover {
    background: linear-gradient(145deg, #444, #383838);
    transform: translateX(5px);
}

.footer-links .top-footer-title.active {
    background: linear-gradient(145deg, #4a90e2, #357abd);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.top-footer-title i.fa {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-links .top-footer-title i.fa-chevron-right.active {
    transform: rotate(90deg);
}

.footer-links .links-container {
    display: none !important;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links .links-container.active {
    display: flex !important;
    opacity: 1;
}

.top-footer-container a,
.tab-content a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    margin: 0;
}

.top-footer-container a:hover,
.tab-content a:hover {
    color: #c0ecfe;
}

.footer-links .link-separator {
    color: #ccc;
    font-size: 11px;
}

.footer-links .tab-content .links-container {
    display: none !important;
}

.footer-links .tab-content .links-container.active {
    display: flex !important;
    opacity: 1;
}

@media (min-width: 769px) {
    .footer-links .top-footer-container .links-container,
    .footer-links .top-footer-container .links-container.active {
        display: none !important;
    }
}

.footer-article {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto 2rem auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: left;
}

.footer-article .footer-section {
    padding: 20px;
}

.footer-article .footer-section h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-article .footer-section p {
    line-height: 1.6;
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        max-width: 100%;
        padding: 10px;
    }

    .footer-content-area,
    .footer-links {
        max-width: 100%;
        height: auto;
    }

    .footer-links {
        display: block;
    }

    .footer-links .tabs {
        display: block;
    }

    .footer-links .tab-content {
        display: none;
    }

    .footer-links .top-footer-container {
        display: block;
        margin-bottom: 10px;
        border-bottom: 1px solid #555;
    }

    .footer-links .top-footer-title {
        background: none;
        border-radius: 0;
        padding: 10px 0;
    }

    .footer-links .top-footer-title:hover {
        background: none;
        transform: none;
    }

    .footer-links .top-footer-title.active {
        background: none;
        color: #c0ecfe;
        box-shadow: none;
    }

    .footer-links .top-footer-title i.fa-chevron-right {
        display: none;
    }

    .footer-links .links-container {
        display: block !important;
        max-height: 0;
        overflow: hidden;
        padding-left: 20px;
        transition: max-height 0.3s ease;
        opacity: 1;
    }

    .footer-links .links-container.active {
        max-height: 500px;
    }

    .footer-links .links-container a {
        display: block;
    }

    .footer-links .link-separator {
        display: inline-block;
    }

    .footer-logo,
    .footer-contact,
    .footer-social {
        margin-bottom: 12px;
    }

    .footer-logo img {
        max-width: 140px;
    }

    .footer-logo p.logo-desc {
        font-size: 10px;
    }

    .footer-contact p,
    .footer-social p {
        font-size: 10px;
    }

    .footer-contact p.for-hiring {
        margin-top: 10px;
    }

    .footer-contact .contact-email,
    .footer-contact .contact-phone {
        display: block;
    }

    .footer-contact a {
        font-size: 10px;
        margin-right: 8px;
    }

    .footer-contact a i.fa {
        font-size: 11px;
    }

    .footer-social a.social-icon {
        font-size: 10px;
        margin-right: 8px;
    }

    .footer-social a.social-icon i.fab {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 12px 10px;
    }

    .copyright {
        font-size: 10px;
    }

    .footer-links .top-footer-title {
        font-size: 10px;
    }

    .footer-links .links-container {
        padding-left: 15px;
    }

    .footer-article {
        width: calc(100% - 20px);
        margin: 20px 10px 2rem auto;
        padding: 15px;
    }

    .footer-article .footer-section {
        padding: 15px;
    }
}