/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova&family=PT+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');

/* Global Body Styles */
body {
    font-family: "Open Sans", sans-serif;
    background: #0c0b09;
    /* Dark background */
    color: #fff;
    /* White text */
}

/* Headings - Serif fonts */
h1,
h2,
h3 {
    font-family: 'PT Serif', serif;
}

/* Subheadings and Paragraph - Sans-serif fonts */
h4,
h5,
h6,
p {
    font-family: 'Alegreya Sans SC', sans-serif;
}

/* Link Styles */
a {
    text-decoration: none;
    /* Remove underline */
}

/*--------------------------------------------------------------
# Back to Top Button Styles
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    /* Initially hidden */
    opacity: 0;
    /* Transparent initially */
    left: 20px;
    bottom: 12px;
    z-index: 996;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #1e1e1e;
    /* Dark button background */
    border: 2px solid #00bcd4;
    /* Cyan border */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

    /* Before/After elements for decoration (lines) */
    .back-to-top::before,
    .back-to-top::after {
        content: "";
        position: absolute;
        transition: all 0.3s ease;
        background: #00bcd4;
        /* Cyan decoration */
    }

    /* Horizontal line before */
    .back-to-top::before {
        top: 0;
        left: -100%;
        width: 100%;
        height: 3px;
    }

    /* Vertical line after */
    .back-to-top::after {
        top: -100%;
        left: 0;
        width: 3px;
        height: 100%;
    }

    /* Icon inside the button */
    .back-to-top i {
        font-size: 30px;
        color: #ffffff;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    /* Hover effect for button */
    .back-to-top:hover {
        background: #333;
        /* Darken background */
        border-color: #ff00a1;
        /* Change border color */
        transform: translateY(-5px);
        /* Slight upward movement */
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        /* Add shadow */
    }

        /* Hover effect for lines */
        .back-to-top:hover::before {
            left: 0;
        }

        .back-to-top:hover::after {
            top: 0;
        }

        /* Icon rotation and color change on hover */
        .back-to-top:hover i {
            color: #ff00a1;
            transform: rotate(45deg);
        }

    /* Active State for visibility */
    .back-to-top.active {
        visibility: visible;
        opacity: 1;
        animation: pulse 1.5s infinite;
        /* Pulsing animation */
    }

/* Pulsing animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/*--------------------------------------------------------------
# Mobile Responsiveness for Back to Top Button
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .back-to-top {
        width: 50px;
        /* Smaller button size */
        height: 50px;
    }

        .back-to-top i {
            font-size: 26px;
            /* Smaller icon */
        }
}

/*--------------------------------------------------------------
# Disable AOS animation delay on Mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
        /* Disable animation delay */
    }
}

/*--------------------------------------------------------------
# Top Bar - Styling and Transition Effects
--------------------------------------------------------------*/
#topbar {
    height: 50px;
    font-size: 14px;
    transition: all 0.5s ease-in-out;
    z-index: 996;
    background: linear-gradient(90deg, #1a1a1a 0%, #000000 100%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

    #topbar.topbar-scrolled {
        transform: translateY(-50px);
    }

    #topbar .contact-info i {
        font-style: normal;
        color: #f8f6f3;
        font-size: 16px;
        transition: color 0.3s ease;
    }

        #topbar .contact-info i:hover {
            color: #cda45e;
        }

        #topbar .contact-info i span {
            padding-left: 8px;
            color: #fff;
            font-size: 13px;
            font-weight: 500;
        }

    #topbar .social-icons ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #topbar .social-icons ul li {
            margin: 0 8px;
        }

        #topbar .social-icons ul a {
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

    #topbar .social-icons umbilical a:hover {
        color: #cda45e;
        background: rgba(205, 164, 94, 0.2);
        transform: scale(1.1);
    }

    #topbar .social-icons ul li + li::before {
        content: none;
    }
/*--------------------------------------------------------------
# Disable topbar on mobile devices
--------------------------------------------------------------*/
@media (max-width: 800px) {
    #topbar {
        display: none !important;
    }

    #header {
        top: 0px !important;
    }
}

/* General Header Styling */
#header {
    background: rgb(0 0 0);
    border-bottom: 1px solid rgba(12, 11, 9, 0%);
    transition: all 0.5s ease-in-out;
    z-index: 997;
    padding: 0px 0;
    top: 40px;
}

    #header.header-scrolled {
        top: 0;
        background: rgba(0, 0, 0, 0.9);
        border-bottom: 1px solid #2c2c2c;
    }

/* Light/Dark Mode Styles */
body.light-mode {
    background-color: #f4f4f4;
    color: #000000;
}

h1.light-mode,
h2.light-mode,
h3.light-mode,
p.light-mode {
    color: #000000;
}

body.dark-mode {
    background-color: #121212;
    color: #fff;
}

header.light-mode {
    background-color: #f4f4f4;
    color: #333;
}

header.dark-mode {
    background-color: #1d1d1d;
    color: #fff;
}

.navbar a.light-mode {
    color: #ffffff;
}

.navbar a.dark-mode {
    color: #fff;
}


/* Navbar Positioning */
.navbar {
    display: flex;
    width: 100%;
    justify-content: right;
    /* Align navbar links to the right */

    padding: 0;
    margin: 0;
    list-style: none;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    /* Navbar Links */
    .navbar a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        color: #ffffff;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        transition: 0.3s;
    }

        /* Navbar Link Hover Effects */
        .navbar a:hover,
        .navbar li:hover > a {
            background-color: transparent;
            color: #a0e7ff;
            transform: translateY(-4px);
        }

/* Theme Toggle (Sun/Moon Icons) */
.theme-toggle {
    display: flex;
    justify-content: right;
    padding: 15px 0px;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    margin-right: 13px;
    transition: color 0.3s ease;
    margin-left: 20px;
    /* Spacing between Contact link and the toggle */
}

    .theme-toggle:hover {
        color: #a0e7ff;
    }

/* Moon/Sun Icons */
.sun-icon,
.moon-icon {
    font-size: 24px;
}

/* Initially, hide the moon icon in light mode and sun icon in dark mode */
body.light-mode .sun-icon {
    display: block;
}

body.light-mode .moon-icon {
    display: none;
}

body.dark-mode .sun-icon {
    display: none;
}

body.dark-mode .moon-icon {
    display: block;
}

/* General Header Style */
#header {
    border-bottom: 1px solid rgba(12, 11, 9, 0);
    /* Soft border for separation */
    transition: all 0.5s ease-in-out;
    z-index: 1000;
    /* Keeps it above other elements */
    padding: 0;
    top: 40px;
    background: rgba(0, 0, 0, 0.9);
    /* Dark background */
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    height: 80px;
    /* Set header height */
}

    #header.header-scrolled {
        top: 0;
        border-bottom: 1px solid #2c2c2c;
    }

    /* Logo Styling */
    #header .logo {
        font-size: 28px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-family: 'PT Serif', serif;
    }

        #header .logo a {
            color: #fff;
            text-decoration: none;
        }

        #header .logo img {
            max-height: 40px;
        }

/* Navbar Styles */
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        transition: 0.3s;
    }

        /* Navbar Icon Styling */
        .navbar a i {
            font-size: 12px;
            line-height: 0;
            margin-left: 7px;
            transition: margin-left 0.3s ease;
        }

        /* Navbar Link Hover Effects */
        .navbar a:hover,
        .navbar li:hover > a {
            background-color: transparent;
            color: #a0e7ff;
            /* Cyan color on hover */
            transform: translateY(-4px);
            /* Slight lift on hover */
        }

    /* Navbar Active State */
    .navbar .active {
        background-color: transparent;
        color: #489bb7;
        /* Cyan for active items */
    }

    /* Navbar Icon Hover Effect */
    .navbar a:hover i {
        margin-left: 10px;
        /* Smooth icon transition */
    }

    /* Dropdown Menu */
    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 0;
        top: calc(100% + 10px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #333;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
        transition: 0.3s ease-in-out;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            color: #ddd;
            font-size: 14px;
            font-weight: 400;
        }

            /* Dropdown Link Hover */
            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul li:hover > a {
                color: #f2a900;
                /* Gold color for hover */
            }

    /* Display Dropdown on Hover */
    .navbar .dropdown:hover > ul {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

    /* Nested Dropdown */
    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    /* Initially hidden */
    line-height: 0;
    transition: 0.5s ease;
}

/* Show the hamburger menu on mobile */
@media (max-width: 991px) {
    .navbar {
        width: auto;
    }

    /* Mobile Navbar Toggle Button */
    .mobile-nav-toggle {
        display: block;
        /* Show on mobile */
    }

    /* Hide the main navbar on mobile */
    .navbar ul {
        display: none;
    }

    /* Show navbar when the toggle is clicked */
    .navbar.show {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: rgba(0, 0, 0, 0.95);
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        gap: 10px;
        padding: 20px;
    }

    .navbar a {
        font-size: 22px;
        padding: 12px 20px;
    }
}

/* Mobile Navbar Styles */
.navbar-mobile {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    transition: 0.3s ease-in-out;
    z-index: 999;
    overflow: hidden;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 30px;
        color: #fff;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #101010;
        border-radius: 6px;
        overflow-y: auto;
        transition: 0.3s ease-in-out;
    }

    .navbar-mobile a {
        padding: 25px 20px;
        border-bottom: 2px solid #2d2d2d;
        font-size: 15px;
        color: #ddd;
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s ease;
    }

        /* Mobile Navbar Link Hover */
        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #f2a900;
            /* Gold color on hover */
        }

    /* Mobile Dropdown */
    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #333;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
            font-size: 16px;
            font-weight: 400;
            color: #ddd;
        }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Hero Container */
#hero {
    background: url("../img/hero-bg.jpg") center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

/* Dark and Light Mode Overlays */
.dark-mode #hero,
.light-mode #hero {
    position: relative;
}

    .dark-mode #hero::before,
    .light-mode #hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .dark-mode #hero::before {
        background-color: rgba(3, 21, 31, 0.72);
    }

    .light-mode #hero::before {
        background-color: rgba(255, 255, 255, 0.4);
    }

/* Content on top of overlay */
#hero .content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 30px;
}

/* Main Heading */
#hero h1 {
    margin: 0;
    font-size: 58px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 1.8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

    #hero h1 span {
        display: block;
        font-size: 32px;
        font-weight: 700;
        color: #00bcd4;
        margin-top: 12px;
    }

.dark-mode #hero h1 {
    color: #fff;
}

.light-mode #hero h1 {
    color: #000000;
}

.dark-mode #hero h1 span {
    color: #00bcd4;
}

.light-mode #hero h1 span {
    color: #063a52;
}

/* Subheading */
#hero h2 {
    font-size: 20px;
    margin: 20px 0 0;
    color: #f8f6f3;
    font-weight: 600;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.light-mode #hero h2 {
    color: #222;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

/* Button Section */
/* Button Section */
#hero .btns {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    /* Space between buttons */
}

#hero .btn-menu,
#hero .btn-book {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 13px 30px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    min-width: 200px;
    text-align: center;
}

    /* Button Hover Effects */
    #hero .btn-menu:hover,
    #hero .btn-book:hover {
        transform: scale(1.05);
    }

/* Dark Mode Button Styling */
.dark-mode #hero .btn-menu,
.dark-mode #hero .btn-book {
    color: #00bcd4;
    border: 2px solid #00bcd4;
}

    .dark-mode #hero .btn-menu:hover,
    .dark-mode #hero .btn-book:hover {
        background: #00bcd4;
        color: #fff;
        border-color: #00bcd4;
    }

/* Light Mode Button Styling */
.light-mode #hero .btn-menu,
.light-mode #hero .btn-book {
    background: #063a52;
    color: #fff;
    border-color: #063a52;
}

    .light-mode #hero .btn-menu:hover,
    .light-mode #hero .btn-book:hover {
        background-color: transparent;
        color: #0b4963;
        border: 2px solid #083f65;
    }


/* Line Container */
.line-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    pointer-events: none;
    z-index: 2;
}

.line {
    position: relative;
    width: 3px;
    height: 120px;
    margin: 18px;
    animation: lineAnimation 5s infinite ease-in-out;
    transform-origin: bottom;
}

.dark-mode .line {
    background-color: #ffffff;
    border: 2px solid #ffffff;
}

.light-mode .line {
    background-color: #051452a6;
    border: 2px solid #2572a5b5;
}

.line::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.dark-mode .line::before {
    background-color: #00bcd4;
    box-shadow: 0 0 10px #00bcd4;
}

.light-mode .line::before,
.light-mode .line::after {
    background-color: #14537c;
}
/* Line Animation */
@keyframes lineAnimation {
    0% {
        height: 120px;
        opacity: 0.7;
    }

    50% {
        height: 180px;
        opacity: 1;
    }

    100% {
        height: 120px;
        opacity: 0.7;
    }
}

/* Line Animation Delays */
.line:nth-child(3n) {
    animation-duration: 4.5s;
}

.line:nth-child(3n+1) {
    animation-duration: 5.5s;
    animation-delay: 0.5s;
}

.line:nth-child(3n+2) {
    animation-duration: 6s;
    animation-delay: 1s;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .line-container {
        bottom: 0;
    }

    .line {
        height: 100px;
        margin: 14px;
    }

    @keyframes lineAnimation {
        0% {
            height: 100px;
            opacity: 0.7;
        }

        50% {
            height: 150px;
            opacity: 1;
        }

        100% {
            height: 100px;
            opacity: 0.7;
        }
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 40px;
    }

        #hero h1 span {
            font-size: 26px;
        }

    #hero h2 {
        font-size: 18px;
    }

    #hero .btns {
        flex-direction: column;
        gap: 20px;
    }

    #hero .btn-menu,
    #hero .btn-book {
        min-width: 200px;
        padding: 14px 40px;
    }

    .line {
        height: 80px;
        margin: 10px;
    }

    @keyframes lineAnimation {
        0% {
            height: 80px;
            opacity: 0.7;
        }

        50% {
            height: 120px;
            opacity: 1;
        }

        100% {
            height: 80px;
            opacity: 0.7;
        }
    }
}

@media (max-width: 580px) {


    .line-container {
        display: none;
    }
}



@media (max-width: 480px) {
    #hero h1 {
        font-size: 32px;
    }

        #hero h1 span {
            font-size: 22px;
        }

    #hero h2 {
        font-size: 16px;
    }

    #hero .btn-menu,
    #hero .btn-book {
        min-width: 180px;
        font-size: 14px;
        padding: 12px 30px;
    }

    .line-container {
        display: none;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

/* Section Title */
.section-title {
    padding-bottom: 40px;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: 'PT Serif', serif;
    }

    .section-title p {
        margin: 0;
        font-size: 36px;
        font-weight: 700;
        font-family: "Playfair Display", serif;
    }

/* Responsive for Section Title */
@media (max-width: 992px) {
    .section-title {
        margin-bottom: 30px;
    }

        .section-title h2 {
            font-size: 15px;
        }

        .section-title p {
            font-size: 26px;
        }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #1d1b16;
    margin-top: 110px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 98px;
    }
}

.breadcrumbs h2 {
    font-size: 26px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

    .breadcrumbs ol li + li {
        padding-left: 10px;
    }

        .breadcrumbs ol li + li::before {
            content: "/";
            padding-right: 10px;
            color: #37332a;
        }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*--------------------------------------------------------------
# Service Section
--------------------------------------------------------------*/

/* Main Service Box */
.service {
    padding: 60px 0;
    background: transparent;
}

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

    .section-title h2 {
        font-size: 36px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin: 0;
        color: #333;
    }

.dark-mode .section-title h2 {
    color: #fff;
}

.section-title p {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-top: 10px;
}

.dark-mode .section-title p {
    color: #ccc;
}

.service-box {
    position: relative;
    padding: 30px;
    margin: 20px;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    background: #fff;
    z-index: 2;
}

.dark-mode .service-box {
    background: #1a1a1a;
}

/* Light Mode */
.light-mode .service-box {
    box-shadow: 0 6px 20px rgba(155, 209, 245, 0.3);
}

/* Dark Mode */
.dark-mode .service-box {
    box-shadow: 0 6px 20px rgba(165, 219, 226, 0.3);
}

/* Hover Effect */
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.5);
}

/* Pseudo-elements for Gradient Borders */
.service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 3px;
    background: linear-gradient(45deg, #00bcd4, #0e6ba7);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

.service-box:hover::before {
    background: linear-gradient(45deg, #0e6ba7, #00bcd4);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.6);
}

/* Icon Styling */
.service-box .icon {
    font-size: 40px;
    color: #00bcd4;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.dark-mode .service-box .icon {
    color: #00bcd4;
}

.light-mode .service-box .icon {
    color: #0e6ba7;
}

.service-box:hover .icon {
    transform: scale(1.2);
}

/* Heading and Paragraph */
.service-box h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.dark-mode .service-box h4 {
    color: #fff;
}

.service-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.dark-mode .service-box p {
    color: #ccc;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-box {
        margin: 15px;
        padding: 25px;
    }

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

    .section-title p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .service-box {
        margin: 10px;
        padding: 20px;
    }

        .service-box h4 {
            font-size: 22px;
        }

        .service-box p {
            font-size: 15px;
        }

        .service-box .icon {
            font-size: 36px;
        }
}

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

    .section-title p {
        font-size: 14px;
    }

    .service-box {
        margin: 10px 5px;
        padding: 15px;
    }

        .service-box h4 {
            font-size: 20px;
        }

        .service-box p {
            font-size: 14px;
        }
}

/*--------------------------------------------------------------
# About Section Styling
--------------------------------------------------------------*/

/* About Section */
.about {
    padding: 80px 0;
    background: transparent;
}

    /* About Container */
    .about .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto;
        max-width: 1200px;
    }

    /* About Content */
    .about .about-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px;
        width: 100%;
    }

/* About Text */
.about-text {
    flex: 1;
    max-width: 550px;
    padding: 20px;
}

    .about-text h2 {
        font-size: 38px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-bottom: 15px;
    }

.dark-mode .about-text h2 {
    color: #00bcd4;
}

.light-mode .about-text h2 {
    color: #063a52;
}

.about-text .highlight {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0;
}

.dark-mode .about-text .highlight {
    color: #00bcd4;
}

.light-mode .about-text .highlight {
    color: #0e6ba7;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.dark-mode .about-text p {
    color: #ccc;
}

/* Feature Section */
.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

/* Feature Item */
.feature-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dark-mode .feature-item {
    background: #1a1a1a;
}

/* Feature Header */
.feature-item .feature-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dark-mode .feature-item .feature-header {
    background: #2a2a2a;
    color: #fff;
}

.light-mode .feature-item .feature-header {
    background: #f8f9fa;
    color: #333;
}

.feature-item .feature-header:hover {
    background: #00bcd4;
    color: #fff;
}

.feature-item.active .feature-header {
    background: #0e6ba7;
    color: #fff;
}

.feature-header i {
    font-size: 24px;
    color: #00bcd4;
}

.light-mode .feature-header i {
    color: #0e6ba7;
}

.dark-mode .feature-item .feature-header i {
    color: #fff;
}

.light-mode .feature-item .feature-header i {
    color: #000000;
}

.feature-header span {
    margin-left: 15px;
    font-size: 18px;
    font-weight: 600;
}

.feature-header .toggle-icon {
    margin-left: auto;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.feature-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Feature Content */
.feature-item .feature-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background: #f1f1f1;
    transition: all 0.3s ease-in-out;
}

.dark-mode .feature-item .feature-content {
    background: #222;
}

.feature-item.active .feature-content {
    max-height: 200px;
    padding: 20px 25px;
}

.feature-item .feature-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.dark-mode .feature-item .feature-content p {
    color: #ccc;
}

/* About Image Styling */
.about-image {
    flex: 1;
    max-width: 550px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        transition: transform 0.3s ease;
    }

    .about-image:hover img {
        transform: scale(1.08);
        box-shadow: 0 8px 25px rgba(0, 188, 212, 0.5);
    }

/* Float Animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about {
        padding: 60px 15px;
    }

    .about-text {
        max-width: 100%;
    }

    .about-image {
        max-width: 100%;
        margin-top: 30px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-text .highlight {
        font-size: 20px;
    }

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

    .feature-header span {
        font-size: 16px;
    }

    .feature-item .feature-content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .about-text h2 {
        font-size: 28px;
    }

    .about-text .highlight {
        font-size: 18px;
    }

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

    .about-image {
        height: 250px;
    }

    .feature-header i {
        font-size: 20px;
    }

    .feature-header .toggle-icon {
        font-size: 18px97
    }
}

/*--------------------------------------------------------------
# Portfolio-Menu Section
--------------------------------------------------------------*/

/* Portfolio Section */
#portfolio {
    padding: 40px 0px 0px 0px;
}


    /* Filter Buttons */
    #portfolio #menu-flters {
        padding: 0;
        list-style: none;
        text-align: center;
        margin-bottom: 40px;
    }

        #portfolio #menu-flters li {
            cursor: pointer;
            display: inline-block;
            padding: 12px 30px;
            font-size: 18px;
            font-weight: 700;
            margin: 5px 10px;
            border-radius: 50px;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

/* Light Mode */
.light-mode #portfolio #menu-flters li {
    color: #000;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
    border-color: black;
    box-shadow: 4px 4px 6px rgb(23 21 21 / 59%);
}

    .light-mode #portfolio #menu-flters li:hover,
    .light-mode #portfolio #menu-flters li.filter-active {
        background-color: #098c9d;
        color: white;
        border: 2px solid #08a0b4;
    }


/* Dark Mode */
.dark-mode #portfolio #menu-flters li {
    background-color: #000000;
    box-shadow: 4px 4px 6px rgb(255 255 255);
    color: #ffffff;
    border: 2px solid #ffffff;
}

    .dark-mode #portfolio #menu-flters li.filter-active {
        background-color: #ffffff8c;
        color: #000000;
        border: 1px solid #ffffff;
        box-shadow: 4px 4px 6px rgb(255 255 255);
    }

.menu-container {
    margin: 40px 6px;
}

/* Portfolio Items */
.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.project {
    background: #3d3d3d82;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgb(255 255 255 / 74%);
    transition: all 0.3s ease;
    transform: scale(0.98);
    padding: 0px;
}

    /* Hover Effect for Project */
    .project:hover {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        transform: scale(1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }

    .project:hover img {
        transform: scale(1.1);
    }

    /* Pseudo-elements for Corner Lines */
    .project::before,
    .project::after {
        content: "";
        position: absolute;
        transition: all 0.3s ease-in-out;
    }

    .project::before {
        top: 0px;
        left: 0px;
        width: 25%;
        height: 25%;
        border-left: 5px solid #00bcd4;
        border-top: 5px solid #00bcd4;
        z-index: 3;
    }

    .project::after {
        bottom: 0px;
        right: 0px;
        width: 25%;
        height: 25%;
        border-right: 5px solid #00bcd4;
        border-bottom: 5px solid #00bcd4;
        z-index: 3;
    }

    /* Hover Effect for Corner Lines */
    .project:hover::before {
        width: 100%;
        height: 50%;
    }

    .project:hover::after {
        width: 100%;
        height: 50%;
    }

/* Project Info */
.project-info {
    position: absolute;
    bottom: 8%;
    left: 15px;
    right: 15px;
    padding: 10px 10px;
    background: rgb(0 0 0 / 78%);
    color: #fff;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    border-radius: 10%;
    border-left: 5px solid #00bcd447;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}

    .project-info:hover {
        box-shadow: 0 4px 15px rgba(0, 188, 212, 0.5);
    }

.project:hover .project-info {
    opacity: 1;
    transform: translateY(0);
}

.project-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.project-info span {
    font-size: 15px;
    font-style: italic;
    display: block;
    margin-bottom: 6px;
}

.project-info p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 4px;
}

.project-info a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .project-info a:hover {
        color: #ffcc00;
        transform: scale(1.05);
    }

/* Button Hover Effects */
#portfolio #menu-flters li {
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

    #portfolio #menu-flters li:hover {
        background: #046e7b;
        transform: translateY(5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

/* Hover Effect for Project Info */
.project:hover .project-info h4 {
    color: #d7d7d5;
    transition: color 0.3s ease;
}

.project:hover .project-info p {
    color: #fff;
    transition: color 0.3s ease;
}

/* Background animation for description */
.project-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(45deg, #1f2121c2, #030303c2);
    z-index: -1;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.project:hover .project-info::after {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 992px) {

    .project-info h4 {
        font-size: 17px;
    }

    .project-info span {
        font-size: 14px;
    }

    .project-info p {
        font-size: 15px;
    }

    #portfolio .portfolio-container {
        justify-content: space-between;
    }

    #portfolio #menu-flters li {
        padding: 10px 25px;
        font-size: 16px;
        margin: 10px 10px;
    }

    .menu-container {
        margin: 15px 6px;
    }
}

@media (max-width: 768px) {
    #portfolio .portfolio-container {
        flex-direction: column;
    }

    #portfolio #menu-flters {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

        #portfolio #menu-flters li {
            padding: 10px 25px;
            font-size: 16px;
            margin: 12px 10px;
        }
}

/* Custom Button Styles */
.custom-btn {
    font-size: 18px;
    padding: 13px 46px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    /* Button 1 - Gradient + Hover Animation */
    .custom-btn.btn-1 {
        color: #ffffff;
        background: #000000;
        border-radius: 10px;
        transition: 0.3s ease;
        border: 2px solid white;
        box-shadow: 4px 4px 6px rgb(255 255 255);
    }

        .custom-btn.btn-1:hover {
            background-color: #292d2e;
            color: #fff;
            transform: translateY(5px);
            box-shadow: 0 2px 12px rgb(255 255 255 / 0%);
        }

        .custom-btn.btn-1::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .custom-btn.btn-1:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

/*--------------------------------------------------------------
# FAQ Section Styling
--------------------------------------------------------------*/
.faq {
    padding: 80px 0;
    background: transparent;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 36px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #333;
    }

.dark-mode .section-title h2 {
    color: #fff;
}

.section-title p {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-top: 10px;
}

.dark-mode .section-title p {
    color: #ccc;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-entry {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dark-mode .faq-entry {
    background: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* FAQ Question */
.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.light-mode .faq-question {
    background: #f8f9fa;
}

.dark-mode .faq-question {
    background: #2a2a2a;
}

.faq-question:hover {
    background: #00bcd4;
}

.dark-mode .faq-question:hover {
    background: #0e6ba7;
}

.faq-entry.active .faq-question {
    background: #00bcd4;
}

.dark-mode .faq-entry.active .faq-question {
    background: #0e6ba7;
}

.faq-question i {
    font-size: 24px;
    color: #00bcd4;
    margin-right: 15px;
}

.light-mode .faq-question i {
    color: #0e3a52;
}

.faq-entry.active .faq-question i {
    color: #fff;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
    color: #333;
}

.dark-mode .faq-question h4 {
    color: #fff;
}

.faq-entry.active .faq-question h4 {
    color: #fff;
}

.faq-question .toggle-icon {
    font-size: 22px;
    color: #00bcd4;
    transition: transform 0.3s ease;
}

.light-mode .faq-question .toggle-icon {
    color: #0e6ba7;
}

.faq-entry.active .toggle-icon {
    transform: rotate(45deg);
    color: #fff;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background: #f1f1f1;
    transition: all 0.3s ease-in-out;
}

.dark-mode .faq-answer {
    background: #222;
}

.faq-entry.active .faq-answer {
    max-height: 200px;
    padding: 20px 25px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 10px;
}

.dark-mode .faq-answer p {
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq {
        padding: 60px 15px;
    }

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

    .section-title p {
        font-size: 16px;
    }

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

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

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .faq-question i {
        font-size: 20px;
    }

    .faq-question .toggle-icon {
        font-size: 18px;
    }

    .faq-answer {
        max-height: 0;
    }

    .faq-entry.active .faq-answer {
        max-height: 300px;
    }
}

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

    .section-title p {
        font-size: 14px;
    }

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

        .faq-question h4 {
            font-size: 15px;
        }

        .faq-question i {
            font-size: 18px;
        }

    .faq-answer p {
        font-size: 13px;
    }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 30px 0;
    margin: 30px 0;
}

    /* Testimonial Item (Image) Style */
    .testimonials .testimonial-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: opacity 0.3s ease, transform 0.3s ease;
        cursor: pointer;
    }

    /* Testimonial Image (Circle) */
    .testimonials .testimonial-img {
        box-shadow: 1px 1px 15px rgb(255 255 255);
        border-left: 2px solid #00bcd4;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
        opacity: 0.6;
        margin: 0 15px;
    }

        /* Active Testimonial Image (with box-shadow and opacity change) */
        .testimonials .testimonial-img.active {
            opacity: 1;
            transform: scale(1.3);
        }

/* Light Mode */
.light-mode .testimonials .testimonial-img.active {
    border-left: 3px solid #00bcd4;
    border-right: 3px solid #d55858;
    box-shadow: 0 0 15px 5px rgb(47 77 104);
}

/* Dark Mode */
.dark-mode .testimonials .testimonial-img.active {
    border-left: 3px solid #00bcd4;
    border-right: 3px solid #d55858;
    box-shadow: 0 0 15px 5px rgb(255 255 255);
}

/* Slight zoom effect on hover */
.testimonials .testimonial-item:hover .testimonial-img {
    transform: scale(1.1);
    opacity: 1;
}

/* Tilt animation on hover */
.testimonials .testimonial-item:hover .testimonial-img {
    animation: tilt 0.3s ease-in-out;
}

/* Tilt animation keyframes */
@keyframes tilt {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }

    50% {
        transform: rotateY(10deg) rotateX(10deg);
    }

    100% {
        transform: rotateY(0deg) rotateX(0deg);
    }
}

/* Testimonial Info (Text) */
.testimonials .testimonial-info {
    padding: 15px;
    border-radius: 15px;
    font-size: 22px;
    text-align: center;
    width: 50%;
    margin: 60px auto;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-family: 'Alegreya Sans SC', sans-serif;
}

/* Light Mode */
.light-mode .testimonials .testimonial-info {
    background-color: #ffffff00;
    color: #211e1e;
    border-left: 3px solid #00bcd4;
    border-right: 3px solid #00bcd4;
}

    .light-mode .testimonials .testimonial-info h3 {
        color: #434343;
    }

/* Dark Mode */
.dark-mode .testimonials .testimonial-info {
    background-color: #00bcd400;
    color: #d5d0d0;
    border-left: 3px solid #00bcd4;
    border-right: 3px solid #00bcd4;
}

    .dark-mode .testimonials .testimonial-info h3 {
        color: #bfbebe;
    }

/* Show testimonial info when image is active */
.testimonials .testimonial-item.active .testimonial-info {
    opacity: 1;
}

/* Testimonial Info Text Style */
.testimonials .testimonial-info p {
    margin: 0;
    color: #ffffff;
}

.testimonials .testimonial-info h3 {
    font-weight: bold;
}

/* Row of images (testimonials) */
.testimonials-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 90px 0;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .testimonials .testimonial-item {
        width: 25%;
        margin-bottom: 30px;
    }

    .testimonials .testimonial-img {
        width: 70px;
        height: 70px;
    }

    .testimonials .testimonial-info {
        width: 80%;
    }

    .testimonials {
        padding: 0px 0;
        margin-top: 0px;
        margin-bottom: 40px;
    }

    .testimonials-row {
        justify-content: space-between;
        gap: 0px;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .testimonials .testimonial-info {
        width: 90%;
        font-size: 20px;
    }

    .testimonials-row {
        gap: 0px;
    }

    .testimonials .testimonial-img {
        width: 60px;
        height: 60px;
    }
}

/*--------------------------------------------------------------
# Team Section Styling
--------------------------------------------------------------*/
.team .member-card {
    position: relative;
    width: auto;
    min-height: 100px;
    border-radius: 12px;
    /* Rounded corners */
    box-shadow: 0 6px 15px rgba(212, 202, 202, 0.76);
    /* Stronger shadow */
    overflow: hidden;
    cursor: pointer;
    margin: 40px 20px;
    /* Space between cards */
    transition: transform 0.3s ease-in-out;
}

.team-container {
    margin: 50px 0;
}

/* Hover effect for lift */
.team .member-card:hover {
    transform: translateY(-10px);
    /* Lift effect on hover */
}

/* Front and Back of the Card Styling */
.team .member-card .front,
.team .member-card .back {
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-left: 2px solid #01abc1;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

/* Front Image and Name */
.team .member-card .front {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    position: relative;
}

    .team .member-card .front img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .team .member-card .front h4 {
        font-size: 20px;
        font-weight: 700;
        padding-top: 15px;
        border-radius: 8px;
        width: 100%;
    }

/* Back Info Styling */
.team .member-card .back {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotateY(180deg);
    padding: 10px;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

    /* Add Background Icon or Image behind the image */
    .team .member-card .back::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        opacity: 0.1;
        /* Set opacity for subtle background */
        z-index: -1;
        /* Ensure it's behind the content */
    }

/* Hover effect for flip */
.team .member-card:hover .front {
    transform: rotateY(180deg);
}

.team .member-card:hover .back {
    transform: rotateY(0);
}

/* Member Info */
.team .member-card .back p.quote {
    font-size: 19px;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.team .member-card .back span.profession {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 20px;
}

/* Social Icons */
.team .member-card .social {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .team .member-card .social a {
        margin: 0 12px;
        /* Increased spacing between icons */
        font-size: 22px;
        /* Larger icons */
        transition: color 0.3s ease, transform 0.3s ease;
    }

/* Light Mode - Social Links */
.light-mode .team .member-card .social a {
    color: #333;
    /* Dark color for light theme */
}

    .light-mode .team .member-card .social a:hover {
        color: #3fabd6;
        /* Light blue color on hover */
    }

/* Dark Mode - Social Links */
.dark-mode .team .member-card .social a {
    color: #fff;
    /* Light color for dark theme */
}

    .dark-mode .team .member-card .social a:hover {
        color: #3fabd6;
        /* Gold color on hover */
    }

/* Twitter Icon Styling - Updated to new icon */
.team .member-card .social a.bi-twitter {
    font-size: 24px;
    /* Larger Twitter icon */
}

    .team .member-card .social a.bi-twitter:hover {
        transform: scale(1.1);
        /* Slight scale on hover */
    }

/* Responsive Design */
@media (max-width: 1050px) {
    .team .member-card {
        margin: 14px 0px;
    }


        /* Hover effect for lift */
        .team .member-card:hover {
            transform: translateY(0px);
            /* Lift effect on hover */
        }
}

/* Responsive Design */
@media (max-width: 768px) {


    .team .member-card .front img {
        object-fit: contain;
    }

    .team .member-card .back p.quote {
        font-size: 21px;
        /* Adjust quote font size */
    }
}

/*--------------------------------------------------------------
# Contact Section Styling
--------------------------------------------------------------*/

/* Default .contact styles */
.contact {
    background: url("../img/contact_bg.jpg") center center no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    padding: 60px;
}

/* Dark Mode - Contact Section */
.dark-mode .contact {
    position: relative;
}

    .dark-mode .contact::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(3 21 31 / 72%);
        /* Dark overlay */
        z-index: 0;
    }

    .dark-mode .contact .info,
    .dark-mode .contact .php-email-form {
        z-index: 2;
        /* Ensure content is above the overlay */
    }

/* Light Mode - Contact Section */
.light-mode .contact {
    position: relative;
}

    .light-mode .contact::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(255 255 255 / 40%);
        /* Light overlay with 40% opacity */
        z-index: 0;
    }

    .light-mode .contact .info,
    .light-mode .contact .php-email-form {
        z-index: 2;
        /* Ensure content is above the overlay */
    }

/* Contact Info Styling */
.contact .info {
    width: 100%;
}

    .contact .info i {
        font-size: 20px;
        float: left;
        width: 44px;
        height: 44px;
        background: #cda45e;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding-left: 60px;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 5px;
        font-family: "Poppins", sans-serif;
    }

    .contact .info p {
        padding-left: 60px;
        margin-bottom: 0;
        font-size: 14px;
        color: #bab3a6;
    }

    .contact .info .open-hours,
    .contact .info .email,
    .contact .info .phone {
        margin-top: 40px;
    }

/* Contact Form Styling */
.contact .php-email-form {
    width: 100%;
    margin-top: 0px;
}

    .contact .php-email-form .form-group {
        padding-bottom: 12px;
    }

    /* Input and Textarea Styling */
    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 10px;
        box-shadow: none;
        font-size: 14px;
        transition: all 0.3s ease;
    }

        .contact .php-email-form input::-webkit-input-placeholder,
        .contact .php-email-form textarea::-webkit-input-placeholder {
            color: #81dfea;
        }

        .contact .php-email-form input::placeholder,
        .contact .php-email-form textarea::placeholder {
            color: #81dfea;
        }

/* Light Mode Input/Textarea */
.light-mode .contact .php-email-form input,
.light-mode .contact .php-email-form textarea {
    background-color: #fcfcfc;
    color: #000;
    border-right: 5px solid #001a5800;
    border-bottom: 5px solid #001a5800;
    box-shadow: 0 0 5px rgb(0 0 0 / 48%);
}

    .light-mode .contact .php-email-form input:focus,
    .light-mode .contact .php-email-form textarea:focus {
        border-color: #72727200;
        box-shadow: 0 0 5px rgba(160, 231, 255, 0.5);
    }

    .light-mode .contact .php-email-form input::-webkit-input-placeholder,
    .light-mode .contact .php-email-form textarea::-webkit-input-placeholder {
        color: #535555;
    }

/* Dark Mode Input/Textarea */
.dark-mode .contact .php-email-form input,
.dark-mode .contact .php-email-form textarea {
    background: #0c0b09;
    border: 3px inset #0b6975;
    color: white;
}

    .dark-mode .contact .php-email-form input:focus,
    .dark-mode .contact .php-email-form textarea:focus {
        border-color: #a0e7ff;
        box-shadow: 0 0 5px rgba(160, 231, 255, 0.5);
    }

    .dark-mode .contact .php-email-form input::-webkit-input-placeholder,
    .dark-mode .contact .php-email-form textarea::-webkit-input-placeholder {
        color: #b1b1b1;
    }

/* Input Field Sizes */
.contact .php-email-form input {
    height: 55px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

/* Submit Button Styling */
.contact .php-email-form button[type="submit"] {
    border: 0;
    padding: 13px 35px;
    width: 100%;
    border-radius: 10px;
    transition: 0.4s;
}

/* Light Mode Submit Button */
.light-mode .contact .php-email-form button[type="submit"] {
    background-color: #000000;
    color: #fff;
}

    .light-mode .contact .php-email-form button[type="submit"]:hover {
        border: 2px solid black;
        color: black;
        background-color: #ffffff;
    }

/* Dark Mode Submit Button */
.dark-mode .contact .php-email-form button[type="submit"] {
    background: #01abc1;
    color: #fffdfd;
    font-weight: 600;
}

    .dark-mode .contact .php-email-form button[type="submit"]:hover {
        background: #000000;
        color: #ffffff;
        border: 2px solid #367e8d;
    }

/* Hover Effect for Submit Button */
.contact .php-email-form button[type="submit"]:hover {
    cursor: pointer;
}

/* Button Area Styling */
form .button-area {
    margin: 25px 0;
    display: flex;
    align-items: center;
}

    form .button-area button {
        margin-top: 1.5rem;
    }

.button-area span {
    font-size: 17px;
    text-align: center;
    margin: auto;
    display: none;
}

/* Responsive Design */
@media (max-width: 600px) {
    .contact {
        padding: 30px 10px;
    }

    form .button-area {
        margin-top: 20px;
        flex-direction: column;
    }

    .button-area button {
        width: 100%;
        padding: 11px 0;
        font-size: 16px;
    }

    .button-area span {
        margin: 20px 0 0;
        text-align: center;
    }
}

/* Loading Animation */
@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Modern Footer Design with Unique Animations
--------------------------------------------------------------*/

/* Footer Styling */
#footer {
    background: #101010;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 40px 20px;
    text-align: center;
}

/* Footer Logo and Tagline */
.footer-logo-container {
    margin-bottom: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 10px;
    max-height: 250px;
    animation: float 4s ease-in-out infinite;
    /* Float animation */
}

    .footer-logo img {
        max-width: 300px;
        /* Adjust logo size */
        transition: transform 0.3s ease;
    }

/* Company Name under the Logo */
.footer-company-name h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-top: 20px;
}

/* Social Media Icons Section */
.footer-socials {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 10px;
    background-color: #333;
    color: #bbb;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 4px 4px 6px rgb(255 255 255);
}

    /* Social Icon hover animation */
    .social-icon:hover {
        transform: translateY(5px);
        background-color: #00bcd4;
        /* Brand color */
        color: #fff;
        box-shadow: 0 0 25px rgba(0, 188, 212, 0.8);
        border-color: #00bcd4;
    }

    /* Glowing border effect on hover */
    .social-icon:before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(0, 188, 212, 0.8));
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        border-radius: 15px;
    }

    .social-icon:hover:before {
        opacity: 1;
    }

    /* Unique hover effects for each social media icon */
    .social-icon.twitter:hover {
        background-color: #1da1f2;
    }

    .social-icon.facebook:hover {
        background-color: #1877f2;
    }

    .social-icon.instagram:hover {
        background-color: #e1306c;
    }

    .social-icon.linkedin:hover {
        background-color: #0077b5;
    }

    /* Icon Font Size and Hover Animation */
    .social-icon i {
        font-size: 30px;
        transition: transform 0.2s ease-in-out;
    }

    .social-icon:hover i {
        transform: scale(1.2);
    }

/* Copyright Section */
.copyright {
    margin-top: 30px;
    font-size: 14px;
    color: #bbb;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .footer-logo-container {
        margin-bottom: 15px;
    }

    .footer-tagline {
        font-size: 16px;
    }

    .footer-socials {
        gap: 20px;
    }

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

        .social-icon i {
            font-size: 25px;
        }

    .footer-company-name h1 {
        font-size: 28px;
    }
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: perspective(800px) rotateY(0deg) rotateX(0deg);
    }

    25% {
        transform: perspective(800px) rotateY(15deg) rotateX(5deg);
    }

    50% {
        transform: perspective(800px) rotateY(0deg) rotateX(0deg);
    }

    75% {
        transform: perspective(800px) rotateY(-15deg) rotateX(5deg);
    }

    100% {
        transform: perspective(800px) rotateY(0deg) rotateX(0deg);
    }
}
