/* =========================
   GLOBAL RESET
========================= */
@font-face {
    font-family: 'FONTSPRING DEMO - Roc Grotesk';
    src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FONTSPRING DEMO - Roc Grotesk';
    src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'FONTSPRING DEMO - Roc Grotesk';
    src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/css/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/css/fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/css/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/assets/css/fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}



/* =========================================================
   HEADER
========================================================= */

.header {
    width: 100%;
    height: 70px;
    background: #fff;
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000; /* keeps it above other content */
}

.header .container {
    max-width: 1350px;
    height: 70px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 45.782px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    transition: color 0.2s ease;
}

.nav-item:hover {
    color: #555555;
}

.arrow {
    font-size: 10px;
    margin-top: 1px;
}

.contact-btn {
    padding: 8px 24px;
    border: 2px solid #000000;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.00);
    color: #041527;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 19.05px;
    cursor: pointer;
}

.contact-btn:hover {
    background: #000000;
    color: #ffffff;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .header {
        padding: 0px 20px;
    }
}


/* Modal Style */
.image-modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  justify-content:center;
  align-items:center;
}

.image-modal img{
  max-width:90%;
  max-height:90%;
  border-radius:10px;
}

.close-btn{
  position:absolute;
  top:20px;
  right:30px;
  color:#fff;
  font-size:40px;
  cursor:pointer;
}

@media(max-width:991px){
    .convergence-box{ padding:60px 30px; border-radius:35px; }
    .convergence-title{ font-size:48px; }
    .convergence-subtitle{ font-size:16px; margin-bottom:45px; }
}

@media(max-width:767px){
    .convergence-section{ padding:20px 14px; }
    .convergence-box{ padding:45px 20px; border-radius:28px; }
    .convergence-title{ font-size:36px; line-height:1.15; letter-spacing:-1px; }
    .convergence-subtitle{ font-size:15px; margin-bottom:35px; }
}

@media(max-width:480px){
    .convergence-box{ padding:38px 16px; border-radius:22px; }
    .convergence-title{ font-size:29px; }
    .convergence-subtitle{ font-size:14px; line-height:1.7; }
}

/* =========================================================
   FOOTER SECTION
========================================================= */

.footer-section{
    border-radius: 50px 50px 0 0;
    width:100%;
    background:#000;
    color:#fff;
    overflow:hidden;
}

.footer-cta{
    position:relative;
    overflow:hidden;
    border-radius:34px 34px 0 0;
    min-height:430px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:90px 20px;
    background:#020202;
}

.footer-cta-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.footer-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.38);
}

.footer-cta-content{
    position:relative;
    z-index:2;
    width:100%;
}

.footer-heading{
    color: #FFF;
    text-align: center;
    font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -0.9px;
    margin-bottom: 20px;
}

.footer-description{
    font-family: Roboto;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom:40px;
}

.footer-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.green-btn{
    position: relative;
    overflow: hidden;

    border-radius: 50px;
    background: #0D1100;
    padding: 20px 20px;
font-family: Inter;
    color: #BEFF00;
    box-shadow: 0 0 10px 0 rgba(190, 255, 0, 0.40);
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    cursor: pointer;
    border: none;

    z-index: 1;
}

/* Smooth Animated Border */
.green-btn::before{
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50px;

    background: conic-gradient(
        from 00deg,
        transparent,
        #BEFF00,
        transparent,
        transparent
    );

    animation: rotateBorder 2.5s linear infinite;

    z-index: -2;
}

/* Inner Background */
.green-btn::after{
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 50px;
    background: #0D1100;
    z-index: -1;
}

/* Smooth Rotation */
@keyframes rotateBorder{
    100%{
        transform: rotate(360deg);
    }
}
.white-btn{
    font-family: Inter;
    border-radius: 50px;
    border: 1px solid #000;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.40);
    padding:20px 20px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    cursor: pointer;
}

.footer-main{
    background:#000;
    padding:58px 24px 0px;
}

.footer-wrapper{
    width:100%;
    max-width:1350px;
    margin:auto;
}

.footer-top{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    margin-bottom:20px;
}

.footer-left{
    overflow: visible;
}

.footer-logo{
    width:260px;
    margin-bottom:42px;
}

.company-text{
    font-family: Inter;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    margin-bottom:40px;
}

.company-description{
    font-family: Inter;
    color: #BDBDBD;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    margin-bottom:40px;
}

.trademark-text{
   font-family: Inter;
    width: 164%;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height:150%;
    letter-spacing: -0.16px;
    gap:10px;
    opacity: 0.8;
}

.footer-right{
    display:flex;
    flex-direction:column;
    min-height:100%;
}

.footer-links{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:70px;
}

.footer-links a{
    font-family: Inter;
    color: #FFF;
    font-variant-numeric: oldstyle-nums proportional-nums;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.2px;
    text-decoration: none;
}

.slash{
    stroke: rgba(255, 255, 255, 0.80);
    font-size: 25px;
    opacity: 0.5;
}

.contact-social-row{
    width:100%;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:50px;
    margin-bottom:200px;
}

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.footer-contact a{
    color: #BEFF00;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.follow-us{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
    padding-left:40px;
    border-left:1px solid rgba(255,255,255,0.14);
}

.follow-text{
    color: #FFF;
    text-align: right;
    font-family: Inter;
    font-size: 10px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.twitter-logo{
    width:22px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.mail-link{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.mail-link img{
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-bottom p{
    color: #FFF;
    font-variant-numeric: oldstyle-nums proportional-nums;
    font-family: Inter;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    opacity: 0.8;
}

@media(max-width:1024px){
    .footer-heading{ font-size:46px; }
    .footer-top{ grid-template-columns:1fr; }
    .footer-left{ border-right:none; padding-right:0; }
    .footer-right{ width:100%; }
    .contact-social-row{ justify-content:flex-start; }
}

@media(max-width:768px){
    .footer-cta{ border-radius:24px 24px 0 0; min-height:auto; padding:70px 18px; }
    .footer-heading{ font-size:34px; line-height:115%; letter-spacing:-1px; }
    .footer-description{ font-size:15px; line-height:28px; }
    .footer-buttons{ flex-direction:column; }
    .green-btn, .white-btn{ width:100%; max-width:350px; }
    .footer-main{ padding:48px 18px 30px; }
    .footer-logo{ width:210px; margin-bottom:32px; }
    .footer-links{ flex-direction:column; align-items:flex-start; gap:10px; margin-bottom:42px; }
    .slash{ display:none; }
    .contact-social-row{ flex-direction:row; justify-content:space-between; gap:24px; margin-bottom:70px; }
    .follow-us{ padding-left:24px; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; gap:10px; }
    .trademark-text{ width:100%; }
}
/* =========================================================
   HEADER DROPDOWN NAV
========================================================= */

.nav-item {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    min-width: 220px;
    z-index: 2000;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #041527;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #000;
}
