/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    background:#ffffff;
    color:#222;
}

img{
    max-width:100%;
    height:auto;
}

html{
    scroll-behavior: smooth;
}

/* NAVBAR */
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 80px;
    background:#ffffff;

    border-bottom:1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}



.logo img{
    height:50px;
    width:auto;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:30px;
}

.navbar ul li a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:0.3s;
}

.navbar ul li a:hover{
    color:#0066ff;
}

/* HERO */
.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px;
    min-height:80vh;
    background-image:url('https://www.enveil.com/wp-content/uploads/2024/01/dots.png');
    background-repeat:no-repeat;
    background-position:center;
    background-size:56%;
    background-position:100% center;
}

.hero .left{
    flex:1;
    padding-right:40px;
}

.hero .right{
    flex:1;
    text-align:center;
    flex:1;
    text-align:center;
    /* padding:50px; */
}

.hero h1{
    font-size:60px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    color:#666;
    margin-bottom:30px;
}

.hero button{
    background:#0066ff;
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:5px;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
}

.hero button:hover{
    opacity:0.9;
}

.hero img{
    max-width:500px;
}

/* PARTNERS */
.partners{
    padding:60px 80px;
    text-align:center;
}

.card {
    background-image: linear-gradient(27deg, #003fab, #042664);
}

.partners h2{
    margin-bottom:40px;
}

.partner-logos{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:40px;
    padding-bottom: 20px;
}

.partner-logos img{
    height:40px;
}

/* CONTENT SECTION */
.section{
    padding:80px;
}

.section h2{
    margin-bottom:20px;
    font-size:36px;
}

.section p{
    color:#666;
    font-size:18px;
}

/* BUTTONS */
.btn{
    display:inline-block;
    background:#0066ff;
    color:#fff;
    padding:12px 25px;
    border-radius:5px;
    text-decoration:none;
}

.btn:hover{
    opacity:0.9;
}

/* FOOTER */
footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:30px;
    /* margin-top:50px; */
}

/* TABLET */
@media screen and (max-width:992px){

    .navbar{
        padding:20px 40px;
    }

    .hero{
        padding:50px 40px;
    }

    .hero h1{
        font-size:45px;
    }

}

/* MOBILE */
@media screen and (max-width:768px){

    .navbar{
        /* flex-direction:column; */
        gap:20px;
        padding:20px;
    }

    .navbar ul{
        /* flex-direction:column; */
        gap:15px;
        text-align:center;
    }

    .hero{
        /* flex-direction:column; */
        text-align:center;
        padding:30px 20px;
    }

    .hero .left{
        padding-right:0;
    }

    .hero h1{
        font-size:32px;
    }

    .hero p{
        font-size:16px;
    }

    .hero img{
        margin-top:30px;
        max-width:300px;
    }

    .section{
        padding:40px 20px;
    }

    .partners{
        padding:40px 20px;
    }

}

.partners{
    padding:60px 80px;
    /* background:#ffffff; */
}

.partner-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.partner-logos img{
    height:40px;
    width:auto;
    opacity:0.8;
    transition:0.3s;
}

.partner-logos img:hover{
    opacity:1;
}

@media(max-width:768px){

    .partners{
        padding:40px 20px;
    }

    .partner-logos{
        gap:30px;
    }

    .partner-logos img{
        height:30px;
    }

}

@media(max-width:480px){

    .partners{
        padding:30px 15px;
    }

    .partner-logos{
        gap:20px;
    }

    .partner-logos img{
        height:24px;
    }

}

/* SMALL MOBILE */
@media screen and (max-width:480px){

    .hero h1{
        font-size:28px;
        margin-top: 127px;
        margin-bottom: 35px;
    }

    .hero p{
        font-size:15px;
    }

    .hero button{
        width:100%;
    }

}

@media screen and (max-width:768px){

    .partner-logos{
        gap:25px;
    }

    .partner-logos img{
        height:20px;
    }

}

.hero .right img{
    max-width:500px;
    position:relative;
    z-index:2;
}


@media screen and (max-width:768px){

     .hero{
        justify-content:center;
        text-align:center;
        display: contents;
    }

    .hero .right{
        display:none;
    }

    .hero .left{
        width:100%;
        flex:unset;
        margin-bottom: 25px;
    }

}

.opportunities {
    padding: 80px 10%;
    background: #f7f7f7;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #0d1b3e;
}

.section-header p {
    max-width: 1000px;
    line-height: 1.8;
    color: #555;
}

@media(max-width:768px){

    .section-header{
        margin-bottom:40px;
        text-align:center;
    }

    .section-header h2{
        font-size:36px;
        margin-bottom:15px;
    }

    .section-header p{
        font-size:16px;
        line-height:1.7;
    }

}

@media(max-width:480px){

    .partners{
        padding:30px 15px;
    }

    .partner-logos{
        gap:20px;
        justify-content:center;
    }

    .partner-logos img{
        max-width:100px;
    }

}

@media(max-width:768px){

    .partner-logos{
        /* gap:30px; */
        /* margin-bottom:25px; */
    }

    .partner-logos img{
        max-width:75px;
    }

}

@media(max-width:480px){

    .section-header{
        margin-bottom:30px;
    }

    .section-header h2{
        font-size:28px;
    }

    .section-header p{
        font-size:14px;
        line-height:1.6;
    }

}

.verticals-grid {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.verticals-left {
    flex: 1;
}

.vertical-item {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #002d72;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vertical-item h3 {
    margin-bottom: 10px;
    color: #111;
}

.vertical-item p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.vertical-item a {
    color: #003b8f;
    text-decoration: none;
    font-weight: 600;
}

.verticals-right {
    width: 420px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.box {
    height: 180px;
    border-radius: 20px;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #888;
}

.box.active {
    background: #00459e;
    color: white;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .verticals-grid {
        flex-direction: column;
    }

    .verticals-right {
        width: 100%;
    }
}

.footer {
    background: linear-gradient(
        135deg,
        #002d72,
        #012f7d,
        #00338d
    );
    color: white;
    padding: 70px 10% 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.footer-left {
    flex: 2;
}

.footer-logo {
    display: flex;
    justify-content: left;
    width: 140px;
    margin-bottom: 25px;
}

.footer-left p {
    line-height: 1.8;
    font-size: 17px;
    max-width: 800px;
    text-align: left;
}

.footer-right {
    display: flex;
    align-items: flex-end;
}

.footer-right ul {
    list-style: none;
    text-align: right;
}

.footer-right li {
    margin-bottom: 22px;
}

.footer-right a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.footer-right a:hover {
    opacity: .8;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.15);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: white;
    color: #002d72;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
}

@media (max-width: 900px) {

    .footer-container {
        flex-direction: column;
    }

    .footer-right ul {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* =========================
   LEADERSHIP SECTION
========================= */

.leadership-section {
    background: #f5f5f5;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
}

.section-title {
    text-align: center;
    font-size: 52px;
    margin-bottom: 60px;
    color: #111;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.leader-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.leader-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 25px;
}

.leader-card span {
    display: block;
    font-size: 18px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 20px;
}

.leader-card h3 {
    font-size: 24px;
    color: #222;
    line-height: 1.4;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f2f2f2;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #002b7f;
    color: #fff;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1200px) {

    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .section-title {
        font-size: 34px;
        margin-bottom: 35px;
    }

    .leadership-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .leader-card {
        padding: 25px 15px;
    }

    .leader-card img {
        width: 140px;
        height: 140px;
    }

    .leader-card span {
        font-size: 15px;
    }

    .leader-card h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

}
/* =========================
   SPECTACULAR DOWNLOAD BUTTON
========================= */

.download-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 65px;
    margin: 0 auto 9px;
    border-radius: 60px;

    background: linear-gradient(135deg, #0047ff, #00bfff);
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(0, 71, 255, 0.35),
        0 0 20px rgba(0, 191, 255, 0.25);

    overflow: hidden;
    transition: all 0.35s ease;
    animation: pulseGlow 2s infinite;
}

/* SHINE EFFECT */
.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;

    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);

    transition: 0.8s;
}

.download-btn:hover::before {
    left: 130%;
}

/* HOVER */
.download-btn:hover {
    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 15px 35px rgba(0, 71, 255, 0.45),
        0 0 35px rgba(0, 191, 255, 0.45);
}

/* ACTIVE */
.download-btn:active {
    transform: scale(0.96);
}

/* GLOW ANIMATION */
@keyframes pulseGlow {

    0% {
        box-shadow:
            0 10px 25px rgba(0, 71, 255, 0.35),
            0 0 15px rgba(0, 191, 255, 0.20);
    }

    50% {
        box-shadow:
            0 15px 35px rgba(0, 71, 255, 0.55),
            0 0 35px rgba(0, 191, 255, 0.45);
    }

    100% {
        box-shadow:
            0 10px 25px rgba(0, 71, 255, 0.35),
            0 0 15px rgba(0, 191, 255, 0.20);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .download-btn {
        width: 300px;
        height: 56px;
        font-size: 16px;
        border-radius: 45px;
    }

}

@media (max-width: 480px) {

    .download-btn {
        width: 300px;
        height: 50px;
        font-size: 15px;
    }

}