/* --- Base Styles & Variables --- */
:root {
    --primary-orange: #FF6600;
    --primary-orange-glow: rgba(255, 102, 0, 0.7);
    --dark-background: #0a0a0a;
    --section-bg-dark: #121212;
    --glass-bg: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(255, 102, 0, 0.2);
    --off-white-text: #EAEAEA;
    --grey-text: #AAAAAA;
    --black-base: #000000;
    --heading-font: 'Exo 2', sans-serif;
    --body-font: 'Exo 2', sans-serif;
    --header-height: 70px;
    --transition-speed: 0.5s;
    /* Glitch variables */
    --glitch-color1: #ff00ff; /* Magenta */
    --glitch-color2: #00ffff; /* Cyan */
}

/* --- Base Body & HTML (Includes transition) --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body-font);
    background-color: var(--dark-background);
    color: var(--off-white-text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    padding-top: var(--header-height);
}

/* Add this class on load via JS */
body.fade-in-on-load {
    opacity: 0; /* Start fully transparent for fade-in */
    animation: pageFadeIn var(--transition-speed) ease-out forwards; /* Apply fade-in animation on load */
}

 /* Class added by JS before navigating away */
 body.page-fade-out {
    opacity: 1; /* Start at full opacity */
    animation: pageFadeOut var(--transition-speed) ease-in forwards; /* Apply fade-out animation */
 }

 /* --- Page Transition Keyframes --- */
 @keyframes pageFadeIn {
     from { opacity: 0; transform: translateY(10px); }
     to { opacity: 1; transform: translateY(0); }
 }
 @keyframes pageFadeOut {
     from { opacity: 1; transform: translateY(0); }
     to { opacity: 0; transform: translateY(-10px); }
 }


/* --- Particle Background --- */
#particles-js {
     position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: -1; background-color: var(--dark-background);
}

/* --- Header & Navigation --- */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

header.main-header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header.main-header nav ul li {
    margin-left: 20px;
}

header.main-header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

header.main-header nav ul li a:hover,
header.main-header nav ul li a.active {
    color: #FF6600;
}

/* Mobile navigation is now handled with inline styles in navbar.html */

/* --- Utilities, Glassmorphism, Buttons, Hero, Shape Divider, Sections --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
section { padding: 80px 0; position: relative; overflow: hidden; }
.section-title { text-align: center; font-family: var(--heading-font); font-size: 2.8em; color: var(--primary-orange); margin-bottom: 50px; font-weight: 700; }
.glass-effect { background: var(--glass-bg); backdrop-filter: blur(10px) saturate(120%); -webkit-backdrop-filter: blur(10px) saturate(120%); border-radius: 15px; border: 1px solid var(--glass-border); padding: 40px; box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); }
.button { display: inline-block; border: 2px solid transparent; border-radius: 50px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-align: center; letter-spacing: 0.5px; }
.button-lg { padding: 18px 45px; font-size: 1.2em; }
.button-md { padding: 14px 35px; font-size: 1.1em; }
.button-sm { padding: 10px 25px; font-size: 1em; }
.button-primary { background: linear-gradient(135deg, var(--primary-orange), #E65100); color: var(--off-white-text); /* box-shadow: 0 5px 20px var(--primary-orange-glow); */ }
.no-shadow {
    box-shadow: none !important;
    text-shadow: none !important;
}
.button-primary:hover, .button-primary:focus { transform: translateY(-5px) scale(1.05); background: linear-gradient(135deg, #FF8533, var(--primary-orange)); outline: none; }
.button-secondary { background-color: transparent; color: var(--primary-orange); border-color: var(--primary-orange); }
.button-secondary:hover, .button-secondary:focus { background-color: rgba(255, 102, 0, 0.15); color: #FF8533; border-color: #FF8533; transform: translateY(-3px) scale(1.03); box-shadow: 0 0 15px rgba(255, 102, 0, 0.3); outline: none; }
#hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 40px 0 100px;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
#hero h1 { font-family: var(--heading-font); font-weight: 700; font-size: 3.5em; margin-bottom: 20px; letter-spacing: 1.5px; color: var(--off-white-text); }
#hero h1 span { color: var(--primary-orange); }
#hero p.subtitle { color: var(--grey-text); font-size: 1.3em; margin-bottom: 45px; max-width: 700px; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; }
.shape-divider { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: rotate(180deg); z-index: 0; }
.shape-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 80px; }
.shape-divider .shape-fill { fill: var(--section-bg-dark); }
 #about, #services, #why-us { background-color: var(--section-bg-dark); padding-top: 100px; }
 #services, .testimonial-cta { background-color: var(--dark-background); }
 #hero .shape-divider .shape-fill { fill: var(--section-bg-dark); }

 /* Specific Section Styles (About, Services, Why-Us) */
 #about .container > p { max-width: 800px; margin: 0 auto 30px auto; color: var(--grey-text); font-size: 1.1em; text-align: center; }
 .about-highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; text-align: center; }
 .highlight-item { background: var(--glass-bg); backdrop-filter: blur(8px) saturate(110%); -webkit-backdrop-filter: blur(8px) saturate(110%); border-radius: 10px; border: 1px solid var(--glass-border); padding: 30px 20px 50px; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; align-items: center; }
 .highlight-item h3 { color: var(--primary-orange); margin-bottom: 10px; font-family: var(--heading-font); font-size: 1.4em; }
 .highlight-item p { font-size: 0.95em; color: var(--grey-text); }
 .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; }
 .service-item { background: var(--glass-bg); backdrop-filter: blur(8px) saturate(110%); -webkit-backdrop-filter: blur(8px) saturate(110%); border-radius: 10px; border: 1px solid var(--glass-border); padding: 40px 30px 60px; transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; display: flex; flex-direction: column; text-align: center; border-left: 3px solid var(--primary-orange); }
 .service-item h3 { color: var(--primary-orange); margin-bottom: 15px; font-family: var(--heading-font); font-size: 1.6em; }
 .service-item p { color: var(--grey-text); font-size: 1em; flex-grow: 1; }
 .reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 20px; text-align: left; }
 .reason-item { background: rgba(10, 10, 10, 0.4); padding: 25px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.05); border-left: 5px solid var(--primary-orange); transition: background-color 0.3s ease, border-left-color 0.3s ease; }
 .reason-item:hover { background: rgba(30, 30, 30, 0.6); border-left-color: #FF8533; }
 .reason-item span { display: block; font-weight: bold; color: var(--primary-orange); font-size: 0.9em; margin-bottom: 5px; }
 .reason-item p { color: var(--grey-text); margin: 0; font-size: 1em; }

/* --- Testimonial CTA Section --- */
.testimonial-cta { padding: 60px 0; text-align: center; background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.8)), url('background-dark.jpg') no-repeat center center/cover; }

/* Use absolute URLs for background images when in local environment */
.local-environment .testimonial-cta { background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.8)), url('https://tekutah.com/resources/background-dark.jpg') no-repeat center center/cover; }
 .testimonial-cta h2 { color: var(--primary-orange); font-family: var(--heading-font); font-size: 2.5em; margin-bottom: 20px; }
 .testimonial-cta p { color: var(--grey-text); margin-bottom: 30px; font-size: 1.1em; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.main-footer { background-color: var(--black-base); padding: 40px 0; border-top: 1px solid var(--glass-border); margin-top: 50px; }
 .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 30px; }
 .footer-left { flex-basis: 50%; min-width: 250px; }
 .footer-logo { max-height: 40px; margin-bottom: 15px; }
 .footer-left p { color: var(--grey-text); font-size: 0.9em; }
 .footer-right { flex-basis: 40%; min-width: 200px; }
 .footer-right h4 { color: var(--primary-orange); font-family: var(--heading-font); margin-bottom: 15px; font-size: 1.2em; }
 .footer-right ul { list-style: none; }
 .footer-right ul li { margin-bottom: 8px; }
 .footer-right ul li a { color: var(--grey-text); text-decoration: none; transition: color 0.3s ease; }
 .footer-right ul li a:hover { color: var(--primary-orange); }
 #glitch-trigger { text-decoration: none; } /* Keep footer glitch trigger subtle */

/* --- Scroll Animations Base --- */
.animate-on-scroll { opacity: 0; transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-fade-in { transform: translateY(30px); }
.animate-fade-in-up { transform: translateY(50px); }
.animate-fade-in-left { transform: translateX(-50px); }
.animate-fade-in-right { transform: translateX(50px); }
.animate-on-scroll.is-visible { opacity: 1; transform: translate(0, 0); }

/* --- Glitch Effect (Footer Trigger) --- */
@keyframes glitch-anim {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}
@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(1deg); }
    20% { transform: skew(-1deg); }
    30% { transform: skew(2deg); }
    40% { transform: skew(-2deg); }
    50% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}
#glitch-trigger {
    position: relative; display: inline-block; /* or block */
    color: rgba(255,255,255,0.1); /* Make it very subtle */
    transition: color 0.3s;
}
#glitch-trigger:hover {
    color: rgba(255,102,0,0.3);
}
.glitch-speed-1 { animation: glitch-skew 1s infinite linear; }
.glitch-speed-2 { animation: glitch-skew 0.5s infinite linear; }
.glitch-speed-3 { animation: glitch-skew 0.25s infinite linear; }
.glitch-speed-4 { animation: glitch-skew 0.1s infinite linear; }

body.page-is-glitching {
    animation: glitch-anim 0.1s infinite linear alternate-reverse;
}
body.page-is-glitching::before,
body.page-is-glitching::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    z-index: 2000;
    opacity: 0.8;
}
body.page-is-glitching::before {
    animation: glitch-anim 0.1s infinite linear alternate-reverse;
    left: -2px;
    text-shadow: -1px 0 var(--glitch-color1);
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
body.page-is-glitching::after {
    animation: glitch-anim 0.05s infinite linear alternate-reverse;
    left: 2px;
    text-shadow: -1px 0 var(--glitch-color2);
    clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
}

/* --- Blog Grid Styles --- */
.blog-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-tile {
    background: var(--glass-bg);
    backdrop-filter: blur(8px) saturate(110%);
    -webkit-backdrop-filter: blur(8px) saturate(110%);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-tile:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.blog-tile-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-tile-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-tile h3 {
    color: var(--primary-orange);
    font-family: var(--heading-font);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.blog-tile-meta {
    font-size: 0.85em;
    color: var(--grey-text);
    margin-bottom: 15px;
}

.blog-tile-excerpt {
    font-size: 0.95em;
    color: var(--off-white-text);
    flex-grow: 1;
    line-height: 1.6;
}

/* --- Blog Overlay Modal Styles --- */
.blog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}

.blog-overlay.show {
    opacity: 1;
    visibility: visible;
}

.blog-overlay-content {
    background: var(--section-bg-dark); /* Use a slightly darker bg for contrast */
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.close-overlay-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--grey-text);
    font-size: 2.5em;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
}

.close-overlay-button:hover {
    color: var(--primary-orange);
}

.modal-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid var(--glass-border);
}

#modal-content h2 {
    font-family: var(--heading-font);
    color: var(--primary-orange);
    font-size: 2.2em;
    margin-bottom: 10px;
    text-shadow: 0 0 8px var(--primary-orange-glow);
}

.modal-meta {
    font-size: 0.9em;
    color: var(--grey-text);
    margin-bottom: 25px;
}

.modal-post-content {
    line-height: 1.8;
    color: var(--off-white-text);
}

.modal-post-content p {
    margin-bottom: 1.2em;
}

.modal-post-content a {
    color: var(--primary-orange);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-orange-glow);
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.modal-post-content a:hover {
    color: #FF8533;
    border-bottom-color: #FF8533;
}

/* --- Hero Carousel Styles --- */
.hero-carousel {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-controls {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.carousel-prev,
.carousel-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: var(--primary-orange);
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicator.active {
    background-color: var(--primary-orange);
    transform: scale(1.2);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    body { padding-top: 60px; /* Adjust if header height changes */ }
    .section-title { font-size: 2.2em; }
    #hero h1 { font-size: 2.5em; }
    #hero p.subtitle { font-size: 1.1em; }
    .button-lg { padding: 15px 35px; font-size: 1.1em; }
    .cta-buttons { gap: 15px; }

    .footer-content { flex-direction: column; align-items: center; text-align: center; }
    .footer-left, .footer-right { flex-basis: 100%; width: 100%; }
    .footer-right { margin-top: 20px; }

    .blog-grid-container { grid-template-columns: 1fr; /* Stack tiles on small screens */ }
    .blog-overlay-content { padding: 25px; }
    #modal-content h2 { font-size: 1.8em; }
    
    /* Mobile fixes for carousel */
    .carousel-container {
        height: 250px; /* Smaller height on mobile */
    }
    
    /* Ensure only one slide is visible at a time */
    .carousel-slide {
        position: absolute;
        opacity: 0;
        visibility: hidden;
    }
    
    .carousel-slide.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile fixes for circle images */
    .circle-image-container {
        width: 100px; /* Slightly smaller on mobile */
        height: 100px;
        overflow: hidden; /* Ensure content is clipped */
    }
    
    .circle-image {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensure the image covers the container */
    }
    
    /* Adjust the about highlights and service items for mobile */
    .about-highlights, .services-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .highlight-item, .service-item {
        width: 100%;
    }
}

/* --- Circle Images for Tiles --- */
.circle-image-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden !important; /* Force overflow hidden */
    border: 3px solid var(--primary-orange);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px var(--primary-orange-glow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block; /* Ensure block display */
}

.circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover !important; /* Force object-fit */
    transition: transform 0.5s ease;
    display: block; /* Ensure block display */
}

.highlight-item:hover .circle-image-container,
.service-item:hover .circle-image-container {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--primary-orange-glow);
}

.highlight-item:hover .circle-image,
.service-item:hover .circle-image {
    transform: scale(1.1);
}

/* Adjust existing styles for the tiles to accommodate the images */
.highlight-item {
    background: var(--glass-bg);
    backdrop-filter: blur(8px) saturate(110%);
    -webkit-backdrop-filter: blur(8px) saturate(110%);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    padding: 30px 20px 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item {
    background: var(--glass-bg);
    backdrop-filter: blur(8px) saturate(110%);
    -webkit-backdrop-filter: blur(8px) saturate(110%);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    padding: 40px 30px 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: 3px solid var(--primary-orange);
}

/* Remove the old hero-image styles */
.hero-image {
    max-width: 100%;
    height: auto;
    width: 600px; /* Base width */
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

/* --- Service Links --- */
.service-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-orange-glow);
    background-color: rgba(40, 40, 40, 0.7);
    border-left: 3px solid var(--primary-orange);
    border-bottom: 1px solid var(--primary-orange);
}

.service-item h3 {
    color: var(--primary-orange);
    margin: 15px 0 10px;
    font-family: var(--heading-font);
    transition: color 0.3s ease;
}

.service-item:hover h3 {
    text-shadow: 0 0 10px var(--primary-orange-glow);
}

.service-item p {
    color: var(--grey-text);
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.service-item:hover p {
    color: var(--off-white-text);
}

/* --- Page Links (Internal) --- */
.page-link {
    color: var(--primary-orange);
    text-decoration: underline; /* Underlined by default */
    text-decoration-color: var(--primary-orange); /* Match link color initially */
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.page-link:hover,
.page-link:focus {
    color: #FF8533; /* A slightly lighter or brighter orange for hover/focus */
    text-decoration: underline;
    text-decoration-color: var(--primary-orange-glow); /* Brighter underline on hover/focus */
}

/* --- Hero Carousel Styles --- */

/* --- Styles moved from index.html (Homepage specific) --- */
/* Critical mobile styles to ensure they're applied immediately */
@media (max-width: 768px) {
    .carousel-container {
        height: 250px !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .carousel-slide {
        position: absolute !important;
        opacity: 0 !important;
        visibility: hidden !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .carousel-slide.active {
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 1 !important;
    }
    
    .circle-image-container {
        width: 100px !important;
        height: 100px !important;
        border-radius: 50% !important;
        overflow: hidden !important;
    }
    
    .circle-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .about-highlights, .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
}

/* New styles for the updated homepage layout */
.glass-effect {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    padding: 30px;
    margin: 30px 0;
}

/* Service Cards */
.service-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    padding: 25px;
    margin: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 102, 0, 0.1);
    flex: 1;
    min-width: 250px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #FFC107;
    text-decoration: underline;
}

/* Guide Section */
.guide-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.guide-text {
    flex: 1;
    min-width: 300px;
}

.guide-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.rounded-image {
    border-radius: 15px;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 102, 0, 0.3);
}

/* Reasons Section */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.reason-card {
    display: flex;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.reason-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-right: 20px;
    min-width: 40px;
}

.reason-content {
    flex: 1;
}

/* Testimonial Section */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.testimonial-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 15px;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.testimonial-prev, .testimonial-next {
    background: rgba(255, 102, 0, 0.2);
    color: var(--primary-orange);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: rgba(255, 102, 0, 0.4);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    margin: 0 15px;
}

.testimonial-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background: var(--primary-orange);
}

.testimonial-loading, .testimonial-error {
    text-align: center;
    padding: 30px;
    color: #AAA;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

/* Blog Section */
.blog-carousel {
    position: relative;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.blog-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.blog-slide {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 15px;
}

.blog-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.blog-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.blog-prev, .blog-next {
    background: rgba(255, 102, 0, 0.2);
    color: var(--primary-orange);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.blog-prev:hover, .blog-next:hover {
    background: rgba(255, 102, 0, 0.4);
}

.blog-indicators {
    display: flex;
    justify-content: center;
    margin: 0 15px;
}

.blog-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-indicator.active {
    background: var(--primary-orange);
}

.blog-loading, .blog-error {
    text-align: center;
    padding: 30px;
    color: #AAA;
}

/* Blog Carousel Content Styles */
.blog-post {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 15px;
    gap: 25px;
}

.blog-post-image {
    flex: 0 0 35%;
    max-width: 35%;
}

.blog-post-content {
    flex: 1;
}

.blog-post h3 {
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.blog-post .blog-meta {
    color: #AAA;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-post p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-post img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 102, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.blog-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-post-link:hover .blog-post h3 {
    color: #FFC107;
}

.blog-cta {
    text-align: center;
    margin-top: 20px;
}

/* Responsive adjustments for blog posts */
@media (max-width: 768px) {
    .blog-post {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-post-image {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card, .reason-card, .testimonial-slide, .blog-slide {
        margin: 10px 0;
    }
    
    .guide-content, .about-content {
        flex-direction: column;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

/* New Hero Slideshow Styles */
.hero-slideshow {
    position: relative; 
    height: 400px; 
    width: 100%; 
    overflow: hidden;
    margin-bottom: 30px; 
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); 
    border: 2px solid rgba(255, 102, 0, 0.3);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-color: rgba(0, 0, 0, 0.8);
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: ken-burns 20s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes ken-burns {
    0% {
        transform: scale(1) translate(0px, 0px);
    }
    100% {
        transform: scale(1.1) translate(-10px, -10px);
    }
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.hero-slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-slide-indicator.active {
    background-color: var(--primary-orange);
}

/* Mobile adjustments for hero slideshow */
@media (max-width: 768px) {
    .hero-slideshow {
        height: 250px;
    }
}

/* Hero section redesign based on TMT demo site */
#hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0 40px; 
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(20,20,20,0.9) 100%);
}

.hero-slideshow-container {
    max-width: 800px;
    margin: 30px auto;
}

.hero-text-container {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.hero-text {
    padding: 30px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
}

/* Note: .hero-slideshow selector is intentionally repeated here for specificity within the hero section redesign context. */
.hero-slideshow {
    position: relative;
    height: 450px; /* Specific height for this context */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 102, 0, 0.3);
    z-index: 1;
}

.hero-text h1 {
    color: var(--primary-orange);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.hero-text .subtitle {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cta-buttons {
    margin-top: 25px;
}

/* Mobile adjustments for hero section */
@media (max-width: 768px) {
    .hero-slideshow-container,
    .hero-text-container {
        padding: 0 20px;
    }
    
    .hero-text {
        padding: 20px;
    }
    
    .hero-slideshow { /* Further mobile refinement for hero context */
        height: 250px;
        width: 100%;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text .subtitle {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 20px;
    }
}

.hero-title {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    text-align: center;
}

/* --- Styles moved from isthisyou.html --- */
/* Page-specific styles */
.is-this-you-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.is-this-you-hero {
    text-align: center;
    margin-bottom: 60px;
}

.is-this-you-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-orange);
    text-transform: uppercase;
    font-family: var(--heading-font);
    font-weight: 700;
}

.is-this-you-hero h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.is-this-you-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.main-content {
    flex: 1;
    min-width: 300px;
}

.sidebar {
    width: 350px;
}

.main-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.checklist {
    list-style: none;
    margin: 30px 0;
}

.checklist li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.checklist li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6600'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-card h3 {
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-family: var(--heading-font);
    font-size: 1.8rem;
}

.glass-card p {
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: 600;
}

.form-group input, 
.form-group textarea {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid var(--glass-border);
    background: rgba(30, 30, 30, 0.3);
    color: var(--off-white-text);
    font-family: var(--body-font);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.submit-btn {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--body-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--primary-orange-glow);
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .is-this-you-content {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .is-this-you-hero h1 {
        font-size: 2.5rem;
    }
    
    .is-this-you-hero h2 {
        font-size: 1.4rem;
    }
}

/* Testimonial Overlay Styles */
.testimonial-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-overlay.show {
    display: block;
    opacity: 1;
}

.testimonial-overlay-content {
    position: relative;
    background-color: rgba(30, 30, 30, 0.95);
    margin: 5% auto;
    padding: 30px;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.close-overlay-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #FF6600;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-overlay-button:hover {
    color: #FFFFFF;
}

.testimonial-item {
    background-color: rgba(40, 40, 40, 0.7);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

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

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background-color: #333;
    position: relative;
}

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

.loading-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
}

.testimonial-meta h3 {
    margin: 0 0 5px 0;
    color: #FF6600;
    font-size: 18px;
}

.testimonial-meta p {
    margin: 0;
    color: #AAAAAA;
    font-size: 14px;
}

.testimonial-content blockquote {
    margin: 0;
    padding-left: 15px;
    border-left: 3px solid #FF6600;
    font-style: italic;
    color: #DDDDDD;
}

/* Reasons Grid Styles */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.reason-item {
    background-color: rgba(40, 40, 40, 0.7);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--primary-orange);
    transition: background-color 0.3s ease, border-left-color 0.3s ease;
}

.reason-item span {
    font-size: 24px;
    font-weight: bold;
    color: #FF6600;
    margin-right: 10px;
    min-width: 40px;
    text-align: center;
}

.reason-item p {
    margin: 0;
    font-size: 15px;
}

.booking-cta {
    text-align: center;
    margin: 25px 0;
}

.testimonial-cta {
    text-align: center;
    margin: 20px 0;
}

.testimonial-cta p {
    margin-bottom: 10px;
}

.hero-image-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-image {
        max-width: 100%;
    }
}

/* Remove hover effect */
/* .hero-image:hover {
    transform: scale(1.02);
} */

/* --- Why Choose Us / Security Tip Hero --- */
.why-choose-hero {
    position: relative;
    padding: 100px 0 50px;
    text-align: center;
    /* Default background, can be overridden by more specific ID selectors */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/resources/StockPhoto/why-choose-us-hero.jpg'); 
    background-size: cover;
    background-position: center;
    color: #fff;
}

.why-choose-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff; /* Ensure text is white over dark background */
    font-family: var(--heading-font);
}

.why-choose-hero p.subtitle { /* Using .subtitle for consistency with other hero sections */
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto; /* Added bottom margin */
    color: #ddd;
    line-height: 1.6;
}

/* Specific hero for security tip page */
#hero-security-tip.why-choose-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('/resources/StockPhoto/cybersecurity-concept-medium.jpg');
    background-size: cover;
    background-position: center;
}


@media (max-width: 768px) {
    .why-choose-hero h1 {
        font-size: 2.2rem;
    }
    .why-choose-hero p.subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* --- Generic Modal Styles --- */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1050; /* Sit on top - higher than navbar (1000) */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--section-bg-dark, #121212);
    margin: 10% auto; /* 10% from the top and centered */
    padding: 30px;
    border: 1px solid var(--glass-border, rgba(255,102,0,0.2));
    border-radius: 15px;
    width: 80%; /* Could be more specific */
    max-width: 600px; /* Max width */
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation-name: modalOpenAnim;
    animation-duration: 0.4s;
}

@keyframes modalOpenAnim {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-modal-button {
    color: var(--grey-text, #AAAAAA);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.close-modal-button:hover,
.close-modal-button:focus {
    color: var(--primary-orange, #FF6600);
    text-decoration: none;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden; /* Prevent background scrolling */
}

/* Modal Form Specific Styles */
.modal-content h2 {
    text-align: center;
    color: var(--primary-orange);
    font-family: var(--heading-font);
    margin-bottom: 25px;
}

.modal-content .form-group {
    margin-bottom: 20px;
}

.modal-content .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--off-white-text);
}

.modal-content .form-group input[type="text"],
.modal-content .form-group input[type="email"],
.modal-content .form-group input[type="tel"],
.modal-content .form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #444;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-content .form-group input[type="text"]:focus,
.modal-content .form-group input[type="email"]:focus,
.modal-content .form-group input[type="tel"]:focus,
.modal-content .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px var(--primary-orange-glow);
}

.modal-content .submit-btn { /* Re-using .submit-btn styles defined elsewhere, but can be specific if needed */
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    margin-top: 10px; /* Add some space above the button */
    /* Ensure it uses global button styles if .button and .button-primary are preferred */
    /* background: linear-gradient(135deg, var(--primary-orange), #E65100); already in .button-primary */
    /* color: var(--off-white-text); */
    /* box-shadow: 0 5px 20px var(--primary-orange-glow); */
    /* border: 2px solid transparent; */
    /* border-radius: 50px; */
    /* font-weight: 600; */
    /* text-decoration: none; */
    /* cursor: pointer; */
    /* transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
    /* text-align: center; */
    /* letter-spacing: 0.5px; */
}

