/* 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: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
    background-color: #000000;
}

    #topbar.topbar-scrolled {
        top: -40px;
        /* Hide top bar when scrolled */
    }

    #topbar .contact-info i {
        font-style: normal;
        color: #f8f6f3;
    }

        #topbar .contact-info i span {
            padding-left: 5px;
            color: #fff;
        }

    #topbar .social-icons ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        color: #cda45e;
    }

        #topbar .social-icons ul a {
            color: white;
        }

            #topbar .social-icons ul a:hover {
                color: #dcd45e;
                /* Hover color for social links */
            }

        #topbar .social-icons ul li + li {
            padding-left: 10px;
        }

            #topbar .social-icons ul li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: rgba(255, 255, 255, 0.5);
                content: "";
            }

/*--------------------------------------------------------------
# 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 Overlay */
    .dark-mode #hero::before {
        background-color: rgba(3, 21, 31, 0.72);
        /* Dark overlay */
    }

    /* Light Mode Overlay */
    .light-mode #hero::before {
        background-color: rgba(255, 255, 255, 0.4);
        /* Light overlay */
    }

    /* Content on top of overlay */
    .dark-mode #hero .content,
    .light-mode #hero .content {
        position: relative;
        z-index: 2;
    }

/* Hero Container Inner Content */
#hero .container {
    text-align: center;
    z-index: 10;
    padding: 0 15px;
}

/* Main Heading */
#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

    #hero h1 span {
        color: #00bcd4;
        /* Default color for span */
    }

/* Dark Mode and Light Mode Styling for Main Heading */
.dark-mode #hero h1 span {
    color: #00bcd4;
}

.light-mode #hero h1 span {
    color: #063a52;
    /* Dark color for better visibility in light mode */
}

/* Subheading */
#hero h2 {
    font-size: 20px;
    margin-top: 10px;
}

/* 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;
    }

/* Background Lines and Animation */
.line-container {
    position: absolute;
    top: 65%;
    /* Centered more */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    pointer-events: none;
    z-index: 5;
    perspective: 1000px;
}

.line {
    position: relative;
    width: 2px;
    height: 150px;
    /* Reduced size */
    margin: 12px;
    /* Increased margin */
    animation: lineAnimation 10s infinite ease-in-out;
    transform-origin: center;
    box-shadow: 0 0 50px rgba(0, 188, 212, 0.7);
}

    /* Circle Styles for Line Ends */
    .line::before,
    .line::after {
        content: "";
        position: absolute;
        width: 15px;
        height: 15px;
        border-radius: 50%;
    }

/* Dark and Light Mode Styling for Lines */
.dark-mode .line {
    background-color: transparent;
    border: 2px solid #ffffff;
}

.light-mode .line {
    background-color: #051452a6;
    border: 2px solid #3a8fc7b5;
}

.dark-mode .line::before,
.dark-mode .line::after {
    background-color: #00bcd4;
}

.light-mode .line::before,
.light-mode .line::after {
    background-color: #0e6ba7;
}

/* Line Position */
.line::before {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.line::after {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Line Animation */
@keyframes lineAnimation {
    0% {
        height: 150px;
        width: 2px;
        transform: rotate(0deg);
    }

    25% {
        height: 250px;
        width: 3px;
        transform: rotate(90deg);
    }

    50% {
        height: 150px;
        width: 2px;
        transform: rotate(180deg);
    }

    75% {
        height: 250px;
        width: 3px;
        transform: rotate(270deg);
    }

    100% {
        height: 150px;
        width: 2px;
        transform: rotate(360deg);
    }
}

/* Line Animation Delays */
.line:nth-child(odd) {
    animation-duration: 12s;
}

.line:nth-child(even) {
    animation-duration: 14s;
    animation-delay: 2s;
}

@media (max-width: 1024px) {

    /* Hide lines on mobile */
    .line-container {
        display: none;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    /* Hero Text */
    #hero h1 {
        font-size: 32px;
    }

    #hero h2 {
        font-size: 18px;
    }

    /* Line Animation for Mobile */
    @keyframes lineAnimation {
        0% {
            height: 80px;
            width: 2px;
            transform: rotate(0deg);
        }

        25% {
            height: 180px;
            width: 3px;
            transform: rotate(90deg);
        }

        50% {
            height: 80px;
            width: 2px;
            transform: rotate(180deg);
        }

        75% {
            height: 180px;
            width: 3px;
            transform: rotate(270deg);
        }

        100% {
            height: 80px;
            width: 2px;
            transform: rotate(360deg);
        }
    }

 
    /* Adjust button spacing */
    #hero .btns {
        gap: 15px;
    }

    #hero .btn-menu,
    #hero .btn-book {
        padding: 13px 20px;
    }
}

@media (max-width: 480px) {

    /* Hero Text for Small Devices */
    #hero h1 {
        font-size: 26px;
    }

    #hero h2 {
        font-size: 16px;
    }

    /* Button Adjustments */
    #hero .btn-menu,
    #hero .btn-book {
        min-width: 160px;
        font-size: 12px;
        padding: 14px 13px;
    }
}

/*--------------------------------------------------------------
# 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-box {
    position: relative;
    padding: 40px;
    margin: 20px;
    border-radius: 10px;
    z-index: 2;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Light Mode */
.light-mode .service-box {
    box-shadow: 0 4px 15px rgb(155, 209, 245);
}

/* Dark Mode */
.dark-mode .service-box {
    box-shadow: 0 4px 15px rgb(165, 219, 226);
}

/* Hover Effect */
.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(58, 89, 147, 0.67);
}

/* Pseudo-elements for Corner Lines */
.service-box::before,
.service-box::after {
    content: "";
    position: absolute;
    transition: all 0.3s ease-in-out;
}

/* Top-left corner line (::before) */
.service-box::before {
    top: 0;
    left: 0;
    width: 25%;
    height: 30%;
    border-left: 5px solid #00bcd4;
    border-top: 5px solid #00bcd4;
    z-index: 3;
}

/* Bottom-right corner line (::after) */
.service-box::after {
    bottom: 0;
    right: 0;
    width: 25%;
    height: 30%;
    border-right: 5px solid #00bcd4;
    border-bottom: 5px solid #00bcd4;
    z-index: 3;
}

/* Hover Effect for ::before and ::after */
.service-box:hover::before,
.service-box:hover::after {
    width: 100%;
    /* Increased width */
    height: 100%;
    /* Increased height */
    box-shadow: 0px 0px 15px rgba(255, 165, 0, 0.5);
    /* Box shadow for the line */
}

/* Active State: Reduced box shadow */
.service-box:active {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

    /* Active State for ::before and ::after */
    .service-box:active::before,
    .service-box:active::after {
        box-shadow: 0px 0px 5px rgba(255, 165, 0, 0.3);
        transition: box-shadow 0.1s ease-out;
    }

/*--------------------------------------------------------------
# About Section Styling
--------------------------------------------------------------*/

/* About Section */
.about {
    padding: 80px 0;
}

    /* About Container */
    .about .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 auto;
    }

    /* About Content */
    .about .about-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 50px;
        /* Add gap between the content and image */
        width: 100%;
    }

/* About Text */
.about-text {
    flex: 1;
    max-width: 600px;
}

    .about-text h2 {
        font-size: 36px;
        font-weight: 700;
        color: #00bcd4;
        /* Light blue color for the heading */
        margin-bottom: 20px;
    }

    .about-text .highlight {
        color: #00bcd4;
        /* Highlight color */
        font-size: 24px;
        font-weight: 600;
        margin-top: 10px;
    }

    .about-text p {
        font-size: 18px;
        margin-top: 20px;
        line-height: 1.8;
    }

/* Feature Section */
.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

/* Feature Item */
.feature-item {
    background-color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

    /* Feature Header */
    .feature-item .feature-header {
        padding: 20px;
        display: flex;
        justify-content: left;
        align-items: center;
        cursor: pointer;
        color: #fff;
        font-weight: bold;
        background-color: #333;
        border-radius: 8px;
        transition: background-color 0.3s;
    }

        .feature-item .feature-header:hover {
            background-color: #00bcd4;
            /* Hover color for header */
        }

    .feature-item.active .feature-header {
        background-color: #01abc1;
        /* Blue for active item */
    }

.feature-header span {
    margin-left: 12px;
}

.feature-header .toggle-icon {
    margin-left: auto;
    /* Push the icon to the right */
    font-size: 20px;
}


/* Chevron Icon Rotation on Open */
.feature-item.active .feature-header .toggle-icon {
    transform: rotate(45deg);
    /* Rotate icon when active */
}

/* Feature Content */
.feature-item .feature-content {
    display: none;
    padding: 20px;
    background-color: #222;
    border-radius: 0 0 8px 8px;
}

.feature-item.active .feature-content {
    display: block;
}

.feature-item .feature-content p {
    margin: 0;
    color: #fff;
}

/* About Image Styling */
.about-image {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: float 8s ease-in-out infinite;
    /* Smooth oscillation animation */
    margin-top: 20px;
    /* Add margin to create gap between content and image */
}

    /* Image styling */
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.2s ease, box-shadow 0.3s ease;
        /* Faster hover transition */
        border-radius: 12px;
    }

        /* Hover Effect */
        .about-image img:hover {
            transform: scale(1.05);
            /* Slight zoom effect */
            box-shadow: 0 8px 25px rgba(0, 188, 212, 0.6);
            /* Box shadow for the hover effect */
        }

/* Continuous Smooth Oscillation Animation */
@keyframes float {
    0% {
        transform: perspective(800px) rotateY(0deg) rotateX(0deg);
        /* Start at neutral position */
    }

    25% {
        transform: perspective(800px) rotateY(15deg) rotateX(5deg);
        /* Slight rotation towards the left */
    }

    50% {
        transform: perspective(800px) rotateY(0deg) rotateX(0deg);
        /* Return to neutral */
    }

    75% {
        transform: perspective(800px) rotateY(-15deg) rotateX(5deg);
        /* Slight rotation towards the right */
    }

    100% {
        transform: perspective(800px) rotateY(0deg) rotateX(0deg);
        /* Return to neutral */
    }
}

@media (max-width: 992px) {
    .about {
        padding: 0px 10px;
    }
}

/* Layout adjustments for larger screens */
@media (min-width: 1024px) {
    .about-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 5px;
    }

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
        max-width: 600px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# 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: 60px 0;
}


    /* Tabs Styling */
    .faq .nav-tabs {
        border: none;
    }

    .faq .nav-link {
        padding: 15px 20px;
        font-size: 16px;
        color: #ffffff;
        font-weight: 600;
        background: #000000;
        border-radius: 10px;
        margin-bottom: 17px;
        transition: 0.3s ease;
        position: relative;
        border: 2px solid white;
        box-shadow: 4px 4px 6px rgb(255 255 255);
    }

/* Light Mode Styles for nav-link */
.light-mode .faq .nav-link {
    color: #ffffff;
    background-color: #000000;
    border: 2px solid #76c5d5;
    box-shadow: 4px 4px 6px rgb(0 0 0 / 75%);
    transition: all 0.3s ease;
}

    .light-mode .faq .nav-link:hover {
        background-color: #f5f0f0;
        color: #000;
        box-shadow: 4px 4px 6px rgb(88 153 231 / 19%);
    }

    .light-mode .faq .nav-link.active {
        background-color: #ffffff8c;
        color: #000000;
        box-shadow: 4px 4px 6px rgb(0 0 0 / 22%);
    }

/* Dark Mode Styles for nav-link */
.dark-mode .faq .nav-link.active {
    background-color: #ffffff8c;
    color: #000000;
    box-shadow: 4px 4px 6px rgb(255 255 255);
}

.faq .nav-link i {
    margin-right: 10px;
    font-size: 18px;
}

.faq .nav-link:hover {
    background-color: #292d2e;
    color: #fff;
    transform: translateY(5px);
    box-shadow: 0 2px 12px rgb(255 255 255 / 0%);
}

.faq .nav-link.active i {
    color: #000000;
}

/* Tab Content Styling */
.faq .tab-content {
    padding: 20px;
    border-radius: 10px;
    animation: slideIn 0.5s ease-out;
}

/* Light Mode - Tab Content */
.light-mode .faq .tab-content {
    background-color: #fcfbfb;
    color: #000000;
    box-shadow: 0 4px 10px rgb(13 69 101 / 80%);
}

/* Dark Mode - Tab Content */
.dark-mode .faq .tab-content {
    background: #28282852;
    color: #f5f5f5;
    box-shadow: 0px 0px 20px rgb(171 196 234);
}

.faq .details h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq .details p {
    font-size: 16px;
    line-height: 1.6;
}

/* Animation for sliding in content */
@keyframes slideIn {
    0% {
        transform: translateX(-10%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq .nav-link {
        padding: 12px 18px;
    }

    .faq .details h4 {
        font-size: 24px;
    }

    .faq .details p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .faq .nav-link {
        font-size: 14px;
    }

    .faq .details h4 {
        font-size: 20px;
    }

    .faq .details p {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# 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);
    }
}
