* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 90px;
}

/* Navigation Bar */
.navbar {
    background: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    margin: 0 auto;
    padding: 10px 20px 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo - Left Side */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 80px;
    width: 150px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.logo a:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(2px 2px 8px rgba(255, 215, 0, 0.5));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;

    /* ⭐ ADDED → Ensures menu stays right */
    margin-left: auto;
}

.nav-item {
    position: relative;
}

/* Dropdown Menu for Home1 */
.home-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    list-style: none;
    padding: 10px 0;
    margin: 5px 0 0 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1001;
}

.home-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover {
    background: transparent;
    color: #ffd700;
    padding-left: 25px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    display: block;
    border-radius: 25px;
    background: transparent;
}

.nav-link:hover {
    background: transparent;
    color: #ffd700;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        height: auto;
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 70px;
        width: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        margin: 5px 20px;
        border-radius: 10px;
    }

    .nav-link:hover {
        background: transparent;
        color: #ffd700;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .home-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown-link {
        padding: 10px 40px;
        font-size: 14px;
    }
}
.nav-logo img {
    width: 140px;        /* bigger size for mobile */
    height: auto;
}

@media (min-width: 768px) {
    .nav-logo img {
        width: 180px;    /* normal size for tablet+ */
    }
}

@media (min-width: 1024px) {
    .nav-logo img {
        width: 200px;    /* normal size for desktop */
    }
}
/*hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh*/
:root {
    --bg: #f6f9fb;
    --white: #ffffff;
    --muted: #6b7280;
    --emerald-600: #059669;
    --emerald-400: #34D399;
    --glass: rgba(255, 255, 255, 0.06);
    --card-shadow: 0 12px 40px rgba(2, 6, 23, 0.06);
    --radius: 12px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: Inter, Segoe UI, Arial, sans-serif;
    background: var(--bg);
    color: #0b1220
}

/* containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px
}

.section {
    padding: 64px 0
}
/* HERO */
.hero {
    position: relative;
    padding: 100px 0 150px;
    overflow: hidden;
    background: #0b372a;
    height: 100vh; /* deep emerald fallback so hero becomes visible */
}

/* Background Glow Pattern */
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.25; /* increased from 0.08 → now visible */
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 40%),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.10), transparent 50%),
        linear-gradient(135deg, rgba(5, 150, 105, 0.95), rgba(16, 185, 129, 0.95));
    filter: blur(40px); /* stronger glow */
}

/* Hero Content */
.hero-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 12px;
    backdrop-filter: blur(6px);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero-sub {
    max-width: 750px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
}

/* STORY */
.section--white {
    background: var(--white)
}

.grid {
    display: grid
}

.grid-2 {
    grid-template-columns: 1fr 1fr
}

.center-vert {
    align-items: center
}

.pill {
    display: inline-block;
    background: #E6F9F0;
    color: var(--emerald-600);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 14px
}

.story-text h2 {
    font-size: 28px;
    margin: 8px 0 12px
}

.story-text p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 12px
}

.img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--card-shadow)
}

.img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.decor {
    position: absolute;
    border-radius: 14px;
    opacity: 0.9
}

.decor-left {
    left: -30px;
    bottom: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0)
}

.decor-right {
    right: -20px;
    top: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFEDD5, #FED7AA)
}

.quote {
    background: #f3f9f6;
    padding: 18px;
    border-left: 4px solid var(--emerald-600);
    border-radius: 8px;
    margin-top: 18px
}

.quote footer {
    margin-top: 10px;
    color: var(--emerald-600);
    font-weight: 700
}

/* MISSION / VISION */
.section--muted {
    background: linear-gradient(90deg, #059669, #10b981);
    color: #fff
}

.card {
    background: rgba(255, 255, 255, 0.06);
    padding: 28px;
    border-radius: 14px;
    box-shadow: var(--card-shadow)
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.icon-emerald {
    background: rgba(255, 255, 255, 0.06);
    color: #34D399
}

.icon-orange {
    background: rgba(255, 255, 255, 0.06);
    color: #FB923C
}

.card h3 {
    margin: 0 0 8px;
    font-size: 20px
}

.card p {
    color: rgba(255, 255, 255, 0.9)
}

/* TIMELINE */
.section-head {
    text-align: center;
    margin-bottom: 30px
}

.section-head .badge {
    display: inline-block;
    background: #ECFDF5;
    color: #065F46;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700
}

.section-head h2 {
    margin: 10px 0;
    font-size: 28px
}

.muted {
    color: var(--muted)
}

.timeline {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #D1FAE5, #A7F3D0);
    border-radius: 4px;
    margin-left: 6px
}

@media (min-width:720px) {
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        margin-left: 0
    }
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.timeline-item {
    position: relative;
    padding-left: 60px
}

.timeline-item.reverse {
    padding-left: 60px
}

@media (min-width:720px) {
    .timeline-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 0
    }

    .timeline-item .timeline-content {
        width: 45%
    }

    .timeline-item.reverse .timeline-content {
        width: 45%
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: auto;
        text-align: right
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: auto;
        text-align: left
    }
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 12px;
    width: 18px;
    height: 18px;
    background: var(--emerald-600);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.12)
}

@media (min-width:720px) {
    .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
        top: 20px
    }
}

.timeline-year {
    font-weight: 800;
    color: var(--emerald-600);
    margin-bottom: 6px
}

.timeline-content h4 {
    margin: 0 0 6px;
    font-size: 18px
}

.timeline-content p {
    color: var(--muted)
}

/* VALUES */
.section--values {
    background: linear-gradient(90deg, #059669, #10b981);
    color: #fff;
    padding: 64px 0
}

.section-head.light .badge {
    background: rgba(255, 255, 255, 0.12);
    color: #fff
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.value-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 22px;
    border-radius: 12px;
    text-align: center
}
.light {
    color: #ffffff !important;
}

.value-icon {
    font-size: 28px;
    margin-bottom: 8px
}

/* TEAM */
.team-grid {
   display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
    overflow: visible; 
}

.team-card {
  
   background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform .3s;
}
.team-card img {
    width: 100%;
    height: 260px;    /* FIX: removes forced cropping */
    max-height: 220px;
    object-fit: cover;
    display: block;
}

.team-info {
    padding: 12px
}
.team-card:hover {
    transform: translateY(-6px);
}

.team-info h4 {
    margin: 6px 0;
    font-size: 18px;
    font-weight: 600;
}
.muted {
    color:white;
    font-size: 14px;
}

.team-info p {
    color: var(--muted);
    font-size: 14px
}

/* CTA */
.text-center {
    text-align: center
}

.cta-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    justify-content: center
}

.btn-primary {
    background: linear-gradient(90deg, #10b981, #059669);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700
}

.btn-outline {
    border: 2px solid #e6eef6;
    padding: 10px 18px;
    border-radius: 10px;
    color: #0b1220;
    text-decoration: none
}

/* FOOTER */
.footer {
    padding: 28px 0;
    text-align: center;
    color: var(--muted);
    font-size: 14px
}

/* REVEAL */
.reveal {
    opacity: 1;
    transform: none;
    transition: all .7s cubic-bezier(.2, .9, .3, 1);
}

.reveal.active {
    opacity: 1;
    transform: none;
}

/* RESPONSIVE */
@media (max-width:980px) {
    .grid-2 {
        grid-template-columns: 1fr
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .timeline-line {
        left: 12px
    }

    .timeline-item {
        padding-left: 40px
    }
}

@media (max-width:560px) {
    .hero-title {
        font-size: 28px
    }

    .team-grid {
        grid-template-columns: 1fr
    }

    .timeline-line {
        left: 8px
    }

    .timeline-item {
        padding-left: 36px
    }
}


/*footer*/

.site-footer {
    background: linear-gradient(135deg, #0a0f24, #111b3b);
    color: #d9e4ff;
    padding: 70px 20px 35px;
    font-family: "Poppins", sans-serif;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* BRAND SECTION */
.footer-brand {
    flex: 1.6;
    min-width: 280px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b8c7e8;
    margin-bottom: 20px;
}

/* SUBSCRIBE SECTION */
.footer-subscribe {
    margin-top: 25px;
}

.subscribe-label {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
}

.subscribe-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid #39466a;
    background: #1a2547;
    color: white;
    outline: none;
    transition: 0.3s;
}

.subscribe-input:focus {
    border-color: #6c92ff;
}

.subscribe-button {
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #5e2bff, #3d94ff);
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 600;
}

.subscribe-button:hover {
    transform: scale(1.06);
    background: linear-gradient(135deg, #3a20ff, #2d7aff);
}

.subscribe-hint {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #93a3c7;
}

/* LINKS SECTION */
.footer-columns {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 35px;
    min-width: 250px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 1.15rem;
    position: relative;
}

.footer-column h3::after {
    content: "";
    width: 35px;
    height: 3px;
    background: #3b82ff;
    display: block;
    margin-top: 5px;
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #b5c6e4;
    text-decoration: none;
    transition: 0.25s;
}

.footer-column a:hover {
    color: #fff;
    padding-left: 6px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 45px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom-left p {
    margin: 0;
    color: #92a3ca;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.footer-legal a {
    color: #b7cbff;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: #fff;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1b2647;
    padding: 10px;
    transition: 0.3s;
    filter: grayscale(30%);
}

.social-icon:hover {
    transform: scale(1.15);
    background: #3b82ff;
    filter: grayscale(0%);
    box-shadow: 0px 0px 12px rgba(59, 130, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-columns {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}
