 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat';
}
html{
  scroll-behavior: smooth;
} 
a{
  text-decoration: none;
}  
li{
  list-style: none;
}

body{
  font-family: 'Montserrat';
}

.container{
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}


:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;

  --col-1: calc(100% / 12);
  --col-2: calc(100% / 12 * 2);
  --col-3: calc(100% / 12 * 3);
  --col-4: calc(100% / 12 * 4);
  --col-5: calc(100% / 12 * 5);
  --col-6: calc(100% / 12 * 6);
  --col-7: calc(100% / 12 * 7);
  --col-8: calc(100% / 12 * 8);
  --col-9: calc(100% / 12 * 9);
  --col-10: calc(100% / 12 * 10);
  --col-11: calc(100% / 12 * 11);
  --col-12: calc(100%);
}



.flex-column{
  flex-direction: column;
}
.d-flex{
  display: flex;
}
.align-center{
  align-items: center;
}
.flex-grow{
  flex-grow: 1;
}
.justify-between{
  justify-content: space-between;
}
.justify-center{
  justify-content: space-between;
}



/* Menu button styling */
.menu-btn{
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  display: none;
}
#menu-btn{
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  display: none;
}


.scroll-up-btn{
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  background-color: #111111;
  text-align: center;
  color: #db1919;
  line-height: 50px;
  font-size: 30px;
  z-index: 9999;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}
.scroll-up-btn.show{
  opacity: 1;
  pointer-events: auto;
}



/***********************************************************************************************************/
/*                                             START                                                       */
/***********************************************************************************************************/

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding: 25px 40px;
  transition: all 0.5s ease;
  position: fixed;
  z-index: 9998;
}
nav.sticky{
  transition: 0.5s ease;
  padding: 15px 30px;
  background-color: #db1919;;
}
nav.sticky .logo{
  color: #111111;
}
nav.sticky .logo span{
  color: #111111;
}
nav.sticky .nav__link{
  border: none;
  text-transform: uppercase;
  color: #111111;
}
nav.sticky .nav__link:hover{
  background-color: #fff;
  color: #db1919;;
}
/* nav.sticky .search{
  background: #fff;
}
nav.sticky .search__button{
  background: #fff;
} */
.nav__list{
  display: flex;
}
.nav__blog{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__part{
  display: flex;
}
.end{
  display: flex;
}
.account{
  display: flex;
}


.profil{
  width: 40px;
  height: 40px;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 5px;
  margin-left: 10px;
  margin-top: 20px;
  /* padding: 5px; */
}
.logo{
  font-weight: 900;
  font-style: Bebas Neu;
  font-size: 30px;
  color: #db1919;
  /* margin: 30px; */
}
.logo span{
  color: #111111;
}
nav ul li{
  display: inline-block;
  margin: 0 5px;
}
.nav__link{
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #111111;
  padding: 8px 16px;
  border: 1px solid #111111;
  border-radius: 20px;
}

.nav__link:hover{
  background-color: #111111;
  color : #db1919;
  transition: 0.5s ease;
}

/********************************************************************************************************/
/*                                           Hero Section Begin                                          */

/* Ensure Hero Section starts below the Navbar */
#hero {
  position: relative;
  width: 100%;
  height: 90vh; /* Adjust height to fit properly */
   overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 140px; /* Pushes it down to avoid navbar overlap */
}
.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
video, img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Hero Text Overlay */
.hero-overlay {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(75, 57, 57, 0.6);
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 80%;
}
.hero-overlay h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 18px;
  margin-bottom: 20px;
}
.cta-button {
  background-color: #db1919;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
}
/* Navigation Buttons */
.controls {
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bullets {
  display: flex;
  gap: 8px;
}

.bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.bullet.active {
  background: white;
}

/*                                           Hero Section End                                           */


/***********************************************************************************************************/
/*                                           Header end                                                    */
/***********************************************************************************************************/

/***********************************************************************************************************/
/*                                           Main Begin                                                    */
/***********************************************************************************************************/

/* About section Begin */
.info{
  padding: 100px 0;
  background: #e2e4eb; 
  /* background: -webkit-linear-gradient(to right, #E2E2E2, #C9D6FF);  */
  /* background: linear-gradient(to right, #d4d1d1, #ced9ff);  */
  flex-wrap: wrap;
}
.info .info__box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info__img{
  width: 600px;
  height: 500px;
  object-fit: cover;
}
.info__blog{
  width: 600px;
}
.info__title{ 
  font-family: 'Roboto';
  font-weight: 700;
  color: #db1919;
  font-size: 42px;  
  text-align: center;
}

.us{
  color: #111111;
  font-weight: 800;
}
.info__text1{
  color: #555;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-align: justify;
}
.info__text2{
  text-align: justify;
  color: #555;
  font-weight: 400;
  font-size: 18px;
  padding: 25px 0 30px;
  line-height: 26px;
}

.info__link1{
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid var(--bs-blue);
  color: var(--bs-blue);
  border-radius: 25px;
}
.info__link1:hover{
  background: #00B4DB;
  background: -webkit-linear-gradient(to right, #46cdfa, #00B4DB); 
  background: linear-gradient(to right, #22d7ff, #0076fd); 
  color: #fff;
  border: 1px solid #C9D6FF;
}
.info__link2{
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid #ff7b00;
  color: #ff9900;
  border-radius: 25px;
  margin: 0 15px;
}
.info__link2:hover{
  background: #f12711;
  background: -webkit-linear-gradient(to right, #f5af19, #f12711);
  background: linear-gradient(to right, #f5af19, #f12711); 
  color: #fff;
  border: 1px solid #C9D6FF;
}

h3 {
  font-size: 1.2em;
  color: #333;
  margin-top: 20px;
}

p {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  font-size: 1em;
  padding: 8px 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

/* Button */
.btn {
  display: inline-block;
  background: #db1919;
  color: #fff;
  padding: 12px 25px;
  font-size: 1.2em;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
}

.btn:hover {
  background: none;
  color: #db1919;
  border: 2px solid #111111;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 4s ease-in-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* About section end */
/* Service styling */

.service{
  display: flex;
  background: #5C4B99;
  padding: 100px 0;
}
/* .cards{
  display: flex;
  justify-content: center;
  align-items: center;
}*/
.card__title{
  color: #db1919;
  text-align: center;
  font-size: 42px;
  font-family: 'Roboto';
  font-weight: bold;
} 
.services  {
  color: #111111;
  font-weight: 800;
}
/* Our Services Section */
.our-services {
  padding: 60px 20px;
  background-color: #9F91CC;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.services-title {
  font-size: 36px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.services-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  max-width: 700px;
  margin: 0 auto;
}

/* Service Container */
.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Service Box */
.service-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 320px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect */
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.icon-wrapper {
  background: #ff6b6b;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  transition: background 0.3s ease-in-out;
}

.icon-wrapper i {
  font-size: 28px;
  color: white;
}

/* Different Colors for Each Icon */
.service-box:nth-child(1) .icon-wrapper { background: #2E86C1; } /* Blue */
.service-box:nth-child(2) .icon-wrapper { background: #28B463; } /* Green */
.service-box:nth-child(3) .icon-wrapper { background: #D35400; } /* Orange */

/* On Hover - Darker Shade */
.service-box:hover .icon-wrapper {
  background: #222;
}

/* List Styling */
.service-box ul {
  padding: 0;
  list-style: none;
  text-align: left;
  margin-top: 10px;
}

.service-box ul li {
  font-size: 16px;
  color: #444;
  padding: 5px 0;
}

/* .card{
  width: 350px;
  margin: 0 20px;
  background: #9F91CC;
  text-align: center;
  border-radius: 6px;
  padding: 35px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.box{
  color: #fff;
  transition: all 0.3s ease;
}
.box i {
  font-size: 50px;
  color: #010A43;
  transition: color 0.5s ease;
}
.box__title{
  font-size: 24px;
  font-weight: bold;
  padding: 15px 10px;
}
.box__text{
  font-size: 18px;
  font-weight: 400;
  font-family: 'OpenSans';
  transition: all 0.5s ease;
}
.card:hover .box {
  transform: scale(1.05);
}
.card:hover{
  background-color: #010A43;
  transition: 0.5s ease;
}
.card:hover .box i{
  color: #fff;
} */


/* Title Bottom Border text tecoration */
.service,  .border__blog{
  display: flex;
  justify-content: center;
}
.border__blog{
  color: #fff;
  padding-top: 10px;
  margin-bottom: 50px;
}
.border{
  width: max-content;
  font-size: 18px;
  padding: 5px 8px;
  font-weight: bold;
  color: #111111;
  position: relative;
  line-height: 20px;
}
.border::before{
  content: '';
  width: 15px;
  height:15px;
  position: absolute;
  top: 0;
  left: 0;
}
.border::after{
  content: '';
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.border::before{
  border-top: 2px solid #db1919;
  border-left: 2px solid #db1919;
}
.border::after{
  border-bottom: 2px solid #db1919;
  border-right: 2px solid #db1919;
}




/* Skills Styling! */
.skills{
  padding: 100px 0;
}
.skill__blog{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.skill__title{
  color: #db1919;
  text-align: center;
  font-size: 42px;
  font-weight: bold;
}
.skill__title span{
  color: #111111;
}
/* Future R&D and Innovation Section */
/* Future R&D and Innovation Section */
/* Future R&D and Innovation Section */
.rd-innovation {
  padding: 80px 0;
  background-color: #f4f4f4;
  text-align: center;
}

.rd-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.rd-description, .rd-conclusion {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding-top: 15px;
}

.rd-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.rd-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.rd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background: #fff9f9;
}

/* Icon Colors Based on Category */
.rd-card i {
  font-size: 40px;
  margin-bottom: 15px;
  transition: color 0.3s ease-in-out;
}

.rd-card[data-category="biotech"] i {
  color: #1E88E5; /* Blue for Biotechnology */
}

.rd-card[data-category="innovation"] i {
  color: #43A047; /* Green for Innovation */
}

.rd-card[data-category="ai"] i {
  color: #F9A825; /* Yellow for AI & Automation */
}

.rd-card[data-category="research"] i {
  color: #E53935; /* Red for Research & Development */
}

/* Hover Effect - Darker Shade */
.rd-card:hover[data-category="biotech"] i {
  color: #1565C0;
}

.rd-card:hover[data-category="innovation"] i {
  color: #2E7D32;
}

.rd-card:hover[data-category="ai"] i {
  color: #F57F17;
}

.rd-card:hover[data-category="research"] i {
  color: #B71C1C;
}

.rd-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.rd-card p {
  font-size: 16px;
  color: #777;
}



/* .skill__left{
  width: 550px;
}
.skill__right{
  width: 550px;
}
.skill__left__title{
  font-size: 24px;
  margin-bottom: 20px;
}
.skill__left__title span{
  color: #f3a600;
  text-transform: capitalize;
}
.skill__left__text{
  color: #444;
  padding-bottom: 20px;
  line-height: 24px;
  text-align: justify;
}
.skill__link{
  display: inline-block;
  padding: 15px 25px;
  background-color: #010A43;
  font-size: 18px;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  font-family: "Roboto";
  transition: all 0.5s ease;
  border: 2px solid #010A43;
}
.skill__link:hover{
  background: none;
  color: #010A43;
  transition: all 0.5s ease;
}
.bars{
  margin-bottom: 25px;
}
.bars__info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
}
.bars span{
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 18px;
}
.bars .line {
  height: 5px;
  width: 100%;
  background-color: rgb(192, 192, 192);
  position: relative;
}
.bars .line::before {
  content: '';
  position: absolute;
  /* width: 100%; */
  /* height: 100%;
  top: 0;
  left: 0;
  background-color: #010A43;
}
.bars .java::before {
  width: 80%;
}
.bars .Springboot::before {
  width: 90%;
}
.bars .springrest::before {
  width: 80%;
}
.bars .Microservices::before {
  width: 70%;
}
.bars .aws::before {
  width: 20%;
} */ 


/* Careers Styling ! */

.projects{
  background-color: #5C4B99;
  padding: 100px 0;
}
.project__title{
  text-align: center;
  font-weight: 900;
  color: #db1919;
  font-size: 42px;  
}
.careers {
  padding: 80px 0;
  background-color: #9F91CC;
  text-align: center;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2); /* Added shadow */
}

.careers__title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.careers__description {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.job__listings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.job__card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: left;
}

.job__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.job__location {
  font-size: 16px;
  color: #777;
  margin-bottom: 15px;
}

.apply__btn {
  background: #db1919;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.apply__btn:hover {
  background: #a50f0f;
  transition: all 0.5s ease;
}

.load-more {
  margin-top: 30px;
  padding: 10px 20px;
  background: #222;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

.load-more:hover {
  background: #555;
  transition: all 0.5s ease;
}


/* Contact styling */
.contact .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}
.contact{
  padding: 100px 0;
}
.contact__left {
  width: 50%;
}
.contact__right {
  width: 45%;
}

.row{
  display: flex;
  align-items: center;
  padding: 20px 0 0;
}
.contact__title{
  text-align: center;
  font-weight: 900;
  color: #db1919;
  font-size: 42px;  
}
.contact__title span{
  color: #111111;
}
.contact__blog__title{
  font-size: 24px;
  padding-bottom: 20px;
  font-weight: 500;
}

.contact__text{
  font-weight: 400;
  color: #222;
  line-height: 24px;
  text-align: justify;
  padding-bottom: 15px;
}
.contact__info{
  display: block;
}
.row i{
  font-size: 35px;
  color: #db1919;
  padding: 5px 0;
}
.name{
  font-weight: 475;
  padding-bottom: 5px;
  padding-left: 25px;
  color: #000;
}
.sur-name{
  font-weight: 400;
  color: #555;
  padding-left: 25px;
}
.contact__subtitle{
  padding-bottom: 10px;
}
/* owner image style */
.owner__photo{
  margin: 100px 20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contact right styling */

.contact__right__title{
  margin-bottom: 25px;
  font-size: 24px;
  font-family: 'Roboto';
  text-align: left; /* added */
  
}
 form .fields{
  display: flex;
}
 form .field,
 form .fields .field{
  height: 45px;
  width: 100%;
  margin-bottom: 20px;
}
.contact__right form .textarea{
  height: 80px;
  width: 100%;
}
.contact__right form .name{
  margin-right: 10px;
  padding: 0;
}
 form .field input,
 form .textarea textarea{
  height: 100%;
  width: 100%;
  border: 1px solid #9999;
  border-radius: 6px;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}
form .textarea textarea{
  padding-top: 10px;
  resize: none;
}
.button{
  height: 50px;
  width: 175px;
}
.send__msg{
  width: 100%;
  height: 100%;
  border: 2px solid #db1919;
  background: #db1919;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  font-family: 'Roboto';
  cursor: pointer;
  transition: all 0.5s ease;
}
.send__msg:hover{
  background: none;
  color: #db1919;
  border: 2px solid #111111;
} 

.contact .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.contact__left {
  width: 50%;
}

.contact__right {
  width: 45%;
}

.contact__right__title {
  text-align: left;
}


/* Footer styling */
footer{
  background-color: #db1919;
  color: #111111;
  padding: 30px 0;
  text-align: center;
}
.foot__span{
  color: #111111;
  font-weight: bold;
  font-family: 'Roboto';
  text-decoration: none;
}
.foot__span:hover{
  text-decoration: underline;
}
.foot__text{
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 25px;
}

.footer i{
  font-size: 24px;
  margin: 0 10px;
  color: #111111;
  padding: 0 5px;
  transition: all 0.5s ease;
}


#tg:hover{
  transform: scale(1.2);
  transition: all 0.5s ease;
  color: #0088cc;
}
#fc:hover{
  transform: scale(1.2);
  transition: all 0.5s ease;
  color: #3b5999;
}
#is:hover{
  transform: scale(1.2);
  transition: all 0.5s ease;
  color: #e4405f;
}
#tw:hover{
  transform: scale(1.2);
  transition: all 0.5s ease;
  color: #55acee;
}
#ws:hover{
  transform: scale(1.2);
  transition: all 0.5s ease;
  color: #198754;
}
/***********************************************************************************************************/
/*                                             FINISH                                                      */
/***********************************************************************************************************/




