/* --- Global Styles & Variables --- */
:root {
    --primary-color: #007bff;
    --secondary-color: #f0f6ff;
    --dark-color: #1a202c;
    --gray-color: #6c757d;
    --light-color: #ffffff;
    --purple-color: #6f42c1;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; color: var(--dark-color); text-align: center; }

p { margin-bottom: 1rem; }

a {
    color: #e2e4e7;
    text-decoration: none;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 2px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
        background-color: #ee5353;
    color: white !important;
}

.btn-primary:hover {
    background-color: #ee5353;
}

.btn-secondary {
  background-color: var(--secondary-color);
    color: #ee5353;
    border: 2px solid #ee5353;
}

.btn-secondary:hover {
    background-color: #dbeaff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--dark-color);
    padding: 3px 0;
    font-size: 12px;
    color: white;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-details span {
    margin-right: 20px;
}

.country-selector-container {
    position: relative;
}

.selected-country {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.selected-country img {
    width: 20px;
    margin-right: 10px;
}

.country-popup {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    z-index: 1001;
}

.country-popup.show {
    display: block;
}

.country-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.country-list li {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;
    color: var(--dark-color);
}

.country-list li:hover {
    background-color: #f0f0f0;
}

.country-list li img {
    width: 20px;
    margin-right: 10px;
}


/* --- Header & Navigation --- */
#main-header {
    background-color: var(--light-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

#main-header.scrolled {
    box-shadow: var(--box-shadow);
}

#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 0px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
        font-size: 14px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Ensure mobile nav overlay is hidden by default on desktop */
.mobile-nav-panel { display: none; }

/* --- Hero Section --- */
.hero {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    padding: 4rem 0;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.slide {
    display: none;
    position: relative; /* Changed for overlapping content */
    background-color: transparent;
    border-radius: 16px;
    overflow: visible; /* Allow content to overlap */
    box-shadow: none;
}

.slide.active {
    display: block; /* Changed from flex */
}

.slide-image {
    width: 75%; /* Make image smaller */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-content {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 45%;
    background: #ffffff;
    padding: 2.5rem;
    text-align: left;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.slide-content p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.slide-content .btn {
    background-color: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
}
.slide-content .btn:hover {
    background-color: #555;
}


.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.slider-arrow {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-arrow.prev {
    left: -30px;
}

.slider-arrow.next {
    right: -30px;
}


.slider-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #333;
}

.pause-button {
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pause-button:hover{
    background: #eee;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 1.5rem auto 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* --- Customer Logos Section --- */
.customer-logos {
    padding: 40px 0;
    background-color: #fafafa;
    overflow: hidden;
}

.customer-logos p {
    text-align: center;
    color: var(--gray-color);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.logo-scroller {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.logo-scroller-inner {
    display: flex;
    gap: 4rem;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.logo-scroller-inner img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    height: 60px;
}

.logo-scroller-inner:hover {
    animation-play-state: paused;
}

.logo-scroller-inner img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- Features Section --- */
.features {
    padding: 80px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--light-color);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature-card img {
    margin-bottom: 1.5rem;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--gray-color);
}

.learn-more {
    font-weight: 700;
    margin-top: 1rem;
    display: inline-block;
}

/* --- Final CTA Section --- */
.final-cta {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    color: var(--light-color);
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* --- Footer --- */
footer {
    background-color: #f8f9fa;
    padding: 60px 0 20px;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul a {
    color: var(--gray-color);
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--primary-color);
}

.subscribe-form {
    display: flex;
    margin-top: 1rem;
}

.subscribe-form input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.subscribe-form button {
    padding: 10px 15px;
    border: none;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.social-links a {
    margin-left: 1rem;
    color: var(--gray-color);
}

/* --- Modern Dark Footer --- */
.site-footer {
    background: linear-gradient(180deg, #2c2e32 0%, #404348 100%);;
    color: #dbe7f7;
}
.footer-top {
    padding: 60px 0;
}
.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 320px;
    gap: 2rem;
    align-items: start;
}
.brand-area .brand-desc {
    color: rgba(219,231,247,0.8);
    margin-top: 1rem;
    max-width: 360px;
}
/* footer extras */
.contact-col .flag-list img { margin-right: 8px; vertical-align: middle; }
.contact-col .contact-list { list-style: none; padding: 0; margin-top: 12px; color: rgba(219,231,247,0.9); }
.contact-col .contact-list li { margin-bottom: 8px; }
.contact-col .contact-list a { color: rgba(219,231,247,0.9); }

.subscribe-col .subscribe-form { display: flex; gap: 8px; margin-top: 0.5rem; }
.subscribe-col .subscribe-form input { flex: 1; padding: 10px; border-radius: 6px; border: none; background: rgba(255,255,255,0.05); color: #fff; }

.footer-keywords { padding: 10px 0 26px; }
.footer-keywords .keywords { color: rgba(219,231,247,0.65); font-size: 0.95rem; text-align: center; margin: 0; }
.links-area h5 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}
.links-area ul {
    list-style: none;
    padding: 0;
}
.links-area ul li a {
    color: rgba(219,231,247,0.8);
    display: block;
    padding: 6px 0;
}
.links-area ul li a:hover {
    color: var(--primary-color);
}
.subscribe-area h5 {
    color: #ffffff;
}
.subscribe-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}
.subscribe-form input[type="email"] {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    color: #fff;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.6); }
.subscribe-form .btn-primary { padding: 10px 18px; }
.footer-socials {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}
.footer-socials a { color: rgba(219,231,247,0.8); font-size: 1.05rem; }

.footer-bottom-dark {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
}
.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom-grid .policy-links a { color: rgba(219,231,247,0.8); margin-left: 16px; }
.footer-bottom-grid .policy-links a:hover { color: var(--primary-color); }

@media (max-width: 992px) {
    .footer-top-grid { grid-template-columns: 1fr 1fr; }
    .footer-top-grid .brand-area { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    .footer-top-grid { grid-template-columns: 1fr; }
    .footer-bottom-grid { flex-direction: column; gap: 8px; }
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; } /* Simple hide for mobile, can be replaced with a hamburger menu */
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .nav-actions { display: none; }
    .feature-grid { grid-template-columns: 1fr; }
    .logos-container { gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
    .top-bar-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-details {
        margin-bottom: 10px;
    }
}

/* Mobile navigation styles */
.nav-toggle { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; }
.nav-toggle-bar { width: 22px; height: 2px; background: var(--dark-color); display: block; margin: 3px 0; }

@media (max-width: 992px) {
    .nav-toggle { display: block; }
    /* Fullscreen mobile nav panel */
    .mobile-nav-panel { position: fixed; inset: 0 0 0 0; background: rgba(7,18,36,0.85); z-index: 99999 !important; display: none; }
    .mobile-nav-panel.open { display: block; }
    .mobile-nav-inner { position: fixed; top: 0; left: 0; width: 100%; max-width: 360px; background: #fff; height: 100%; overflow-y: auto; padding: 20px; box-shadow: 6px 0 30px rgba(0,0,0,0.2); }
    .mobile-nav-inner .nav-links { display: block; }
    .mobile-nav-inner .nav-links li { margin: 0 0 8px 0; border-bottom: 1px solid #f0f0f0; padding-bottom: 8px; }
    .mobile-nav-inner .nav-links a { color: #0b1220; display: block; padding: 8px 0; }
    .mobile-nav-inner .has-megamenu .mega-menu { position: static; display: none; box-shadow: none; background: transparent; padding: 0; }
    .mobile-nav-inner .has-megamenu.open .mega-menu { display: block; }
    .mega-menu { width: auto; }
}

/* prevent background scrolling when mobile nav open */
.mobile-nav-open { overflow: hidden; height: 100%; }

/* Mobile overrides to simplify mega-menus inside the mobile nav */
@media (max-width: 992px) {
    /* Make any mega-menu content simple and stacked */
    .mobile-nav-inner .mega-menu { background: transparent !important; padding: 0 !important; box-shadow: none !important; }

    .mobile-nav-inner .products-mega,
    .mobile-nav-inner .hosting-mega,
    .mobile-nav-inner .webdesign-mega,
    .mobile-nav-inner .its-mega,
    .mobile-nav-inner .support-mega { width: 100% !important; }

    .mobile-nav-inner .products-grid,
    .mobile-nav-inner .webdesign-grid,
    .mobile-nav-inner .hosting-grid,
    .mobile-nav-inner .its-grid,
    .mobile-nav-inner .support-grid,
    .mobile-nav-inner .products-mega .products-grid { display: block; grid-template-columns: 1fr !important; gap: 8px !important; }

    /* Simplify card visuals for mobile: remove borders and logos/thumbs to keep list clean */
    .mobile-nav-inner .product-card,
    .mobile-nav-inner .hosting-card,
    .mobile-nav-inner .design-card,
    .mobile-nav-inner .its-card,
    .mobile-nav-inner .sp-card { background: transparent !important; border: none !important; box-shadow: none !important; padding: 6px 0 !important; }

    .mobile-nav-inner .product-logo,
    .mobile-nav-inner .dc-thumb { display: none !important; }

    /* Ensure links are full width and easy to tap */
    .mobile-nav-inner .mega-menu a { display: block; padding: 8px 0; color: #0b1220; }
}

/* Mobile submenu toggle styling */
@media (max-width: 992px) {
    .mobile-submenu { display: none; list-style: none; padding-left: 12px; margin: 8px 0 0 0; }
    .mobile-submenu li { padding: 6px 0; border-bottom: 1px dashed #eee; }
    .mobile-submenu li a { padding: 6px 0; }
    .nav-links li.open > .mobile-submenu { display: block; }
    .submenu-toggle { float: right; margin-left: 8px; font-size: 0.9rem; color: #6b7280; }
}


@media (max-width: 480px) {
    .cta-buttons { flex-direction: column; }
}

/* --- Mega Menu --- */
.has-megamenu {
    position: relative;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    background-color: var(--dark-color);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px; /* space between nav and menu */
}

.has-megamenu:hover .mega-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mega-menu-column {
    flex: 1;
}

.mega-menu-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu-column h4 i {
    color: var(--primary-color);
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 0.75rem;
}

.mega-menu-column ul a {
    color: #adb5bd; /* Lighter gray for dark background */
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.mega-menu-column ul a:hover {
    color: var(--light-color);
}

/* Products mega-grid card style */
.products-mega { padding: 18px 20px; background: #fff; color: #0b1220; width: 820px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { display: flex; flex-direction: column; justify-content: flex-start; gap: 12px; padding: 18px; border-radius: 14px; border: 1px solid rgba(11,18,32,0.06); background: #fff; text-decoration: none; color: inherit; min-height: 140px; }
.product-card:hover { box-shadow: 0 10px 30px rgba(2,6,23,0.06); transform: translateY(-4px); transition: all 180ms ease; }
.product-info h5 { margin: 0 0 6px 0; font-size: 1rem; font-weight: 700; }
.product-info p { margin: 0; font-size: 0.9rem; color: #69707a; }
.product-logo { display: block; margin-top: auto; align-self: flex-end; }
.product-logo img { width: 84px; height: auto; display: block; opacity: 0.95; }

@media (max-width: 992px) {
    .products-mega { width: 100%; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* Hosting mega-menu styles */
.hosting-mega { padding: 18px 20px; background: #fff; color: #0b1220; width: 860px; }
.hosting-grid { display: grid; grid-template-columns: 1fr 340px; gap: 18px; }
.hosting-column h4 { margin: 0 0 8px 0; font-size: 1rem; }
.hosting-cards { display: flex; flex-direction: column; gap: 12px; }
.hosting-card { padding: 12px; border-radius: 10px; border: 1px solid rgba(11,18,32,0.06); background: #fff; text-decoration: none; color: inherit; }
.hosting-card.recommended { border: 1px solid rgba(36,96,233,0.12); box-shadow: 0 8px 30px rgba(36,96,233,0.06); }
.hc-header { display:flex; justify-content: space-between; align-items: center; gap: 8px; }
.hc-badge { background: #ee5353; color: #fff; font-size: 0.75rem; padding: 4px 8px; border-radius: 999px; }
.hc-meta { margin-top: 8px; color: #374151; font-size: 0.95rem; }
.hosting-links { list-style: none; padding: 0; margin: 8px 0 16px 0; }
.hosting-links li { margin-bottom: 8px; }
.hosting-links li a { color: #0b1220; }
.hosting-cta { display:flex; gap: 8px; }

@media (max-width: 992px) {
    .hosting-mega { width: 100%; }
    .hosting-grid { grid-template-columns: 1fr; }
}

/* Web Design mega-menu styles (advanced view) */
.webdesign-mega { padding: 18px 20px; background: #fff; color: #0b1220; width: 980px; }
.webdesign-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; align-items: start; }
.wd-column h4 { margin: 0 0 8px 0; font-size: 1rem; }
.wd-services ul, .wd-tools ul { list-style: none; padding: 0; margin: 0; }
.wd-services li, .wd-tools li { margin-bottom: 8px; }
.design-cards { display: grid; grid-template-columns: 1fr; gap: 10px; }
.design-card { display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 10px; border: 1px solid rgba(11,18,32,0.06); text-decoration: none; color: inherit; }
.dc-thumb img { width: 64px; height: 64px; object-fit: contain; display: block; }
.dc-body strong { display: block; font-size: 0.98rem; }
.dc-body span { color: #6b7280; font-size: 0.9rem; }
.wd-cta { margin-top: 12px; display:flex; gap: 8px; }

@media (max-width: 992px) {
    .webdesign-mega { width: 100%; }
    .webdesign-grid { grid-template-columns: 1fr; }
}

/* IT Service Management mega-menu styles */
.its-mega { padding: 18px 20px; background: #fff; color: #0b1220; width: 820px; }
.its-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.its-services ul { list-style: none; padding: 0; margin: 0; }
.its-services li { display: flex; gap: 12px; margin-bottom: 12px; }
.its-icon { width: 44px; height: 44px; background: #f1f5f9; border-radius: 8px; display:flex; align-items:center; justify-content:center; color:#245CE9; font-size: 1.05rem; }
.its-desc { margin: 4px 0 0 0; color: #6b7280; font-size: 0.9rem; }
.its-highlights { display: flex; flex-direction: column; gap: 10px; }
.its-card { padding: 12px; border-radius: 10px; border: 1px solid rgba(11,18,32,0.06); background: #fff; }
.its-card strong { display:block; margin-bottom:6px; }
.its-cta { display:flex; gap: 8px; margin-top:6px; }

@media (max-width: 992px) {
    .its-mega { width: 100%; }
    .its-grid { grid-template-columns: 1fr; }
}

/* Support mega-menu styles */
.support-mega { padding: 18px 20px; background: #fff; color: #0b1220; width: 720px; }
.support-grid { display: grid; grid-template-columns: 1fr 320px; gap: 18px; }
.support-links ul { list-style: none; padding: 0; margin: 0; }
.support-links li { margin-bottom: 8px; }
.support-panel { display:flex; flex-direction: column; gap: 12px; }
.sp-card { padding: 12px; border-radius: 10px; border: 1px solid rgba(11,18,32,0.06); background: #fff; }
.sp-title { font-weight: 700; margin-bottom:6px; }
.sp-desc { color: #6b7280; margin-bottom: 8px; }
.sp-contact { display:flex; flex-direction: column; gap: 8px; }
.sp-phone a { color: #0b1220; font-weight: 700; }

@media (max-width: 992px) {
    .support-mega { width: 100%; }
    .support-grid { grid-template-columns: 1fr; }
}





/* --- Why Choose Us Section --- */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1724 0%, #0b1220 40%, #071226 100%);
    color: #e6f0ff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-hero-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(2,6,23,0.6);
}

.why-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(1.02);
}

.why-overlay {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(3,7,18,0.6);
    color: #e6f0ff;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.why-cards h2 {
    color: #f8fbff;
    text-align: left;
    margin-bottom: 0.5rem;
}

.why-cards .section-subtitle {
    color: rgba(230,240,255,0.85);
    margin-bottom: 1.5rem;
    text-align: left;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.why-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.04);
    padding: 18px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.card-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg,#2348a6,#5f2dbe);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.why-card h3 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    color: #f8fbff;
}

.why-card p {
    margin: 0;
    color: rgba(230,240,255,0.8);
    font-size: 0.95rem;
}

.why-cards .btn-secondary { margin-top: 10px; }

/* --- Testimonials Section --- */
.testimonials {
    padding: 80px 0;
    background-color: #e9f2ff;
}

.testimonial-card-modern {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-card-modern .quote {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.testimonial-card-modern .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-card-modern .author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.testimonial-card-modern .author h4 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-card-modern .author span {
    color: var(--gray-color);
}

/* --- News / Blog Section --- */
.news-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.news-section h2 {
    text-align: center;
    margin-bottom: 0.25rem;
}

.news-section .section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: #f8fafc;
    border-radius: 0; /* sharp corners as requested */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16,24,40,0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(16,24,40,0.12);
}

.news-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* place the image at the bottom visually */
.news-card { position: relative; }
.news-body { order: 1; }
.news-image { order: 2; }

/* red bottom border layer */
.news-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background: #d9302c; /* red accent */
}

.news-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.news-date {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.news-title {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-color);
}

.news-excerpt {
    color: #475569;
    flex-grow: 1;
}

.news-card .learn-more {
    margin-top: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .news-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* New Why Regoora - Modern split layout */
.why-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, #071026 0%, #081226 100%);
    color: #eaf2ff;
}

.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.why-left h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle { color: rgba(234,242,255,0.85); margin-bottom: 1.25rem; }

.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.fi-icon { width: 52px; height: 52px; border-radius: 10px; background: linear-gradient(135deg,#ff5a5f,#ff7a7f); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; flex-shrink: 0; }
.fi-content h3 { margin: 0 0 6px 0; font-size: 1.02rem; color: #fff; }
.fi-content p { margin: 0; color: rgba(234,242,255,0.85); font-size: 0.95rem; }

.why-cta { margin-top: 1.25rem; display: flex; gap: 0.75rem; }

.why-right .visual-wrap { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(2,6,23,0.6); }
.why-right img { width: 100%; height: 100%; object-fit: cover; display: block; }

.stat-badges { position: absolute; left: 16px; bottom: 16px; display: flex; gap: 10px; }
.stat { background: rgba(255,255,255,0.06); color: #fff; padding: 8px 12px; border-radius: 8px; display: flex; flex-direction: column; align-items: center; font-weight: 700; min-width: 72px; }
.stat span { font-weight: 500; font-size: 0.8rem; color: rgba(234,242,255,0.85); margin-top: 4px; }

@media (max-width: 992px) {
    .why-split { grid-template-columns: 1fr; }
    .stat-badges { left: 12px; bottom: 12px; gap: 8px; }
}

/* Floating Chat Widget */
.chat-widget { position: fixed; right: 24px; bottom: 24px; z-index: 2000; font-family: var(--font-family); }
.chat-toggle { display: flex; align-items: center; gap: 10px; background: linear-gradient(135deg,#ff5a5f,#ff7a7f); color: #fff; border: none; padding: 10px 14px; border-radius: 28px; box-shadow: 0 8px 24px rgba(2,6,23,0.25); cursor: pointer; }
.chat-toggle i { font-size: 1.05rem; }
.chat-toggle .chat-label { font-weight: 700; text-transform: none; }

.chat-panel { position: absolute; right: 0; bottom: 60px; width: 320px; max-width: calc(100vw - 48px); background: #fff; color: #111; border-radius: 8px; box-shadow: 0 20px 50px rgba(2,6,23,0.35); overflow: hidden; transform: translateY(10px) scale(0.98); opacity: 0; pointer-events: none; transition: all 180ms ease; }
.chat-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.chat-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-bottom: 1px solid #eee; background: linear-gradient(90deg,#ffffff,#f7fbff); }
.chat-title { font-weight: 700; color: #0b1220; display:flex; gap:8px; align-items:center; }
.chat-close { background: transparent; border: none; color: #333; font-size: 1rem; cursor: pointer; }
.chat-body { padding: 14px; }
.call-sales { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.call-icon { width: 44px; height: 44px; border-radius: 8px; background: #f8f9fb; display:flex; align-items:center; justify-content:center; color:#c0392b; border:1px solid #fdecea; }
.call-info .call-label { font-size: 0.85rem; color:#7b8794; }
.call-number { font-weight: 700; color:#111; font-size: 1.05rem; display:block; margin-top: 4px; }
.country-numbers { display:block; font-size:0.88rem; color:#2b6cb0; text-decoration: underline; }

@media (max-width: 480px) {
    .chat-widget { right: 12px; bottom: 12px; }
    .chat-panel { width: 280px; bottom: 56px; }
    .chat-toggle .chat-label { display: none; }
}

