   /*GENERAL*/
   *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:Arial, sans-serif;
    }

    body{
      background:#ffffff;
      color:#4f4f4f;
    }

    /* NAVBAR */

    nav{
      width:100%;
      background:white;
      display:flex;
      justify-content:space-between;
      align-items:justify;
      padding:18px 90px;
      box-shadow:0 2px 10px rgba(0,0,0,0.05);
      position:sticky;
      top:0;
      z-index:2000;
    }

    /* EMPTY LOGO */

 .logo{
    width:350px;
    height:60px;
    margin-left:-50px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.logo img{
    width:100%;
    height:auto;
    object-fit:contain;
    margin-top:30px;
}
    /* NAV TABS */

  .nav-links{
    display:flex;
    gap:50px;
    padding-top: 15px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-size:16px;
    position:relative;
    padding-bottom:1px;
}

/* UNDERLINE */
.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:2px;
    background:black;
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/* ACTIVE TAB */
.nav-links button.active::after{
  width: 100%;
}

.nav-links button.active{
  color: #000000;
}
 .active{
color:#000000;
    }
/*HOME*/

.hero{
      height:85vh;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:left;
      text-align:left;
      padding:20px;
      background:linear-gradient(to right,#feffff,#f9faff);
    }

    .hero h1{
      font-size:60px;
      margin-bottom:20px;
      color:#15437e;
      font-style: italic;
      font-family:Georgia, 'Times New Roman', Times, serif;
      font-weight:200;
      }

/*About Us*/
.about{
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:left;
      text-align:left;
      padding:20px;
      background:linear-gradient(to right,#feffff,#f9faff);
}
.about h1{
      padding-top: 20px;
      font-size:60px;
      margin-bottom:20px;
      color:#2d2d2d;
      font-style: italic;
      font-family:Georgia, 'Times New Roman', Times, serif;
      font-weight:200;
}
.about p{
  height:5vh;
}

/*FOOTER*/
 footer{
      text-align:center;
      padding:25px;
      color:#777;
      margin-top:40px;
    }
  
/*CONTACT US*/

.contact-section{
    background:#fffdfd;
    padding:70px 10%;
    text-align:center;

   }

.contact-section h1{
    font-size:35px;
    color:#243c6b;
    font-weight:200;
}

.underline{
    width:200px;
    height:3px;
    background:#084b7a;
    margin:15px auto 70px;
}

.contact-container{
    display:flex;
    justify-content:space-between;
    gap:60px;
}

.contact-box{
    flex:1;
}

.contact-box h2{
    font-size:30px;
    font-family:Arial, Helvetica, sans-serif;
    margin-bottom:40px;
    font-weight: 100;
}

.contact-box h3{
    font-size:25px;
    margin-top: 15px;
    margin-bottom:15px;
    color:#44516d;
    font-weight: 100;
}

.contact-box p{
    font-size:18px;
    line-height:1.8;
    color:#44516d;
}

.location{
    font-size:50px;
    color:#094e8e;
    margin-bottom:30px;
}

.phone{
    font-size:50px;
    color:#094e8e;
    margin-bottom:30px;
}

.mail{
    font-size:50px;
    color:#094e8e;
    margin-bottom:30px;
}

.socials-section{
    background:#ffffff;
    padding:70px 10%;  
   
}

.socials h1{
  font-size: 35px;
}

.social-icons{
    display: flex;
    width:100%;
    justify-content:space-around; /* centers the whole row */
    align-items: center;
    gap: 35px;               /* equal spacing between icons */
    margin-top: 40px;
    flex-wrap: nowrap;       /* prevents them from going to next line */
    font-size: 20px}
.social-item{
    display:flex;
    flex-direction:column;   /* puts text below icon */
    align-items:center;
    gap:30px;
    padding-left: 10px;

}

.social-item p{
    font-size:22px;
    color:#0e4b91;
    padding-top: 10px;
}
.social-items p{
    font-size:22px;
    color:#0e4b91;
    padding-top: 30px;
}

.social-icons a{
    font-size: 70px;
    color: #0e4b91;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover{
    transform: translateY(-5px);
    color: #1d5ea8;
}

/* Mobile Responsive */

@media(max-width:768px){

.contact-container{
    flex-direction:column;
    gap:80px;
}

.contact-section h1{
    font-size:40px;
}

.contact-box h2{
    font-size:35px;
}

}
/*ABT US*/
.about-hero{
    padding:120px 10%;
    text-align:center;
    background:#f7f9fc;
}

.about-hero h1{
    font-size:60px;
    color:#173f73;
    margin-bottom:20px;
}

.about-hero p{
    font-size:22px;
    color:#555;
}

.about-content,
.philosophy,
.why-us,
.vision,
.cta{
    width:80%;
    margin:100px auto;
}

.about-content h2,
.philosophy h2,
.why-us h2,
.vision h2,
.cta h2{
    font-size:42px;
    color:#173f73;
    margin-bottom:25px;
}

.about-content p,
.vision p,
.cta p{
    font-size:19px;
    line-height:1.8;
    color:#555;
}

.cards{
    display:flex;
    gap:30px;
    margin-top:50px;
}

.card{
    flex:1;
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card h3{
    margin-bottom:15px;
    color:#173f73;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:40px;
    font-size:20px;
}

.cta{
    text-align:center;
}

.btn{
    display:inline-block;
    margin-top:35px;
    padding:15px 35px;
    background:#173f73;
    color:white;
    text-decoration:none;
    border-radius:8px;
}

.btn:hover{
    background:#24589c;
}
.team{
    padding:100px 8%;
    text-align:center;
    background:#fafafa;
}

.team h2{
    font-size:48px;
    color:#173f73;
    font-weight:400;
    margin-bottom:15px;
}

.team-subtitle{
    color:#666;
    font-size:18px;
    margin-bottom:60px;
}

.team-container{
    display:flex;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
}

.team-member{
    width:240px;
    height:240px;
    transition:0.3s ease;
}

.team-member:hover{
    transform:translateY(-8px);
}

.team-member img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:0px;
    }

.team-member h3{
    font-size:24px;
    color:#173f73;
    margin-bottom:8px;
}

.team-member p{
    font-size:17px;
    color:#666;
    line-height:1.5;
}
/*COUNTER*/
.clients-served{
    background-color:#173f73;
    padding:50px 120px 60px 100px;
}
.clients-served h2{
    color: white;
    font-size:70px;

}
.clients-served p {
    color:white;
    padding-top:20px;
    font-size:20px;
}
.short-info{
    flex:2;
}
.short-info p{
    font-size:19px;
    line-height:1.8;
    color:#f2f2f2;
    max-width:700px;
}

/*PRODUCTS*/
/* ===========================
        PRODUCTS HERO
=========================== */

.products-hero{
    width:100%;
    min-height:90vh;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:90px 8%;
    background:#f7f9fc;

    gap:70px;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-right img{
    width:100%;
    max-width:620px;
}

.hero-subtitle{

    color:#2b9db5;
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:20px;
    font-size:15px;

}


.hero-left h1{

    font-family:Arial, sans-serif;
    font-size:55px;
    color:#123d78;
    line-height:1.1;
    margin-bottom:30px;

}

.hero-text{

    font-size:18px;
    color:#555;
    line-height:1.8;
    width:90%;
    margin-bottom:45px;

}

.hero-btn{

    display:inline-flex;
    align-items:center;
    gap:12px;

    background:#123d78;
    color:white;

    text-decoration:none;

    padding:18px 35px;

    border-radius:12px;

    transition:.35s;

}

.hero-btn:hover{

    background:#0e2f5b;

    transform:translateY(-5px);

}
/*==============================
      PRODUCTS SECTION
==============================*/

.products-section{

    padding:100px 8%;

    background:white;

}

.section-heading{

    text-align:center;
    margin-bottom:70px;

}

.section-heading h2{

    font-size:46px;

    color:#123d78;

    margin-bottom:15px;

    font-family:"Playfair Display",serif;

}

.section-heading p{

    color:#777;

    font-size:18px;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.product-card{

    background:white;

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.icon-circle{

    width:95px;

    height:95px;

    background:#eef5fd;

    border-radius:50%;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:28px;

}

.icon-circle i{

    font-size:40px;

    color:#123d78;

}

.product-card h3{

    color:#123d78;

    font-size:28px;

    margin-bottom:18px;

    font-family:"Playfair Display",serif;

}

.product-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.product-card a{

    text-decoration:none;

    color:#2b9db5;

    font-weight:600;

}

.product-card a i{

    margin-left:6px;

}

/*NCDS*/
.product-detail{
    padding:100px 8%;
    background:#f8faff;
}

.product-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    flex-wrap:wrap;
}

.product-text{
    flex:1;
    min-width:450px;
}

.product-text h5{
    color:#1f4f95;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.product-text h1{
    font-size:52px;
    color:#1f4f95;
    margin-bottom:25px;
}

.product-text p{
    font-size:19px;
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.product-text h2{
    margin:30px 0 15px;
    color:#1f4f95;
}

.product-text ul{
    margin-left:20px;
}

.product-text li{
    margin:12px 0;
    font-size:18px;
}

.product-image{
    flex:1;
    text-align:justify;
     margin-top: -250px;
    
}

.product-image img{
    width:100%;
    max-width:500px;
    
}

.cta-btn{
    display:inline-block;
    margin-top:40px;
    padding:15px 35px;
    background:#1f4f95;
    color:white;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.cta-btn:hover{
    background:#14386c;
}
.home-img{
    flex:1;
    display:flex;
    justify-content:right;
    align-items:right;
    margin-top:-510px;
}
.home-img img{
    width:100%;
    max-width:500px;
}
.clients-served{
    margin-top:100px;
}
/* Platforms Section */

.platforms-section{
    padding:80px 8%;
    background:#f8fbff;
}

.platforms-container{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.platforms-container h2{
    font-size:2.2rem;
    color:#143c63;
    margin-bottom:15px;
}

.platforms-container p{
    color:#6d7d8d;
    max-width:650px;
    margin:0 auto 50px;
    line-height:1.7;
}

.platforms-grid{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.platform-card{
    width:240px;
    background:white;
    border-radius:18px;
    padding:35px 20px;
    text-decoration:none;
    color:#143c63;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.3s;
}

.platform-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.platform-card img{
    width:140px;
    height:70px;
    object-fit:contain;
    margin-bottom:18px;
}

.platform-card span{
    font-size:18px;
    font-weight:600;
}