body{
    height: 100%;
    width:100%;
    background-color: rgb(51, 48, 48);
    font-family:Roboto;
    overflow-x: hidden;
}
@keyframes changeColor {
    from { background: transparent; }
    to { background: #cce5ff;}
}
 /* ---------- BASIC HEADER STYLING ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 14%;
  width: 100%;
  background-color: transparent;
  z-index: 100;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    animation: changeColor linear both;
    animation-timeline: scroll(y);
    animation-range: 0 300px;
}

header img {
  height: 6vh;
  width: 25vh;
  margin-left: 10%;
  margin-top: 5%;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-left: 10%;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}
@keyframes changeLinkColor {
    from { color: white; }
    to { color: #c94d80; }
}
.nav-menu li a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 15px 20px;
  transition: color 0.3s, border-bottom 0.3s;
  animation: changeLinkColor linear both;
  animation-timeline: scroll();
  animation-range: 0 300px;
}

.nav-menu li:hover a {
  border-bottom: 3px solid #c94d80;
}
/* ---------- FULLSCREEN DROPDOWN ---------- */
.service-dropdown-content {
  display: none;
  position: fixed;
  top: 14%;
  left: 0;
  width: 100vw;
  height: 70vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 200;
  justify-content: center;
  align-items: center;
}

.service-dropdown-content.active {
  display: flex;
}

.services-list {
  display: flex;
  justify-content: center;
  gap: 10%;
  padding: 20px;
}

.services-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-col a {
    width:100%;
  border: 1px solid antiquewhite;
  border-radius: 4px;
  text-decoration: none;
  padding: 8px 15px;
  transition: background 0.3s;
}

.services-col a:hover {
  background-color: #333;
}

/* ---------- BUTTON ---------- */
.get-touch {
  background-color: #c94d80;
  height:auto;
  width: 100%;
  border-radius: 10px;
  border: none;
  margin-left: -30%;
}

.get-touch a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  font-weight: bold;
}

/* ---------- MOBILE MENU BUTTON ---------- */
.menu-btn {
  color: black;
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
  margin-right: 5%;
}
/* Mobile side menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70vw;
  height: 100vh;
  background: #0b0b0b;
  padding: 80px 20px;
  transition: 0.4s ease;
  z-index: 9999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul li {
  margin: 18px 0;
  font-size: 1rem;
}

.mobile-menu a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

/* mobile submenu */
.mobile-submenu {
  display: none;
  padding-left: 15px;
}

.mobile-submenu.show {
  display: block;
}

.mob-dropdown > a::after {
  content: " ▾";
  font-size: 14px;
}
.mobile-btn {
  display: block;
  margin-top: 20px;
  padding: 12px;
  text-align: center;
  background-color: #c94d80;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.hero{
    height: auto;
    display: flex;
    width:100%
}
.hero-title{
    margin-top: -5%;
    margin-left: -6%;
    width:50%;
    font-size: 1.3rem;
    background-color: #cce5ff;
    padding:20% 4% 15% 10%;
    border-radius: 30%;
    z-index: 0;
    position: relative;
    color:black;
}
.hero-btn{
    background-color: #c94d80;
    height: auto;
    width: 20%;
    margin-top: 5%; 
    position :absolute;
    margin-left: 15%;
    border-radius: 10px;
    text-align: center;
    padding:2%;
    font-weight: bold;
    
}

.hero-btn a{
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}  
.hero-img-container{
    height:100%;
    width:100%;
} 
.hero-img-container img{
    height:100%;
    width: 100%;
}
.who-are-we-section{
    height:auto;
    width: 100%;
    margin-top: 8%;
}
.who-we-are-container{
   height:auto;
    width: 80%;
    display: flex;
    color: white;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;

}
.who-are-we{
    height:auto;
    width:50%;
}
.who-are-we h1{
    font-size: 2.5rem;
    color:#c94d80;
    letter-spacing: 3px;
}
.who-are-we p{
    font-size: 1.3rem;
    color:white;
    line-height: 150%;
}
.who-are-we-img-container{
    height:auto;
    width:50%;
    margin-top: 3%;
}
.who-are-we-img-container img{
    height:100%;
    width:100%;
}
/* Base services card */
.services-section{
    height:auto;
    width:100%;
    margin-top:8%;
    color: white;
}
.services-section h1{
    font-size:2.5rem;
    margin-left: 10%;
    color:#c94d80;
    letter-spacing: 3px;
}
.services-section p{
    font-size:1.7rem;
    margin-left: 10%;
    margin-top: 0%;
    color:#cce5ff;
} 
.services-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: 4rem;
    margin-top: 6%;
    height: auto;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
} 
/* .service-card{
    background-color: #e1f0ff;
    height:100%;
    width:90%;
    color:black;
    border-radius: 10px;
    padding:5%; 
    cursor: pointer;                  
    
    opacity: 0;
    transform: translateX(0) scale(1);
    transition:
      opacity 0.7s ease,
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.3s ease;
}
.service-card.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}
.service-card.show:hover {
    transform: translateX(0) translateY(-8px) scale(1.03);
    box-shadow: 0 15px 25px rgba(0,0,0,0.25);
} */
 .service-card{
    background-color: #e1f0ff;
    height:100%;
    width:90%;
    color:black;
    border-radius: 10px;
    padding:5%;
    cursor: pointer;

    opacity: 0;
    transform: translateX(80px) scale(1);   /* CARD STARTS FROM RIGHT */
    transition:
      opacity 0.7s ease,
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.3s ease;
}

.service-card.show {
    opacity: 1;
    transform: translateX(0) scale(1);      /* CARD RETURNS TO NORMAL */
}

.service-card.show:hover {
    transform: translateY(-8px) scale(1.03); /* SMOOTH HOVER */
    box-shadow: 0 15px 25px rgba(0,0,0,0.25);
}

.service-card h1{
    font-size:1.5rem;
    letter-spacing: 0px;
}
.service-card p{
    font-size:0.9rem;
    color:black;
}
.service-card.show {
    opacity: 1;
    transform: translateY(0) scale(1); 
}
.service-card:hover {
    transform: translateY(0) scale(1); 
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}
.learn-more{
    text-align:start;
    margin-left: 10%;
    font-size: 1.2rem;
    color:#3e80c2;
    font-weight: bold;
    text-decoration: none;
}
.language-section{
    height:auto;
    width:100%;
    margin-top:8%;
    overflow: hidden;
}
.language-container{
    height:auto;
    width: fit-content;
    margin-left:10%;
    margin-right:10%;
    display: flex;
    padding:3%;
    will-change: transform;
    transition: transform 0.1s linear;
}
.language-card{
    height:auto;
    width:40%;
    margin-right: 6%;
}
.language-img-container{
    height:40%;
    width:120%;
    margin-left: 0%;
}
.language-img-container img{
    height:100%;
    width:100%;
    
}
.language-card h3{
    color:white;
    font-size: 1rem;
    margin-left: 0%;
    width:100%;
}
.why-choose-us-section{
    height:auto;
    width: 100%;
    margin-top: 8%;
}
.why-choose-us-container{
  height:auto;
  width:80%;
   display: flex;
    color: white;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
}
.why-choose-us{
    height:auto;
    width:50%;
}
.why-choose-us h1{
    font-size: 2.5rem;
    color:#c94d80;
    letter-spacing: 3px;
}
.why-choose-us p{
    font-size: 1.3rem;
    color:white;
    line-height: 150%;
}
.why-choose-us-img-container{
    height:auto;
    width:50%;
    margin-top: 3%;
}
.why-choose-us-img-container img{
   height:100%;
   width:100%;
}
.keyword-section{
    height:auto;
    width:100%;
    margin-top:8%;
    overflow: hidden;
}
.keyword-container{
    height:auto;
    width:80%;
    margin-left:10%;
    margin-right:10%;
    display: flex;
    padding:3%;
    
}
.keyword-card{
    height:auto;
    width:20%;
    margin-right: 8%;
}
.keyword-card h3{
    color:white;
    font-size: 0.8rem;
    width:100%;

}
.keyword-img-container{
    height:40%;
    width:90%;

}
.keyword-img-container img{
    height:100%;
    width:100%;
}

.industry-section{
    height:auto;
    width: 100%;
    color: white;
    margin-top:8%;
}
.industry-section h1{
    font-size:2.5rem;
    color:#c94d80;
    letter-spacing: 3px;
    margin-left: 10%;
}
.industry-section p{
    font-size:1.7rem;
    color:#cce5ff;
    margin-top: -2%;
    margin-left: 10%;
}
.industry-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 3.5rem;
    height:auto;
    width: 80%;
    margin-top: 15%;
    align-items: center;
    margin-left: 10%;
    margin-right: 10%;
}
.industry-card{
    height:auto;
    width:100%;
    
}
.industry-card :hover{
    height:70%;
    width:70%;
    transition:0.25s ease 0.2s;
}
.industry-container h3{
    color: white;
    font-size: 1rem;
}
.industry-img-container{
    height:40%;
    width:40%;

}
.industry-img-container img{
    height:100%;
    width:100%;
}
.footer{
  height:auto;
  width:100%;
}


.contact-section{
    height:auto;
    width:80%;
    background-color: #cce5ff;
    margin-left:10%;
    margin-right: 10%;
    border-radius: 15px;
    padding:2%;
    position: absolute;
    z-index: 50;
    margin-top: -10%;
    
}
.contact-container{
    display: flex;
    height:auto;
    width:100%;
    gap:5%;
}
.contact-desc{
  height:auto;
  width:45%;
  
}
.contact-desc h3{
  text-align: center;
}
.form-container{
  height:auto;
  width:50%;

}
.contact-section h2{
    font-size: 2.5rem;
}
.form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    height:auto;
    width:90%;
    padding:5% 5%;
    background-color:#c94d80 ;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 5px #3e80c2 ;
}
.form input,select{
    width:95%;
    border-radius: 10px;
    border:none;
    font-size: 0.8rem;
    padding:4%;

}
.form select{
    width:100%;
}
.form button{
    height:auto;
    width:50%;
    padding:5%;
    border-radius: 5px;
    border:none;
    background-color: #cce5ff;
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 80%;
}
.form button:hover{
    background-color: #3e80c2;
}
    
.footer-section{
    height:auto;
    width:100%;
    background-color:#000000 ;
    padding-top: 20%;
    position: relative;
    margin-top: 25%;
    left:-1%;
   
}
.footer-container{
    display: flex;
    height:auto;
    width:80%;
    margin-left:10%;
    margin-right:10%;
    margin-top:5%;
    justify-content: space-between;
}
.footer-container a:hover{
  color:#c94d80;
  transition:0.4s;
}
.social-links i:hover{
   color:#c94d80;
  transition:0.4s;
}
.first-box .second-box .third-box{
    height: 100%;
    width:20%;
}
.fourth-box{
    width:20%;
    text-align: center;
}
.footer-logo{
    height:auto;
    width:8vh;
    position: absolute;
    z-index: 20;
}
.footer-logo-text{
    height:auto;
    width:30vh;
    margin-bottom: 8%;
    margin-left: 5%;
    position: relative;
}
.social-links a{
    display: block;
    text-align: center;
    margin-bottom: 5%;

}
.fa-facebook-f, .fa-instagram, .fa-linkedin, .fa-x-twitter, .fa-youtube{
    width:5%;
    height:25%;
    color:white;
    margin-top: 5%;
    font-size:1.8rem;
}
.footer-links{
    color:white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
}
.service-links{
    color:white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
}
.fa-phone, .fa-envelope{
    font-size: 1.8rem;
    color:white
}
.contact-info{
    font-size: 1.3rem;
    font-weight: bold;
    color:white
}
.footer-container h2{
    font-size:2rem;
    margin-bottom: 45%;
    font-weight: bold;
    color: white;
}


/* ========== Tablet ========== */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  header {
    height: 12vh; 
  }
  .navbar .nav-menu{
    width:100%;
    margin-left: 0%;
}
.nav-menu li a{
    font-size: 0.8rem;
}
.service-dropdown-content {
  display: none;
  position: fixed;
  top: 12%;
  left: 0;
  width: 100vw;
  height: 50vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 200;
  justify-content: center;
  align-items: center;
}

.service-dropdown-content.active {
  display: flex;
}

.services-list {
  display: flex;
  justify-content: center;
  gap: 20%;
  padding: 20px;
}

.services-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-col a {
    width:100%;
  border: 1px solid antiquewhite;
  border-radius: 4px;
  text-decoration: none;
  padding: 8px 15px;
  transition: background 0.3s;
}

.services-col a:hover {
  background-color: #333;
}
.get-touch{
    margin-right: 20%;
}
.get-touch h5{
    font-size: 0.6rem;
}
.hero-img {
    width: 70%;
    height: auto;
  }
  .hero-title {
    font-size: 1.8rem;
    padding: 15% 4% 15% 8%;
  }
  .hero-title h1{
    font-size: 1.5rem;
    margin-left: 10%;
  }
  .hero-btn{
    width:30%;
    margin-left: 10%;
    padding:2% 0%;
    font-size: 1rem;
  }
  .who-are-we h1{
    font-size: 2.3rem;
  }
  .who-are-we p{
    font-size: 1.2rem;
  }
.who-are-we-img-container{
    margin-top: 8%;

}
.services-section h1{
    font-size: 2.3rem;
}
.services-section p{
    font-size: 1.5rem;
}
  .services-container {
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem;
  }
  .service-card h1{
    font-size: 2rem;
  }
  .service-card p{
    font-size: 1.2rem;
  }
  .why-choose-us{
    height:auto;
    width: 60%;
  }
.why-choose-us h1{
    font-size: 2.3rem;
}
.why-choose-us p{
    font-size: 1.2rem;
}
.why-choose-us-img-container{
    height:auto;
    width:40%;
}
.industry-section h1{
    font-size: 2.3rem;
}
.industry-section p{
    font-size: 1.5rem;
}
.footer-container{
    margin-top: 15%;
}
.second-box h2, .third-box h2, .fourth-box h2{
    font-size: 1.5rem;
}
.second-box a, .third-box a, .contact-info{
    font-size: 1.1rem;
}
.footer-container i{
    font-size: 1.3rem;
}
.footer-logo{
    width:7vh;
}
.footer-logo-text{
    width:25vh;
}
}



/*mobile */
@media only screen and (min-width:320px) and (max-width: 768px) {
  body{
    overflow-x: hidden;
  }
   header {
  height: 10%;
}
  .desktop-nav {
    display: none;
  }
  @keyframes changeLinkColor {
    from { color: white; }
    to { color: #c94d80; }
  }
  .menu-btn {
    font-size: 1.5rem;
    display: block;
    margin-right: 10%;
    z-index: 999;
    animation: changeLinkColor linear both;
    animation-timeline: scroll();
    animation-range: 0 300px;
  }
.hero-title{
    margin-top: -3%;
    margin-left: -3%;
    padding:20% 2% 15% 5%;
    border-radius: 50px;
    width:48%;

}
.hero-title h1{
  font-size: 1rem;
  margin-left: 5%;
}
.hero-btn{
    width: 40%;
    margin-left: 10%;
    border-radius: 7px;
    height:8%;
}

.hero-btn a{
    font-size: 0.8rem;
}  
.hero-img-container{
    height:auto;
    width:50%;
    margin-top: 5%;
} 
.who-are-we-section{
    margin-top: 10%;
}
.who-we-are-container{
  flex-direction: column-reverse;
}
.who-are-we{
    width:100%;
}
.who-are-we h1{
    font-size: 1.5rem;
}
.who-are-we p{
    font-size: 0.8rem;
}
.who-are-we-img-container{
    width:100%;
}
/* Base services card */
.services-section{
    margin-top:10%;
}
.services-section h1{
    font-size:1.5rem;
}
.services-section p{
    font-size:0.8rem;
} 
.services-container{
   
    grid-template-columns: 1fr;
    row-gap: 2rem;
} 
.learn-more{
    font-size: 0.8rem;
}
.language-section{
    margin-top:20%;
}
.language-card h3{
    font-size: 0.5rem;
}
.why-choose-us-section{
    margin-top: 10%;
}
.why-choose-us-container{
  flex-direction: column-reverse;
}
.why-choose-us{
    width:100%;
}
.why-choose-us h1{
    font-size: 1.5rem;
}
.why-choose-us p{
    font-size: 0.8rem;
    width:100%;
}
.why-choose-us-img-container{
    width:100%;
}
.keyword-section{
    margin-top:20%;
}
.keyword-card h3{
    font-size: 0.5rem;

}
.industry-section{
    margin-top:10%;
}
.industry-section h1{
    font-size:1.5rem;
}
.industry-section p{
    font-size:0.8rem;
}
.industry-container{
    grid-template-columns: 1fr 1fr;
}
.industry-container h3{
    font-size: 0.8rem;
    width:70%;
    margin-left: 25%;
}
.industry-img-container{
    margin-left: 30%;
}
.contact-section{
    width:70%;
    padding:5%;
    margin-top: -60%;
    
}
.contact-container{
  flex-direction: column;
}
.contact-desc{
  width:100%;
  
}
.contact-desc h3{
  font-size: 0.9rem;
}
.form-container{
  width:100%;

}
.contact-section h2{
    font-size: 1.5rem;
}
.form{
    grid-template-columns: 1fr;
    grid-gap: 1rem;
}
.form input,select{
    width:92%;
}
.form button{
    margin-left: 25%;
}  
.footer-section{
    padding-top: 60%;
    margin-top: 80%;
}
.footer-container{
  flex-direction: column;
  text-align: center;
  margin-top: 20%;
}
.first-box .second-box .third-box{
    width:100%;
}
.fourth-box{
    width:100%;
}
.footer-logo-text{
    margin-left: 0%;
}
.social-links a{
    margin-bottom: 2%;

}
.fa-facebook-f, .fa-instagram, .fa-linkedin, .fa-x-twitter, .fa-youtube{
    font-size:1.5rem;
}
.footer-links{
    font-size: 1rem;
}
.service-links{
    font-size: 1rem;
}
.fa-phone, .fa-envelope{
    font-size: 1.5rem;
}
.contact-info{
    font-size: 1rem;
}
.footer-container h2{
    font-size:1.5rem;
    margin-bottom: 10%;
    color:#c94d80;
}


}