@charset "UTF-8";
:root {
    --bg-dark: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-main: #333333;
    --text-muted: #666666;
    --text-heading: #0a192f;
    --primary-blue: #007bff;
    --primary-hover: #0056b3;
    --glass-bg: #ffffff;
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-heading);
}
.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header.header-white {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
header.header-white.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: none;
}
.header-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between !important;
}
.header-logo {
    text-decoration: none;
    display: inline-block;
    padding: 10px 0;
}
.header-logo img {
    height: 60px !important;
    width: auto !important;
    display: block;
    transition: var(--transition-fast);
}
@media (max-width: 768px) {
    .header-logo img {
        height: 50px !important;
    }
}
.main-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-link {
    text-decoration: none;
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-fast);
}
.nav-link:hover {
    color: var(--primary-blue);
}
.nav-item.dropdown>.nav-link::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    margin-bottom: 3px;
    transition: transform 0.3s ease;
}
.nav-item.dropdown:hover>.nav-link::after {
    transform: rotate(-135deg);
    margin-bottom: -1px;
}
.nav-item.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1005;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    z-index: 1000;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-item.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}
.nav-item.dropdown:hover .dropdown-content {
    display: flex;
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1001;
}
.dropdown-content li {
    width: 100%;
    padding: 0;
}
.dropdown-content li a.nav-link {
    font-size: 0.95rem;
    padding: 12px 25px;
    display: block;
    color: var(--text-heading);
    border-radius: 0;
    transition: all 0.2s ease;
    text-align: left;
}
.dropdown-content li a.nav-link:hover {
    background-color: #f8f9fa;
    color: var(--primary-blue);
    padding-left: 30px;
}
.nav-cta {
    background-color: var(--primary-blue);
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff !important;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-heading);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hero-final {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: url('/assets/ana-banner.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero-final::before {
    display: none;
}
.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
}
.hero-text-content {
    max-width: 650px;
    position: relative;
    padding: 20px 0;
    text-align: left;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.hero-description {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 550px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.hero-buttons {
    display: flex;
    gap: 15px;
}
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-primary {
    background-color: var(--primary-blue);
    color: #ffffff;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}
.btn-outline {
    background-color: transparent;
    color: var(--text-heading);
    border: 2px solid #e0e0e0;
}
.btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-3px);
}
.services {
    padding: 100px 0;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    padding: 40px;
    text-align: left;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    background: #ffffff;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}
.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.service-card p {
    color: var(--text-muted);
}
.service-detail-btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 10px 25px;
    margin-top: 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: var(--font-heading);
    font-size: 0.95rem;
}
.service-detail-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
    color: #ffffff;
}
footer {
    display: block;
    width: 100%;
    padding: 60px 0;
    margin-top: 50px;
    background-color: #e0f2fe;
    color: #0A192F;
    border-top: 1px solid #C0C0C0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.footer-brand p {
    color: #334155;
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}
.footer-brand img {
    filter: none;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    display: block;
    height: 60px !important;
    width: auto !important;
    mix-blend-mode: multiply;
}
.footer-brand div {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.footer-contact p {
    color: #0A192F;
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
}
.footer-copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #64748b;
    font-size: 0.9rem;
}
@media (max-width: 992px) {
    .hero-text-content {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }
    .hero-container {
        justify-content: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-final {
        background-position: center right;
    }
    .hero-final::before {
        background: rgba(255, 255, 255, 0.85);
    }
    .hero-title {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1002;
    }
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background-color: #ffffff !important;
        padding: 100px 20px 40px 20px !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1001 !important;
        display: block !important;
        text-align: left !important;
        overflow-y: auto !important;
    }
    .main-nav.active {
        left: 0 !important;
        box-shadow: 10px 0 25px rgba(0, 0, 0, 0.3) !important;
    }
    .nav-list {
        display: block !important;
        width: 100% !important;
        padding: 0 0 0 20px !important;
        margin: 0 !important;
        list-style: none !important;
        text-align: left !important;
    }
    .nav-item {
        width: 100% !important;
        display: block !important;
        margin: 0 0 15px 0 !important;
        text-align: left !important;
    }
    .nav-link {
        font-size: 1.4rem !important;
        line-height: 1.4 !important;
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        color: #1e293b !important;
        padding: 10px 0 !important;
    }
    .nav-item:last-child {
        margin-top: 20px;
        text-align: left;
        padding-bottom: 20px;
    }
    .nav-item:last-child .nav-cta {
        margin: 0;
        display: inline-flex !important;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: auto;
        min-width: 140px;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 0.95rem;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    .nav-item.dropdown {
        flex-direction: column;
        height: auto;
        padding: 0;
        width: 100%;
        text-align: left;
        display: block;
    }
    .nav-item.dropdown::after {
        display: none;
    }
    .mega-menu {
        position: static !important;
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        text-align: left !important;
    }
    .mega-menu-featured {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .mega-menu-links {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: left !important;
    }
    .mega-col {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 15px 0 !important;
        text-align: left !important;
        float: none !important;
    }
    .mega-col h4 {
        color: #800000 !important;
        font-weight: 800 !important;
        font-size: 1.2rem !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        display: block !important;
        border-bottom: 2px solid #80000033 !important;
        text-align: left !important;
        width: 100% !important;
        text-transform: uppercase !important;
    }
    .mega-col h4::before {
        content: '' !important;
    }
    .mega-col h4 a {
        color: inherit !important;
        text-decoration: none !important;
        pointer-events: none !important;
    }
    .mega-col ul {
        display: block !important;
        padding: 10px 0 10px 20px !important;
        margin: 0 !important;
        list-style: none !important;
        text-align: left !important;
    }
    .mega-col.independent-col ul {
        padding-left: 0 !important;
        margin-top: 10px !important;
    }
    .mega-col ul li {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 0 10px 0 !important; 
        text-align: left !important;
    }
    .mega-col ul li a {
        display: block !important;
        padding: 5px 0 !important;
        line-height: 1.2 !important;
        font-size: 1.1rem !important;
        color: #000000 !important;
        font-weight: 500 !important;
        text-align: left !important;
        text-decoration: none !important;
        width: 100% !important;
        transition: padding 0.2s !important;
    }
    .mega-col ul li a:hover {
        padding-left: 5px !important;
        color: #800000 !important;
    }
    .mega-col.active ul {
        display: block !important;
    }
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        display: none;
        width: 100%;
        margin-top: 10px;
        padding: 0 0 0 20px;
    }
    .nav-item.active .dropdown-content {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .dropdown-content li a.nav-link {
        font-size: 1.1rem;
        color: var(--text-muted);
        padding: 8px 0;
        text-align: left;
        line-height: 2.5;
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
    }
    .footer-brand,
    .footer-contact,
    .footer-links {
        width: 100% !important;
        text-align: left !important;
        margin-bottom: 30px !important;
        display: block !important;
    }
    .footer-links {
        justify-content: flex-start !important;
        display: block !important;
    }
    .footer-links>div {
        width: 100% !important;
        text-align: left !important;
        display: block !important;
    }
    .footer-contact a {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: flex-start;
    }
    .footer-brand p,
    .footer-contact p {
        text-align: left !important;
    }
    .footer-brand {
        margin-bottom: 30px !important;
    }
    .footer-copyright {
        margin-top: 10px !important;
        padding-top: 20px !important;
    }
}
.feature-title.service-title-glow {
    color: #00d4ff !important;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5) !important;
    margin-bottom: 25px;
}
.zigzag-section {
    padding: 60px 0;
}
.zigzag-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}
.zigzag-row.reverse {
    flex-direction: row-reverse;
}
.zigzag-content {
    flex: 1;
}
.zigzag-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.zigzag-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.zigzag-image img:hover {
    transform: scale(1.02);
}
.feature-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.feature-block {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #00d4ff;
}
.feature-block-icon {
    font-size: 2rem;
    color: #00d4ff;
    flex-shrink: 0;
    background: rgba(0, 212, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.feature-block:hover .feature-block-icon {
    background: #00d4ff;
    color: #ffffff;
}
.feature-block-content {
    flex: 1;
}
.feature-block-content h5 {
    margin: 0 0 10px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
}
.feature-block-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
@media (max-width: 992px) {
    .zigzag-row,
    .zigzag-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    .zigzag-image {
        width: 100%;
        margin-bottom: 20px;
    }
    .zigzag-content {
        width: 100%;
    }
}
.header-logo,
.navbar-brand,
a[href="/"],
.footer-logo,
.logo-holder,
.footer-brand,
.logo-container {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    outline: none !important;
    text-decoration: none !important;
}
.header-logo img,
.footer-logo img,
img[alt*="Logo"],
img[src*="site-logo"] {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    height: 85px !important;
    width: auto !important;
    max-height: none !important;
    min-height: 85px !important;
    display: block !important;
    z-index: 9999 !important;
}
header.header-white,
header.header-white.scrolled {
    background-color: rgba(255, 255, 255, 0.9) !important;
    min-height: 110px !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05) !important;
}
@media (max-width: 768px) {
    .header-logo img {
        height: 60px !important;
        min-height: 60px !important;
    }
}
@media (min-width: 993px) {
    .header-white .mega-menu {
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 1200px !important;
        height: 500px !important; 
        background: #ffffff !important;
        z-index: 9999 !important;
        display: none !important;
        padding: 0 !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    }
    .mega-menu-featured {
        flex: 0 0 25% !important;
        background: #002e5b !important;
        padding: 40px 30px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    .mega-menu-featured h2,
    .mega-menu-featured p,
    .mega-menu-featured .btn,
    .mega-menu-featured .btn-white {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #ffffff !important;
    }
    .mega-menu-featured .btn-white {
        display: inline-block !important;
        background: #fff !important;
        color: #002e5b !important;
        padding: 10px 25px !important;
        border-radius: 30px !important;
        font-weight: 600 !important;
        margin-top: 25px !important;
        text-align: center !important;
        text-decoration: none !important;
        transition: 0.3s;
        width: fit-content;
    }
    .mega-menu-featured .btn-white:hover {
        background: #f8f9fa !important;
        transform: translateY(-2px);
    }
    .mega-menu-links {
        flex: 1 !important;
        display: flex !important;
        justify-content: space-between !important;
        padding: 40px !important;
        background: #fff !important;
    }
    .header-white li:hover .mega-menu {
        display: flex !important;
    }
    .mega-col {
        flex: 1 !important;
    }
    .mega-col h4 {
        color: #b32d2d !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        margin-bottom: 20px !important;
        text-transform: uppercase !important;
    }
    .mega-col ul {
        list-style: none !important;
        padding: 0 !important;
    }
    .mega-col ul li a {
        display: block !important;
        padding: 7px 0 !important;
        color: #444 !important;
        font-size: 14px !important;
        text-decoration: none !important;
        transition: 0.3s;
    }
    .mega-col ul li a:hover {
        color: #b32d2d !important;
        padding-left: 5px !important;
    }
}
.hero-hosting {
    height: 900px;
    background: url('/assets/hosting-banner-final.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.glass-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    color: white;
    text-align: center;
    transition: transform 0.3s ease;
}
.glass-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 102, 0, 0.5);
}
.glass-box i {
    font-size: 3.5rem;
    color: #ff6600;
    margin-bottom: 25px;
    display: inline-block;
}
.glass-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.glass-box p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
.tech-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.tech-table th,
.tech-table td {
    padding: 20px 30px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.tech-table th {
    background: #002e5b;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}
.tech-table td {
    color: #475569;
    font-weight: 500;
}
.tech-table td strong {
    color: #002e5b;
    font-weight: 700;
}
.tech-table tr:hover td {
    background: #f8fafc;
}
.tech-table tr:last-child td {
    border-bottom: none;
}
.tech-icon {
    color: #ff6600;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}
.hero-eposta {
    height: 900px;
    background: url('/assets/kurumsal-eposta-banner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.zigzag-separator {
    width: 100%;
    height: 100px;
}
.glass-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
@media (max-width: 768px) {
    .glass-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Mega Menu Spinner */
.menu-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(128, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #800000;
    animation: spin 1s ease-in-out infinite;
    margin: 40px auto;
    transition: opacity 0.3s ease-out;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.mega-menu-links {
    position: relative;
    min-height: 150px;
}
