
/* 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(0, 0, 0, 0.35); 
    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 */

}

.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: '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; 
}

/*Email clickable decoration*/
.email a, .contact-email a {
    text-decoration: none;
    color: inherit; /* uses parent color */
}


/* Hide header when scrolling */
.main-header.hide {
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

/* Smooth show */
.main-header {
    transition: transform 0.4s ease;
}

/* 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;
    }
}



/* ================= ABOUT HERO ================= */

.about-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('Images/About\ us\ \(1\).jpg');  /* change to your image */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* DARK OVERLAY FOR READABILITY */
.about-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);  /* same hero overlay style */
    z-index: 0;
}

/* RIGHT SIDE CONTENT */
.about-hero-content {
    position: absolute;
    top: 150px;    /* sits just below header */
    right: 60px;
    width: 420px;
    color: #fff;
    z-index: 2;
}

.about-desc {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* BOTTOM TITLE */
.about-title {
    position: absolute;
    bottom: 60px;
    left: 60px;
    font-size: 120px;
    font-weight: 800;
    color: #fff;
    z-index: 2;
    font-family: 'Oswald', sans-serif;

    /* SAME SHADOW AS HOME PAGE */
    text-shadow: 2px 12px 4px rgba(0,0,0,0.25);
}

/* ================= RESPONSIVE ================= */

/* TABLETS */
@media (max-width: 992px) {
    .about-hero-content {
        right: 30px;
        width: 340px;
    }

    .about-title {
        font-size: 90px;
        left: 30px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .about-hero-content {
        position: absolute;
        top: 120px;          /* moved DOWN a bit */
        right: 0;
        left: 0;
        margin: 0 auto;
        width: 85%;
        text-align: center;
    }

    .about-desc {
        font-size: 16px;
        line-height: 1.5;
    }

    .about-title {
        font-size: 52px;
        left: 0;
        width: 100%;
        text-align: center;

        bottom: 120px;       /* moved UP — reduces big gap */
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .about-hero-content {
        top: 110px;          /* move description slightly down */
    }

    .about-title {
        font-size: 44px;
        bottom: 100px;       /* closer to description */
    }
}


/*Our Story*/

/* ===================== OUR STORY SECTION ===================== */

.story-section {
    width: 100%;
    padding: 100px 60px;
    display: flex;
    justify-content: center;
    background: #fff;
    
    background-image: url('Images/Satellite\ bg.svg');
    background-size: cover;        /* fills section without distortion */
    background-position: center;   /* centers image */
    background-repeat: no-repeat;
}

.story-card {
    background: #f3f2ee; /* light grey like your design */
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 40px;
    padding: 60px;
    gap: 60px;
}

/* LEFT CONTENT */
.story-left {
    flex: 1;
}

.story-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}


.story-desc {
    font-size: 18px;
    line-height: 1.7;
    max-width: 460px;
}

/* RIGHT IMAGE */
.story-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-right img {
    width: 100%;
    max-width: 600px;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
}

/* ===================== RESPONSIVE ===================== */

/* TABLET */
@media (max-width: 992px) {
    .story-card {
        padding: 40px;
    }

    .story-title {
        font-size: 40px;
    }

    .story-desc {
        font-size: 16px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .story-section {
        padding: 60px 20px;
    }

    .story-card {
        flex-direction: column;       /* stack vertically */
        text-align: left;
        padding: 40px 30px;
    }

    .story-left {
        width: 100%;
    }

    .story-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .story-desc {
        font-size: 16px;
        margin-bottom: 30px; /* GAP BEFORE IMAGE */
    }

    .story-right img {
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .story-card {
        padding: 30px 20px;
    }

    .story-title {
        font-size: 28px;
    }
}



/* Fact */

.keyfactor-section {
    width: 100%;
    padding: 100px 80px;
    background: #fff;

    background-image: url('Images/Satellite\ bg.svg');
    background-size: cover;        /* fills section without distortion */
    background-position: center;   /* centers image */
    background-repeat: no-repeat;
}

/* HEADER RIGHT SIDE */
.keyfactor-header {
    max-width: 500px;
    margin-left: auto;
    text-align: left;
    margin-bottom: 60px;
}

.keyfactor-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    font-family: 'Oswald', sans-serif;
}

.keyfactor-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-top: 12px;
}

/* CARDS GRID */
.keyfactor-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CARD */
.k-card {
    background: #000;
    width: 330px;
    height: 260px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.k-number {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.k-label {
    font-size: 16px;
    color: #c1c1c1;
    margin-top: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
    .keyfactor-section {
        padding: 60px 30px;
    }

    .keyfactor-header {
        margin-left: 0;
        text-align: left;
        margin-bottom: 40px;
    }

    .keyfactor-cards {
        flex-direction: column;
        gap: 20px;
    }

    .k-card {
        width: 100%;
        height: 220px;
    }

    .k-number {
        font-size: 62px;
    }
}

@media (max-width: 480px) {
    .keyfactor-title {
        font-size: 32px;
    }
}



/*Team*/
/* SECTION */
.team-section {
    background: #fff;
    padding: 100px 60px;

    background-image: url('Images/Satellite\ bg.svg');
    background-size: cover;        /* fills section without distortion */
    background-position: center;   /* centers image */
    background-repeat: no-repeat;
}

/* HEADER */
.team-header {
    max-width: 520px;
    margin-bottom: 60px;
}

.team-title {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
}

.team-desc {
    font-size: 18px;
    color: #444;
    margin-top: 10px;
    line-height: 1.6;
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Featured top member */
.team-featured {
    grid-column: 1 / -1;          /* span all 3 columns */
    display: flex;
    justify-content: center;      /* center horizontally */
}

/* TEAM CARD */
.team-card {
    text-decoration: none;
    background: transparent;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s ease;
    cursor: pointer;

    /* FIXED HEIGHT so content can center properly */
    height: 500px;

    /* center the block vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-card:hover {
    background: #f3f3f3;
}

/* INNER WRAPPER → controls layout */
.team-inner {
    display: flex;
    flex-direction: column;
    align-items: center;  /* left align text */
}

/* IMAGE — fixed 360x380 */
.team-card img {
    width: 360px;
    height: 380px;
    object-fit: cover;
   
}

/* TEXT BELOW */
.team-name {
    font-size: 20px;
    font-weight: 600;
    margin-top: 14px;
    color: #000;
}

.team-role {
    font-size: 15px;
    color: #777;
    margin-top: 1px;
}

.team-name,
.team-role {
    width: 100%;
    text-align: center;      /* text stays left */
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

     .team-featured {
        grid-column: auto;
    }

    .team-card {
        height: auto; /* natural height on mobile */
        align-items: flex-start;
    }

    .team-card img {
        width: 100%;   /* full width on mobile */
        height: auto;  /* maintain ratio */
    }

    .team-section {
        padding: 60px 25px;
    }

    .team-title {
        font-size: 32px;
    }
}




















/*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 */
.team-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: 2px solid rgba(20, 136, 9, 1);
}

