/* Fonts */
body {
    font-family: 'Satoshi', sans-serif;
    background: #000;
    margin: 0;
    
}

html, body {
  overflow-x: hidden;
}


/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    /*background: transparent;*/
    /*
    background: rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(4px);*/
}

.header-inner {
    padding: 20px 60px;
}

.logo img {
    height: 45px;
}

/* Hamburger Icon */
.hamburger {
    width: 35px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 4px;
    background: #002C79;
    border-radius: 2px;
    transition: 0.4s;
}

/* Animate to X */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 80px 60px;
    transform: translateX(100%);
    transition: 0.6s ease;
    z-index: 999;


    overflow-y: auto;   /* allow scrolling */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iPhone */


    background-image: url('Images/Satellite\ black\ bg.svg');
    background-size: cover;        /* fills section without distortion */
    background-position: center;   /* centers image */
    background-repeat: no-repeat;

}

.menu-overlay.active {
    transform: translateX(0%);
}

/* Left side menu */
.menu-left ul {
    list-style: none;
    padding: 0;
}

.menu-left li {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.3s;
    /*font-family: 'Satoshi', sans-serif;*/
    font-family: 'Oswald', sans-serif;
}

.menu-left li span {
    margin-right: 10px;
    opacity: 0.4;
}

/* Hover effect */
.menu-left li:hover {
    color: #FF9933;
    transform: translateX(8px);
}

/* Right Side */
.menu-right {
    text-align: left;
}

.menu-right img {
    width: 350px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.email {
    font-size: 28px;
    font-weight: 700;
}

.address {
    font-size: 16px;
    opacity: 0.8;
}

.menu-left ul li a {
    text-decoration: none;
    color: inherit; 
}


/* Hide header when scrolling */
.main-header.hide {
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

/* Smooth show */
.main-header {
    transition: transform 0.4s ease;
}

/*Email clickable decoration*/
.email a, .contact-email a {
    text-decoration: none;
    color: inherit; /* uses parent color */
}


/* RESPONSIVE */
@media (max-width: 991px) {

    .menu-overlay {
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 40px;
    }

    .menu-right {
        width: 100%;
        margin-top: 30px;
        text-align: left;
    }

    .menu-right img {
        width: 100%;
    }

    .menu-left li {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .header-inner {
        padding: 15px 25px;
    }

    .menu-left li {
        font-size: 28px;
    }

    .hamburger {
        width: 30px;
    }
}




/*Hero Section*/


/* =============== HERO SECTION =============== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
/*
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('hero1.jpg'); 
    animation: heroFade 12s infinite;
    z-index: -2;
}*/

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: heroFade 12s infinite ease-in-out;
    z-index: -2;
    opacity: 1; /* needed for fade effect */
}


/* Dark overlay */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: -1;
}
/*
@keyframes heroFade {
    0%   { background-image: url('Images/sa.jpg'); }
    33%  { background-image: url('Images/S\ a.jpg'); }
    66%  { background-image: url('Images/S\ a\ 1.jpg'); }
    100% { background-image: url('Images/S\ a.jpg'); }
}
*/

@keyframes heroFade {
    0%   { background-image: url('Images/sa.jpg'); opacity: 1; }
    20%  { background-image: url('Images/sa.jpg'); opacity: 1; }  /* stay */
    25%  { opacity: 0; }  /* fade out */

    30%  { background-image: url('Images/S a.jpg'); opacity: 1; } /* fade in */
    50%  { background-image: url('Images/S a.jpg'); opacity: 1; } /* stay */
    55%  { opacity: 0; }  /* fade out */

    60%  { background-image: url('Images/S a 1.jpg'); opacity: 1; } /* fade in */
    80%  { background-image: url('Images/S a 1.jpg'); opacity: 1; } /* stay */
    85%  { opacity: 0; } /* fade out */

    100% { background-image: url('Images/sa.jpg'); opacity: 1; } /* start again */
}



.hero-inner {
    position: relative;
    height: 100%;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 100px;
}

/* Right side description */
.hero-right {
    max-width: 500px;
    text-align: left;
    align-self: flex-end;
    color: #fff;
    margin-bottom: 40px;

    position: relative;
    z-index: 3;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 16px;
}

/* Button */
.hero-btn {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 8px 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 0.3s ease;
    cursor: pointer;

    /* subtle background on hover */
    background-color: rgba(255, 255, 255, 0);
}

.hero-btn .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.hero-btn:hover {
    color: #FF9933;
    background-color: rgba(255, 255, 255, 0.12); /* soft highlight */
    padding-left: 10px; /* slight slide effect */
    border-bottom-color: #ffffff;
}

.hero-btn:hover .arrow {
    transform: translateX(6px);
}




/* HUGE TITLE */
.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 330px;
    font-weight: 800;
    color: #fff;
    line-height: 0.8;
    letter-spacing: 6px;
    margin: 0;
    margin-top: auto;
    max-width: 100%;
    word-wrap: break-word;

    text-align: center;
    width: 100%;
    margin: 0 auto;

     text-shadow: 2px 12px 4px rgba(0, 0, 0, 0.25);

     position: relative;
    z-index: 1;
    pointer-events: none; 
}

/* =============== RESPONSIVE =============== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 220px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 140px;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .hero-inner {
        padding: 0 30px;
        justify-content: center;
        align-items: center;
    }

    .hero-right {
        align-self: center;
        text-align: center;
    }

    .hero-title {
        font-size: 98px;
        margin-top: 20px;
    }

    .hero-desc {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 72px;
    }
}



/*Overview*/

/* ========== OVERVIEW SECTION ========== */

.overview-section {
    /*background: #000;*/
    width: 100%;
    padding: 100px 60px 0; /* top, sides, bottom = 0 (image handles height) */
    text-align: center;
    position: relative;

    background-image: url('Images/Satellite\ black\ bg.svg');
    background-size: cover;        /* fills section without distortion */
    background-position: center;   /* centers image */
    background-repeat: no-repeat;
}

/* Title */
.overview-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

/* Hover Underline Animation */
.overview-title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.overview-title:hover::after {
    width: 100%;
}

/* Description */
.overview-desc {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 24px;
    line-height: 1.6;
    color: #fff;
    opacity: 0.8;
    font-family: 'Satoshi', sans-serif;
    
}

/* SVG Image */
.overview-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ======= RESPONSIVE DESIGN ======= */

@media (max-width: 992px) {
    .overview-title {
        font-size: 40px;
    }
    .overview-desc {
        font-size: 20px;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .overview-section {
        padding: 80px 30px 0;
    }

    .overview-title {
        font-size: 32px;
    }
    .overview-desc {
        font-size: 18px;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .overview-title {
        font-size: 28px;
    }

    .overview-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }
}




/*Work*/

/* ====== SELECTED WORK SECTION ====== */

.work-section {
    background: #e8e6e1; /* light grey background */
    padding: 100px 60px;
    text-align: center;

    background-image: url('Images/Satellite\ bg.svg');
    background-size: cover;        /* fills section without distortion */
    background-position: center;   /* centers image */
    background-repeat: no-repeat;
}

/* Title */
.work-title {
    font-size: 52px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: #000;
    margin-bottom: 80px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

/* Title Hover Underline */
.work-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #000;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.work-title:hover::after {
    width: 100%;
}

/* GRID */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}
/* demo card*/
.work-link {
    text-decoration: none;
    color: inherit;
    display: block;
}


/* CARD */
/*
.work-card {
    background: #fff;
    width: 588px;
    height: 585px; 
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
}*/

.work-card {
    background: #fff;
    width: 100%;
    max-width: 588px;
    margin: 0 auto;
    height: 545px;
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
}
/* Staggered Layout */
.work-card:nth-child(2),
.work-card:nth-child(4) {
    margin-top: 20px; /* slight drop like Figma */
}

/* OFFSET second and fourth card */
.work-card-offset {
    margin-top: 80px;
    
}

/* IMAGE inside card */
.work-image {
    width: 100%;
    height: 350px; /* fixed height for images */
    overflow: hidden;
    margin-bottom: 24px;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* key line */
    transition: transform 0.4s ease;
}

/* Hover Zoom Effect */
.work-card:hover img {
    transform: scale(1.05);
}

/* Card Title */
.work-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
}

/* Card Description */
.work-card-desc {
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.5;
}


/* ====== RESPONSIVE ====== */

/* Tablet */
@media (max-width: 1024px) {
    .work-grid {
        gap: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .work-card {
    height: auto;              /* 🔑 remove fixed height */
    padding: 16px;
  }

  .work-image {
    height: 420px;             /* ⬆️ bigger image */
    margin-bottom: 16px;
  }

  .work-card-title {
    font-size: 20px;
  }

  .work-card-desc {
    font-size: 16px;
  }
}



/*Services*/

/* SECTION */
.service-section {
    background: #fff;
    padding: 40px 60px;

    background-image: url('Images/Satellite bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* TITLE */
.service-title {
    font-size: 52px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.service-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

.service-title:hover::after {
    width: 100%;
}

/* SERVICE CARD */
.service-card {
    width: 100%;
    height: 340px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    margin: 0;
    transition: 0.4s ease;
    cursor: pointer;

    position: relative;
    overflow: hidden;
    
}


/* DARK OVERLAY ON HOVER */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* adjust 0.35–0.55 if needed */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::after {
    opacity: 1;
}
.service-left,
.service-right {
    position: relative;
    z-index: 2;
}




.service-card::before {
    content: "";
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    opacity: 0; 
    position: absolute;
    width: 0;
    height: 0;
}
.service-card {
    background: #fff;
    transition: background-image 0.4s ease, filter 0.4s ease;
}

.service-card:hover {
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    filter: brightness(1.08);     /* tiny smooth effect (optional) */
    color: #fff;
}


/* HOVER → IMAGE BACKGROUND */
.service-card:hover {
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* LEFT SIDE (center vertically) */
.service-left {
    max-width: 600px;
}

.service-left h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.service-left p {
    font-size: 18px;
    line-height: 1.6;
}

/* RIGHT SIDE BUTTON */
.service-right {
    display: flex;
    align-items: center;

    position: absolute;
    bottom: 30px;
    right: 20px;
    z-index: 3;
}



.service-btn {
    width: 60px;
    height: 60px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    transition: 0.4s;
}
.service-btn {
    text-decoration: none;
    color: inherit;
}


/* BUTTON + TEXT on hover */
.service-card:hover .service-btn {
    background: #fff;
    border-color: transparent;
    color: #000;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .service-card {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        min-height: 420px; /* optional safety */
        padding-bottom: 90px; /* space for button */
        padding: 40px 20px;
        background-image: var(--bg-img) !important;
        background-size: cover;
        background-position: center;
        color: #fff !important;
        gap: 20px;

        margin-bottom: 24px;
    }
    .service-right {
        position: absolute;
        bottom: 24px;
        right: 20px;
    }

    .service-btn {
        background: #fff;
        border: none;
        color: #000;
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
    
    .service-card::after {
        opacity: 1;
    }
}

/*Client*/

.clients-section {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;

  background-image: url('Images/Satellite bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}
.clients-title {
  font-size: 52px;
  font-weight: 700;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  cursor: default;
}

/* underline */
.clients-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.35s ease;
}

/* hover effect */
.clients-title:hover::after {
  width: 100%;
}

/* mobile */
@media (max-width: 768px) {
  .clients-title {
    font-size: 30px;
  }
}


.marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scroll-left linear infinite;
}

.marquee.reverse .marquee-track {
  animation-name: scroll-right;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track img {
  height: 55px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.8;
}

/* KEYFRAMES */
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}





/* VALUES SECTION */

.values-section {
    display: flex;
    width: 100%;
    background: #fff;
    background-image: url('Images/Satellite bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* LEFT IMAGE */
.values-image {
    width: 400px;
    flex-shrink: 0;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT CONTENT */
.values-content {
    flex: 1;
    padding: 80px 60px;
}

.values-title {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;

    position: relative;
    display: inline-block;
    cursor: pointer;
}

.values-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.values-title:hover::after {
    width: 100%;
}

/* VALUE ITEMS */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Requested gap */
}

.value-item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.value-name {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    transition: 0.3s ease;
    font-family: 'Satoshi', sans-serif;
}

/* Hover turns orange */
.value-item:hover .value-name {
    color: #F57C00; /* Orange */
}

.value-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;

}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .values-section {
        flex-direction: column;
        padding: 0;
    }

    .values-image {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .values-image img {
        width: 100%;
        height: auto;        /* FULL WIDTH image */
        object-fit: cover;
        display: block;
    }

    .values-content {
        padding: 40px 24px;   /* Better mobile spacing */
        text-align: left;     /* LEFT ALIGN title + text */
    }

    .values-title {
        text-align: left;     /* Title left aligned */
    }

    .value-name {
        text-align: left;     /* Value title left aligned */
    }

    .value-desc {
        text-align: left;     /* Value description left aligned */
        display: block;       /* Normal paragraph */
        overflow: visible;
    }
}



/*Footer*/

/* ================= CONTACT + FOOTER SECTION ================= */

.contact-footer {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 100px 60px 0;


    background-image: url('Images/Satellite\ black\ bg.svg');
    background-size: cover;        /* fills section without distortion */
    background-position: center;   /* centers image */
    background-repeat: no-repeat;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
}

/* LEFT SIDE */
.contact-left {
    flex: 1;
}

.contact-logo {
    width: 280px;
    margin-bottom: 30px;
}

.contact-phone,
.contact-email {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    font-family: 'Oswald', sans-serif;;
}

/* RIGHT SIDE FORM */
.contact-right {
    flex: 1;
}

.contact-right form {
    width: 100%;
}

.contact-right label {
    font-size: 14px;
    opacity: 0.7;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 10px 0;
    margin-bottom: 30px;
    color: #fff;
    font-size: 16px;
}

.contact-right textarea {
    height: 90px;
    resize: none;
}

/* SUBMIT BUTTON SAME AS HERO */
.submit-btn {
    font-size: 18px;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 8px 4px;
    display: inline-flex;
    gap: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: 'Oswald', sans-serif;
}

.submit-btn .arrow {
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    padding-left: 10px;
    background: rgba(255,255,255,0.15);
    color: #FF9933;
}

.submit-btn:hover .arrow {
    transform: translateX(6px);
}

/* ================= BOTTOM FOOTER BAR ================= */

.footer-bottom {
    margin-top: 100px;
    background: #1a1a1a;
    padding: 60px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
    color: #FF9933;
}

.footer-address {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.7;
    
}

.footer-social {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 20px;
}

.footer-copy {
    font-size: 12px;
    opacity: 0.5;
    margin-top: 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .contact-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 10px;
    }

    .contact-phone,
    .contact-email {
        font-size: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}


/*Footer Slide up*/

/* Important: FAQ remains normal */
.faq-section {
  position: relative;
  z-index: 1;
}

/* Footer stays normal but will scroll up over FAQ */
.contact-footer {
  position: relative;
  z-index: 2;
}







/* Cursor*/
/* REMOVE DEFAULT CURSOR */
html, body {
    cursor: none !important;
}

/* DOT CURSOR */
#cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #FF9933;
    pointer-events: none;
    z-index: 2147483647 !important;  /* MAX SAFE Z-INDEX */
    transform: translate(-50%, -50%);
    mix-blend-mode: normal;
    visibility: visible !important;
}
/* INNER DOT (already exists) */
#cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: #FF9933;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* OUTER RING */
#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(20, 136, 9, 1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

/* Hover effect for links */
a:hover ~ #cursor-ring,
button:hover ~ #cursor-ring,
.menu-left li:hover ~ #cursor-ring {
    width: 50px;
    height: 50px;
    border-color: rgba(20, 136, 9, 1);
}

