@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

body, html {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0 1.2vw !important;
    color: #141313;
    text-transform: uppercase;
}
.navbar-expand-lg .navbar-nav .nav-link:hover{
  color: #1676BC;
}

.navbar>.container-fluid{
    gap: 17vw !important;
}
.navbar-brand img{
    width: 14vw;
    height: auto !important;
}
.bg-body-tertiary{
    padding: 1vw 2vw !important;
}

/*  */


.nav-social-icons{
  display: flex !important;
  font-size: 26px;
}
.nav-social-icons a{
color: #1a1a1a !important;
transition: all 0.4s ease;
}
.nav-social-icons a:hover{
color: #1676BC !important;
transform: translateY(-8px);
}

.nav-social-icons .d-flex .gap-3{
  gap: 1.6vw !important;

}

/* deepdown  */
.dropdown-menu {
  padding: 0 15vw !important;
  background: none;
  box-shadow: none !important;
}
.custom-row-nav{
  background-color: whitesmoke !important;
  border-radius: 4px;
}
.heading-h5{
color: #0077b6;
}

.row h5 {
  font-size: 3vw;
}
.row p {
  color: rgb(50, 50, 50);
}
.bg-danger{
  background-color: transparent !important;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0vw 2vw !important;
  color: #1775BB !important;
}
.custom-nav-unstyle{
  padding: 2.5vw;
}
.custom-nav-unstyle li a {
  font-weight: 600 ;
  color: black;
  transition: all 0.2s ease;
}
.custom-nav-unstyle li a:hover {
  color: #1775BB ;
}

/*  */
/* For desktop: Show dropdown on hover */
/* @media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    top: 100%;
  }

  .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    top: 110%;
    left: 1%;
  }
} */

/*  */
/* old images hero  */
/* .hero {
  position: relative;
  height: 100vh;
  color: rgb(245, 245, 245);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
} */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 970px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #f5f5f5;
  transition-delay: 0.2s;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 15px;
  font-weight: 400;
  font-style: italic;
  transition-delay: 0.4s;
}

/* .hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 2s ease;
} */

/* .hero-content.animate-in {
  opacity: 1;
  transform: translateY(0);
} */
 

.hero-cta-btn {
  background-color: #4c9ed8;
  color: rgb(238, 238, 238);
  padding: 0.6vw 1.8vw;
  font-size: 1.2vw;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease, transform 0.3s ease;
  border-radius: 0.5vw;
  font-weight: 400;
  margin-top: 12px;
}

.hero-cta-btn:hover {
  background-color: #e0e7ed;
  color: #E60880;  transform: translateY(-3px);
}


.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Animation */
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.fade-in-delay {
  opacity: 0;
  animation: fadeInUp 1.5s ease-out forwards;
}

.fade-in-delay-2 {
  opacity: 0;
  animation: fadeInUp 2s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}



.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* page 2 S */
#page-2 {
    width: 100%;
    min-height: 100vh;
    padding: 3vw 5vw;
  }
  
  .section-heading {
    font-size: 3vw;
    margin-top: 2.2vw;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5vw;
    color: #222;
  }
  
  .section-text {
    font-size: 1.2vw;
    font-weight: 300;
    color: #444;
    text-align: justify;
  }
  
  .about-image {
    width: 100%;
    border-radius: 1vw;
    margin: 4vw 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    margin-top: 2vw;
    padding-bottom: 5vw;
    border-bottom: 1px solid #80808076;
  }
  .section-heading,
.section-text,
.about-image {

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.why-choose-section .section-heading
{
  font-size: 3vw;
  font-weight: 600;
  color: #E80A80;
}
/* Animate class added when in view */
.animate-in {
  opacity: 1;
  transform: translateY(0);
}


.about-image {
  max-width: 100%;
  height: auto;
  margin-top: 2vw;
  border-radius: 1vw;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
  .service-card-btn {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f1f3f400;
    color: #1775BB;
    border: 1px solid;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .service-card-btn:hover {
    background-color: #ffffffc7;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
  .service-card {
    flex: 1 1 45%;
    background-color: #fafafa;
    padding: 2vw;
    border-radius: 1vw;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s ease-in-out;
    margin: 1.2vw 0;
    will-change: transform, opacity;
  }
  
  .service-card:hover {
    background-color: #e0f0ff;
    transform: translateY(-1vw);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  .custom-expertise-con-child{
    width: auto;
  }
 
  .expert-img img{
    width: 33vw ;
  }
  .custom-expertise-con{
    max-width: 1800px !important;
  }
  @media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 46% !important;
    }
}

  .custom-expertise-con h2{
    margin: 3vw 0 !important;
    font-weight: 600 !important;
  }
  /* Animate class when card is in view */
  .service-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  .service-title {
    color: #1775BB;
    font-size: 2vw;
    font-weight: 600;
    margin-bottom: 0.5vw;
  }
  .service-title img{
    width: 3rem;
    padding-left: 12px;
  }
  
  .service-desc {
    font-size: 1.2vw;
    font-weight: 300;
    color: #555;
    padding-top: 0.5vw;
  }
  
  .benefits-list {
    font-size: 1.4vw;
    font-weight: 300;
    list-style-type: "✔ ";
    padding-left: 2vw;
    color: #333;
    margin-top: 1.5vw;
    line-height: 45px;
  }
  
  .cta-section {
    text-align: center;
    margin-top: 4vw;
  }
  

  

  
/* page 2  E*/


/* page 3 S */
#page-3 {
  background: linear-gradient(45deg, #1775bbc2, #e4097e36);
  background: linear-gradient(45deg, #ffb6ef2b, #a8c3e736);
    width: 100%;
    min-height: 100vh;
    padding: 3vw 5vw 1vw 5vw;
    border-radius: 6vw 6vw 0 0;
}
#wcu-main{
  display: flex;
  justify-content: space-between;

}
.wcu-text-box{
width: 44%;
}
.wcu-text-box p{
  font-size: 1.1vw;
}
.wcu-img-box{
  /* width: 55%; */
}
.wcu-img-box video{
  height: auto;
  width: 45vw;
  border-radius: 10px;
}
/* page 3  E*/





/* Page 4 S */
.btn-primary{
  transition: all 0.3s ease-in !important;
}
.btn-primary:hover{
  background-color: whitesmoke !important;
  color: #DF0D7F;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}
/* Page 4 E */


/* .medigen-numbers-section */
.medigen-heading {
  color: #eaeaea;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 4vw;
}
.section-work-data {
  background-color: #1774bbdd;
  padding: 80px 20px;
  color: white;
  text-align: center;
  margin-top: 4vw ;
}

.container-2 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8vw;
}

.circle-shape {
  background-color: white;
  color: #1775BB;
  width: 280px;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circle-shape:hover {
  transform: scale(1.05);
}

.circle-shape .adder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-shape .adder h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #E4097F;
  margin: 0;
}

.circle-shape .adder h1 {
  font-size: 2.5rem;
  color: #E4097F;
  margin-left: 5px;
}

.circle-shape p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #1775BB;
}

/* Responsive Design */
@media (max-width: 992px) {
  .circle-shape {
    width: 220px;
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .custom-expertise-con-child {
    width: 100%;
}
  .custom-expertise-con-child  h6{
    font-size: 1.6rem;
}
  .container-2 {
    flex-direction: column;
    align-items: center;
  }

  .circle-shape {
    width: 80%;
    border-radius: 30px;
  }
.footer-video-full{
  padding: 0 2vw;
  min-height: fit-content !important;
}
  .footer-video-full video {
    width: 100% ;
  }
  .expert-img img{
    width: 85vw !important;
  }
}
/*  */

/* FOOTER  */


.footer {
  background-color: #eaf6fc;
}
.footer-video-full {
  width: 100%;
  min-height: 100vh;
}
.footer-video-full video {
  width: 100%;
  }
.footer h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #1775BB !important;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a:hover {
  color: #0077b6; /* Your brand color */
}

.custom-footer-logo{
  width: 21vw;
  height: auto;
}
.custom-footer-container{
  max-width: 1430px !important;
}

.col-md-2{
  cursor:  pointer !important;
}
@media (max-width: 768px) {
  .navbar-brand img{
    width: 36vw ;
  }
  .hero-content h1{
    font-size: 9.2vw;
  }
  .hero-cta-btn {
    padding: 2.6vw 3.8vw;
    font-size: 5.2vw;
  }
  #page-2{
    padding: 0 5vw;
  }
  .section-heading{
    font-size: 5vw ;
    padding: 2vw 0;
  }
  .section-text {
    font-size: 3.2vw;
  }

.services-container{
  flex-direction: column;

}
.service-title{
  font-size: 4vw;

}
.service-desc{
  font-size: 4vw;
}
.service-card-btn{
  padding: 5px 7px;
    font-size: 10px;
}

/*  */
#page-3{
  margin-top: 4vw;
}
#wcu-main{
  flex-direction: column;
}
.wcu-text-box{
  width: 100%;
}
.benefits-list{
  font-size: 3.5vw;
}
.wcu-text-box p {
  font-size: 4.1vw;
}
.why-choose-section .section-heading {
  font-size: 5.3vw;
}
.wcu-img-box video{
  width: 88vw;
}

  .custom-footer-logo {
    width: 77vw;
    height: auto;
    padding: 4vw 2vw;
}
.footer-subh{
  font-size: 2.2vw;
}
.custom-footer-container p{
  font-size: 4vw;
}
.custom-footer-container p{
  padding: 0 5vw;
}

}