*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

 body{
  font-family:'Poppins',sans-serif;

  background:
    linear-gradient(
      135deg,
      #040816 0%,
      #081120 35%,
      #0b1120 70%,
      #111827 100%
    );

  color:white;

  overflow-x:hidden;

  position:relative;
}
/* GLOBAL BACKGROUND GLOW */

body::before{
  content:'';

  position:fixed;

  top:-200px;
  left:-200px;

  width:500px;
  height:500px;

  background:#2563eb;

  opacity:0.12;

  filter:blur(140px);

  border-radius:50%;

  z-index:-1;
}

body::after{
  content:'';

  position:fixed;

  bottom:-250px;
  right:-250px;

  width:550px;
  height:550px;

  background:#7c3aed;

  opacity:0.12;

  filter:blur(150px);

  border-radius:50%;

  z-index:-1;
}

/* HEADER */

.header{
  width:100%;

  padding:22px 70px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  position:fixed;

  top:0;
  left:0;

  z-index:1000;

  background:rgba(4,8,22,0.55);

  backdrop-filter:blur(16px);

  border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo i{
  font-size:35px;
  color:#4da6ff;
}

.navbar{
  display:flex;
  gap:35px;
}

.navbar a{
  text-decoration:none;
  color:white;
  font-weight:500;
}

.nav-btn{
  padding:15px 25px;
  border-radius:14px;
  border:1px solid #4da6ff;
  background:transparent;
  color:white;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:140px 70px;
}

.hero-left{
  width:50%;
}

.hero-left h1{
  font-size:75px;
  line-height:1.1;
  margin:30px 0;
}

.hero-left span{
  color:#4da6ff;
}

.hero-left strong{
  background:linear-gradient(to right,#7b2cff,#4da6ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-left p{
  color:#b7c7df;
  font-size:20px;
  line-height:1.7;
}

.hero-right{
  width:45%;
}

.hero-right img{
  width:100%;

  border-radius:30px;

  border:1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 20px 60px rgba(37,99,235,0.25),
    0 10px 40px rgba(124,58,237,0.18);

  transition:0.4s ease;
}

/* HOVER EFFECT */

.hero-right img:hover{

  transform:
    translateY(-10px)
    scale(1.01);

  box-shadow:
    0 30px 80px rgba(37,99,235,0.35),
    0 15px 50px rgba(124,58,237,0.22);
}

.badge{
  display:inline-block;
  padding:12px 22px;
  border-radius:30px;
  background:#14203a;
  color:#4da6ff;
}

/* BUTTONS */

.hero-buttons{
  margin-top:40px;
  display:flex;
  gap:20px;
}

.primary-btn{
  padding:18px 35px;
  border:none;
  border-radius:15px;
  background:linear-gradient(135deg,#2f80ff,#8b5cf6);
  color:white;
  font-size:17px;
}

.secondary-btn{
  padding:18px 35px;
  border-radius:15px;
  border:1px solid #4da6ff;
  background:transparent;
  color:white;
}

/* PAGE BANNER */

.page-banner{
  padding:180px 70px 100px;
  text-align:center;
}

.page-banner h1{
  font-size:65px;
  margin-bottom:20px;
}

.page-banner p{
  color:#b9c6df;
  font-size:20px;
}

/* SERVICES */

.services-grid{
  width:90%;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  padding-bottom:100px;
}

.service-card{
  background:
    linear-gradient(
      145deg,
      rgba(17,24,39,0.95),
      rgba(15,23,42,0.85)
    );

  padding:40px;

  border-radius:24px;

  border:1px solid rgba(255,255,255,0.06);

  backdrop-filter:blur(16px);

  transition:0.35s ease;
}

/* HOVER */

.service-card:hover{

  transform:translateY(-10px);

  box-shadow:
    0 20px 50px rgba(37,99,235,0.18);

  border-color:rgba(77,166,255,0.3);
}

.service-card i{
  font-size:40px;
  color:#4da6ff;
  margin-bottom:20px;
}

/* ABOUT */

.about-section{
  width:80%;
  margin:auto;
  padding-bottom:100px;
}

.about-content{
  background:#10182c;
  padding:50px;
  border-radius:20px;
}

/* CONTACT */

.contact-section{
  width:50%;
  margin:auto;
  padding-bottom:100px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  padding:18px;
  background:#10182c;
  border:none;
  border-radius:12px;
  color:white;
}

.contact-form textarea{
  height:180px;
}

.contact-form button{
  padding:18px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg,#2f80ff,#8b5cf6);
  color:white;
}

/* FOOTER */

/* =========================
   PROFESSIONAL FOOTER
========================= */

.footer{
  position:relative;
  background:
    linear-gradient(
      135deg,
      #060816 0%,
      #0b1120 40%,
      #111827 100%
    );

  padding-top:90px;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,0.06);
}

/* GLOW EFFECT */

.footer::before{
  content:'';
  position:absolute;
  top:-120px;
  left:-120px;
  width:300px;
  height:300px;
  background:#2563eb;
  opacity:0.15;
  filter:blur(120px);
  border-radius:50%;
}

.footer::after{
  content:'';
  position:absolute;
  bottom:-150px;
  right:-150px;
  width:350px;
  height:350px;
  background:#7c3aed;
  opacity:0.15;
  filter:blur(120px);
  border-radius:50%;
}

/* CONTAINER */

.footer-container{
  width:90%;
  margin:auto;

  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;

  gap:60px;

  position:relative;
  z-index:2;

  padding-bottom:70px;
}

/* FOOTER BOX */

.footer-box h2{
  font-size:34px;
  margin-bottom:20px;

  background:linear-gradient(
    to right,
    #4da6ff,
    #8b5cf6
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.footer-box h3{
  font-size:22px;
  margin-bottom:25px;
  color:#ffffff;
}

/* TEXT */

.footer-box p{
  color:#94a3b8;
  line-height:1.9;
  font-size:16px;
  max-width:350px;
}

/* LINKS */

.footer-box a{
  display:block;

  color:#cbd5e1;

  text-decoration:none;

  margin-bottom:16px;

  transition:0.3s ease;

  position:relative;

  width:fit-content;
}

/* LINK HOVER EFFECT */

.footer-box a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;

  width:0%;
  height:2px;

  background:linear-gradient(
    to right,
    #4da6ff,
    #8b5cf6
  );

  transition:0.3s;
}

.footer-box a:hover{
  color:#4da6ff;
  transform:translateX(5px);
}

.footer-box a:hover::after{
  width:100%;
}

/* SOCIAL ICONS */

.social-icons{
  display:flex;
  gap:18px;
  margin-top:10px;
}

.social-icons i{
  width:48px;
  height:48px;

  border-radius:14px;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.08);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:18px;

  color:white;

  cursor:pointer;

  transition:0.35s ease;

  backdrop-filter:blur(12px);
}

/* ICON HOVER */

.social-icons i:hover{
  background:linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
  );

  transform:
    translateY(-5px)
    scale(1.05);

  box-shadow:
    0 10px 30px rgba(77,166,255,0.35);
}

/* BOTTOM BAR */

.footer-bottom{
  position:relative;
  z-index:2;

  border-top:1px solid rgba(255,255,255,0.06);

  padding:28px 20px;

  text-align:center;

  color:#94a3b8;

  font-size:15px;

  background:rgba(255,255,255,0.02);

  backdrop-filter:blur(10px);
}

/* RESPONSIVE */

@media(max-width:992px){

  .footer-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .footer{
    padding-top:70px;
  }

}

.footer-box h2 span{
  display:block;
  font-size:14px;
  color:#94a3b8;
  margin-top:8px;
  letter-spacing:2px;
  -webkit-text-fill-color:#94a3b8;
}





/* =========================
   CLIENTS PAGE
========================= */

.clients-section{
  width:90%;
  margin:auto;
  padding-bottom:120px;
}

/* GRID */

.clients-grid{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

  gap:35px;
}

/* CARD */

.client-card{

  background:
    linear-gradient(
      145deg,
      rgba(17,24,39,0.95),
      rgba(15,23,42,0.88)
    );

  border-radius:28px;

  padding:45px 30px;

  text-align:center;

  border:1px solid rgba(255,255,255,0.06);

  backdrop-filter:blur(18px);

  transition:0.4s ease;

  position:relative;

  overflow:hidden;

  .client-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px;
}
}

/* GLOW EFFECT */

.client-card::before{

  content:'';

  position:absolute;

  top:-80px;
  left:-80px;

  width:180px;
  height:180px;

  background:#2563eb;

  opacity:0.12;

  filter:blur(80px);

  border-radius:50%;
}

/* HOVER */

.client-card:hover{

  transform:
    translateY(-12px)
    scale(1.02);

  border-color:rgba(77,166,255,0.35);

  box-shadow:
    0 20px 60px rgba(37,99,235,0.20);
}

/* LOGO */

.client-card img{

  width:120px;
  height:120px;

  object-fit:contain;

  margin-bottom:30px;

  filter:brightness(1.1);

  transition:0.4s ease;
}

/* IMAGE HOVER */

.client-card:hover img{

  transform:scale(1.08);
}

/* NAME */

.client-card h3{

  font-size:24px;

  font-weight:600;

  color:white;
}


/* =========================
   MISSION & VISION
========================= */

.mission-vision {
  padding: 80px 8%;
  background: linear-gradient(
    135deg,
    #eef6ff 0%,
    #f8fbff 50%,
    #edf7ff 100%
  );
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-title p {
  color: #64748b;
  max-width: 700px;
  margin: auto;
}

.mv-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.mv-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.mv-icon i {
  font-size: 28px;
  color: #0284c7;
}

.mv-card h3 {
  color: #0f172a;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.mv-card p {
  color: #475569;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Mobile */

@media(max-width:768px){

  .mission-vision{
    padding:60px 20px;
  }

  .section-title h2{
    font-size:1.8rem;
  }

  .mv-card{
    padding:25px;
  }
}

 /* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width:1200px){

  .hero-left h1{
    font-size:60px;
  }

  .navbar{
    gap:18px;
  }

}

/* TABLETS */

@media (max-width:992px){

  .header{
    padding:20px 30px;
    flex-wrap:wrap;
  }

  .navbar{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-top:15px;
  }

  .nav-btn{
    display:none;
  }

  .hero{
    flex-direction:column;
    text-align:center;
    padding:170px 30px 80px;
    gap:50px;
  }

  .hero-left,
  .hero-right{
    width:100%;
  }

  .hero-left h1{
    font-size:52px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .footer-container{
    grid-template-columns:1fr 1fr;
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .contact-section{
    width:80%;
  }

}

/* MOBILE */

@media (max-width:768px){

  .header{
    padding:15px 20px;
  }

  .logo h2{
    font-size:24px;
  }

  .logo p{
    font-size:12px;
  }

  .navbar{
    gap:10px;
  }

  .navbar a{
    font-size:14px;
  }

  .hero{
    padding:180px 20px 60px;
  }

  .hero-left h1{
    font-size:40px;
  }

  .hero-left p{
    font-size:16px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
    max-width:280px;
  }

  .mission-vision{
    padding:60px 20px;
  }

  .mv-container{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .contact-section{
    width:90%;
  }

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .social-icons{
    justify-content:center;
  }

}

/* SMALL PHONES */

@media (max-width:480px){

  .hero-left h1{
    font-size:32px;
  }

  .badge{
    font-size:12px;
    padding:10px 16px;
  }

  .section-title h2{
    font-size:28px;
  }

  .mv-card{
    padding:20px;
  }

}

/* =========================
   HAMBURGER MENU
========================= */

.menu-toggle{
  display:none;
  font-size:28px;
  color:white;
  cursor:pointer;
}

/* TABLET & MOBILE */

.menu-toggle{
  display:none;
  font-size:28px;
  color:white;
  cursor:pointer;
}
 
@media(max-width:992px){

  .navbar{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#0b1120;
    flex-direction:column;
    gap:20px;
    padding:20px 0;
    text-align:center;
  }

  .navbar.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .nav-btn{
    display:none;
  }
}



.dropdown-menu a{
    padding:12px 20px;
    color:white;
    text-decoration:none;
    display:block;
}

.dropdown-menu a:hover{
    background:#1e293b;
    color:#4da6ff;
}

.dropdown:hover .dropdown-menu{
    display:flex;
}

.dropdown{
    position:relative;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#0f172a;
    border-radius:10px;
    padding:10px 0;
}

.dropdown:hover .dropdown-menu{
    display:block;
}
 
 @media(max-width:992px){

    .dropdown{
        width:100%;
    }

    .dropdown-menu{
        position:static;

        width:100%;

        background:#0f172a;

        margin-top:8px;

        border-left:3px solid #4da6ff;

        border-radius:0;

        box-shadow:none;

        display:none;
    }

    .dropdown-menu.show{
        display:flex !important;
        flex-direction:column;
    }

    .dropdown-menu a{
        padding:12px 15px;
        font-size:14px;
    }

}

/* Services Section */
.services-section {
    padding: 80px 8%;
    background: #f8fafc;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-heading p {
    color: #64748b;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: white;
    font-size: 28px;
}

.service-card h3 {
    color: #0f172a;
    margin-bottom: 15px;
    font-size: 1.35rem;
}

.service-card p {
    color: #475569;
    line-height: 1.8;
    font-size: 15px;
}

/* Mobile */
@media (max-width:768px) {
    .services-section {
        padding: 60px 5%;
    }

    .section-heading h2 {
        font-size: 2rem;
    }
}

.header-buttons{
    display:flex;
    gap:15px;
    align-items:center;
}

.login-btn{
    padding:12px 24px;
    border:1px solid #2563eb;
    color:#2563eb;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.login-btn:hover{
    background:#2563eb;
    color:#fff;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#0f172a;
}

@media (max-width: 992px){

    .menu-toggle{
        display:block;
    }

    .navbar{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:20px;
        box-shadow:0 10px 20px rgba(0,0,0,.1);
        z-index:999;
    }

    .navbar.active{
        display:flex;
    }

    .navbar a{
        padding:12px 0;
        border-bottom:1px solid #eee;
    }

    .header-buttons{
        display:none;
    }
}

@media (max-width: 992px) {

    .header{
    position: fixed;
    top:0;
    left:0;
    width:100%;
}

    .menu-toggle{
        display:block;
        font-size:28px;
        cursor:pointer;
        z-index:1001;
    }

    .navbar{
        display:none;
        flex-direction:column;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#ffffff;
        padding:15px 0;
        z-index:1000;
        box-shadow:0 10px 20px rgba(0,0,0,0.1);
    }

    .navbar.active{
        display:flex !important;
    }

    .navbar a{
        display:block;
        padding:15px 25px;
        text-align:left;
        border-bottom:1px solid #e5e7eb;
    }

    .header-buttons{
        display:none;
    }
}

@media(max-width:992px){

    .menu-toggle{
        display:block !important;
        color:white;
        font-size:30px;
        cursor:pointer;
    }

    .navbar{
        display:none !important;
    }

    .navbar.active{
        display:flex !important;
        flex-direction:column;
        background:#0b1120;
        position:fixed;
        top:80px;
        left:0;
        width:100%;
        z-index:9999;
        padding:20px;
    }

    .navbar.active a{
        color:white;
        padding:15px;
        text-decoration:none;
    }
}
@media(max-width:992px){

    .navbar.active{
        display:flex !important;
        flex-direction:column;
        justify-content:flex-start;
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100vh;
        overflow-y:auto;
        background:#081120;
        padding-top:100px;
        z-index:9999;
    }
}