@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
  overflow-x: hidden;
  scroll-behavior: smooth;
  overflow-y: scroll;
  font-size: 16px;
}
/* Body */
body {
    font-family:'IBM Plex Sans', sans-serif;
 
    line-height: 1.6;
    color: #212529;
    background-color: #eaf4ff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Paragraph */
p {
    margin-bottom: 1rem;
   
}

/* Links */
a {
    text-decoration: none;
  
    transition: color 0.3s ease-in-out;
}



/* Lists */
ul, ol {
    margin: 1rem 0;
    
}

li {
    margin-bottom: 0.5rem;
}
.container {
    max-width: 1320px;
    padding: 0 3rem;
    margin: 0 auto;
}


.hero{
  padding-top: 85px;
  position: relative;
  overflow: hidden;
}
.hero-img-div{
z-index: 2;
width: 100%;
}

.hero-text{
  padding-top: 6rem;
  padding-bottom: 2.5rem;
}

.hero-flex{
    display:grid;
   grid-template-columns:55% 45%;
}
.hero-container{
position: absolute;
z-index: 1;
width: 100%;


}
.hero-container img{
  width: 55%;
height: auto;
  right: 0;
  top: 0;
  position: absolute;

}
.hero-text p{
  color: #555;
}

.hero-text h1{
margin-top: 30px;
font-size: 3.2rem;
text-transform: uppercase;
line-height: 3rem;

}
.changing-text{
    color:#f47a20 ;
}

.hero-shape1 {
  top: 3%;
  right: 37%;
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
  position: absolute;
    z-index: 2;
}
@keyframes spin{
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

}
.hero-shape2 {
  top: 27%;
  right: 10%;
  -webkit-animation: jumpAni 6s linear infinite;
  animation: jumpAni 6s linear infinite;
  position: absolute;
  z-index: 2;
}
@keyframes jumpAni{
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}
100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
}
.hero-shape3 {
  left: 25px;
  bottom: 50%;
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
  position: absolute;
  z-index: 2;
}
.hero-shape4 {
  left: 38%;
  bottom: 45%;
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
  position: absolute;
  z-index: 2;
}
.hero-shape5 {
  right: 16%;
  bottom: 20%;
  -webkit-animation: jumpReverseAni 7s linear infinite;
  animation: jumpReverseAni 7s linear infinite;
  position: absolute;
  z-index: 2;
}
@keyframes jumpReverseAni{
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.complex-button {
    background-color: #0d6efd;
   /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
  }
  
  .complex-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    transition: all 1s ease-in-out;
  }
  
  .complex-button:hover::before {
    left: 100%;
  }
  
  .complex-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease-in-out;
  }
  
  .complex-button:hover::after {
    width: 100%;
  }
  
  .complex-button span {
    position: relative;
    z-index: 1;
  }
  
  .complex-button:hover {
    color: #ffffff;
    background-color: #0d6efd;
  }
  .complex-button2 {
    background-color: #f47a20;
   /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
 margin: 10px 2px 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
  }
  
  .complex-button2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    transition: all 1s ease-in-out;
  }
  
  .complex-button2:hover::before {
    left: 100%;
  }
  
  .complex-button2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease-in-out;
  }
  
  .complex-button2:hover::after {
    width: 100%;
  }
  
  .complex-button2 span {
    position: relative;
    z-index: 1;
  }
  
  .complex-button2:hover {
    color: #ffffff;
    background-color: #f47a20;
  }

  .complex-button3 {
    background-color: #f47a20;
   /* Green */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
 margin: 10px 2px 0px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
  }
  
  .complex-button3::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: skewX(-30deg);
    transition: all 1s ease-in-out;
  }
  
  .complex-button3:hover::before {
    left: 100%;
  }
  
  .complex-button3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease-in-out;
  }
  
  .complex-button3:hover::after {
    width: 100%;
  }
  
  .complex-button3 span {
    position: relative;
    z-index: 1;
  }
  
  .complex-button3:hover {
    color: #ffffff;
    background-color: #f47a20;
  }
  .hero-btn{
    margin-top: 2.6rem;
    display: flex;
gap: 4rem;
  }


 
  .choose-grids{
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr 1fr 1fr;
   
  }
  .choose-content{

width: 90%;
margin: 0 auto;
  }
  a.choose-grid {
    display: block; /* Ensure the anchor takes full width and behaves like a block element */
    text-decoration: none; /* Remove underline from anchor tag */
  }
  .choose-grid-content {
    flex-grow: 1; /* Make the content expand to fill available space */
  }
  .choose-grid {
    background-color: #f3f8ff; /* Light initial background color */
    border: 1px solid #9ec5fe;
    position: relative;
    overflow: hidden; /* Prevents content from overflowing when using the pseudo-element */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 0.5rem;
    cursor: pointer;
    height: 100%; /* Ensure the grid maintains a consistent height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.choose-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, #0d6efd, #0746aa);
    z-index: 0; /* Places it below the content */
    opacity: 0; /* Hidden initially */
    transition: opacity 0.5s ease;
}

.choose-grid-content {
    position: relative;
    z-index: 1; /* Ensures content is above the background gradient */

    color: #555;
    transition: color 0.5s ease;
}

.choose-grid-content h3 {
    font-size: 1.2rem;
    color: #0d6efd;
}

.choose-grid-content p {
    color: #555;
}

/* Hover state */
.choose-grid:hover {
    transform: translateY(-10px); /* Move up by 10px */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

.choose-grid:hover::before {
    opacity: 1; /* Show the gradient background on hover */
    background: linear-gradient(145deg, #0d6efd, #0746aa); /* Shiny gradient effect */
}

.choose-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3); /* White highlight with transparency */
    border-radius: 10px; /* Match border-radius for consistent look */
    transform: rotate(-30deg); /* Rotate to mimic light reflection */
    opacity: 0; /* Hidden initially */
    transition: opacity 0.5s ease;
    z-index: 2; /* Ensure it's above other pseudo-elements */
}

.choose-grid:hover::after {
    opacity: 0.4; /* Adjust for desired glossiness on hover */
}
.choose-grid:hover .choose-grid-content h3 {
  color: white;
}

.choose-grid:hover .choose-grid-content p {
  color: white;

}
.choose-head{
  align-items: center;
  text-align: center;
}
.choose-head h3{
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #f47a20;
}
.choose-content{
  padding: 3.6rem 0;
}

/* form section starts */
.form-container {

  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.contact-form {
  flex: 1;
  background-color:transparent;
  color: white;
  padding: 40px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 0; /* Ensure the form is on top */
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, #0d6efd, #0746aa);
  z-index: -1; /* Behind the form */
  opacity: 1;
  transition: opacity 0.5s ease;
}

.contact-form::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3); 
  border-radius: 10px;
  transform: rotate(-30deg);
  opacity: 0.4; 
  transition: opacity 0.5s ease;
  z-index: -1; /* Behind the form */
}
.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  padding: 15px;
  border: none;
  border-bottom: 0.5px solid #9ec5fe;
background-color: transparent;
  font-size: 16px;
  color: white;

 
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #dddddd; /* Light gray placeholder */
    opacity: 1; /* Ensure full opacity */
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none; /* Disable the focus border */
    box-shadow: none; /* Remove any focus shadow */
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-info {
  flex: 1;
  background-color: white;
  padding: 40px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.contact-info h2 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.contact-info p {
  margin-bottom: 30px;
  color: #777;
  line-height: 1.6;
}

.contact-info ul {
  list-style-type: none;
  padding: 0;
}

.contact-info ul li {
 margin-bottom: 25px;
  color: #333;
}


.fas{
  height: 1rem;
}




.choose-us-section {
  padding: 50px 0;
  overflow: hidden;
}


.container-choose {
  display: flex;
  justify-content: center;
  align-items: center;
 
 margin: 0 auto;
}

.content-choose {
  display: flex;
  align-items: center;
  background:transparent;
  position: relative;
  z-index: 0; /* Ensure the form is on top */
}
.content-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, #0d6efd, #0746aa);
  z-index: -1; /* Behind the form */
  opacity: 1;
  transition: opacity 0.5s ease;
}

.content-choose::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3); 
  border-radius: 10px;
  transform: rotate(-30deg);
  opacity: 0.4; 
  transition: opacity 0.5s ease;
  z-index: -1; /* Behind the form */
}

.content-choose img {
  padding-left: 0.2rem;
}

.choose-text-content {
  padding: 1.5rem;
  color: #fff;
}

.choose-text-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.choose-text-content h2 span {
  color: #f47a20;
}

.choose-text-content ul {
  list-style: none;
}

.choose-text-content ul li {
  margin-bottom: 20px;
  
}

.choose-text-content ul li h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.choose-text-content ul li p {
  font-size: 16px;
  line-height: 1.6;
}
.choose-text-content ul li h3 img{
height: 20px;
margin-right: 10px;
} 



.ms-banner{
  background-image: url(images/Medical\ Records\ Review-Banner.jpg);
  margin-top: 85px;
}
.ms-content{
  background: linear-gradient(90deg, rgba(13, 110, 253, 0.5), rgba(0, 123, 255, 0.5));
text-align: center;
padding: 7.5rem 0;
color: white;
}


.about-us-section {
  padding: 60px 20px;
  text-align: center;
  color:#555;
}



.about-heading h3 {
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #f47a20;
}

.about-heading h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 40px;
}

.about-heading h2 span {
  color: #5570FF;
}

.about-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

.column {
  width: 50%;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.divider {
  width: 1px;
  height: 225px;
  background-color: red;
}

@media (max-width: 768px) {
  .content {
      flex-direction: column;
      align-items: center;
  }

  .column {
      width: 100%;
      margin-bottom: 20px;
  }

  .divider {
      display: none;
  }
}



.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
}
.contact-bgimg{
  background-color: rgba(0, 0, 0, 0.6);
}

.contact-section h2 {
  font-size: 24px;
color: white;
  margin-bottom: 30px;
  text-align: center;
}

.contact-options {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-option {
  background: linear-gradient(145deg, #0d6efd, #0746aa);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin: 0 10px;
  width: 375px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-option p {
  margin: 0;
  font-size: 16px;
  color:white;
}
.contact-option a {
  color:white;
}

.contact-icon {
  font-size: 24px;
  color: #0082b6;
  margin-right: 15px;
}

.contact-or {
  color:white;
  font-size: 18px;
  font-weight: bold;
  background-color:#f47a20;
  padding: 0.5rem 0.6rem;
  border-radius: 50px;
}
.contact-bg{
  background-image: url(images/contact\ bg.jpg);
}
.our-story{
  padding: 3.6rem 0;
  position: relative;
}
.hero-shape21 {
  bottom: 30%;
  right: 30%;
  -webkit-animation: jumpAni 6s linear infinite;
  animation: jumpAni 6s linear infinite;
  position: absolute;
  z-index: 2;
}
.hero-shape31 {
  left: 25px;
  top: 10%;
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
  position: absolute;
  z-index: 2;
}
.hero-shape41 {
  left: 38%;
  top: 30%;
  -webkit-animation: spin 10s linear infinite;
  animation: spin 10s linear infinite;
  position: absolute;
  z-index: 2;
}
.profile-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
margin-bottom: 20px;
}

.profile-card {
 
  border-radius: 20px;
  padding: 20px;
 
  text-align: center;
}

.profile-img {
  width: 100%;
  border-radius: 15px;
 
}

.profile-info {
  background-color: orange;
  padding: 10px;
  border-radius: 10px;
}

.profile-info h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
}

.profile-info p {
  color: #fff;
  font-size: 1rem;
}

.about-section {
  max-width: 800px;
  padding: 1rem 4rem;
}

.about-section h3 {
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #f47a20;
}

.about-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-section p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

.contact-btn {
  padding: 10px 20px;
  background-color: #1e90ff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.goal-section {
  padding: 20px;
}

.goal-section h2 {
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #f47a20;
}

.goal-section h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.goal-section p {
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

/***********************
********************Services card section*
**************************************************************/
.container-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 50px auto;
  padding: 20px;
}

.service-section{
  overflow: hidden;
}
.service-section h2{
  text-align: center;
  margin: 5rem 0;
}
.service-card {
  padding: 30px 18px;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 20px rgba(0,0,0,0.06);
  border-radius: 20px;
  z-index: 2;
}

.service-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  border-radius: 18px;
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-card .box-shape {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out
}

.service-card .box-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #e6e9ee;
  border-radius: 99px;
  text-align: center;
  margin: 0 auto 30px auto;
  /* -webkit-transition:0.4s ease-in-out; */
  /* transition:0.4s ease-in-out; */
}

.service-card .box-title {
  margin-bottom: 4px;
  font-size: 1.5rem;
}
.service-card .box-title{
  color:#0000ee;
  transition: all 0.3s;
}
.service-card:hover .box-title {
  color:white; /* Replace with your desired color */
}

.service-card .box-text {
  margin-bottom: 22px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0;
  
}



.service-card:hover:after {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}



.service-card:hover .box-text {
  color: #bdbdbd;
}

.service-card:hover .box-shape {
  opacity: 0
}



.service-card:hover .box-icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg)
}
 

/* ===== FLIP CARD STYLES ===== */
.about-flip {
  padding: 80px 0;
  background: #f7f9fc;
}

.choose-head {
  text-align: center;
  margin-bottom: 50px;
}

.choose-head h3 {
  font-size: 32px;
  font-weight: 700;
  color: #052c65;
}

.choose-head p {
  color: #666;
  margin-top: 10px;
  font-size: 16px;
}

/* Grid */
.choose-grids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Flip Card */
.flip-card {
  perspective: 1000px;
  text-decoration: none;
  display: block;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
  border: 2px solid #052c65;
  border-radius: 12px;
}

/* Hover + Mobile tap */
.flip-card:hover .flip-inner,
.flip-card:focus .flip-inner {
  transform: rotateY(180deg);
}

/* Front & Back */
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 30px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Front */
.flip-front {
  background: #ffffff;
  color: #052c65;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 35px 25px;

  /* INNER bottom shadow */
  box-shadow:
    inset 0 -12px 20px rgba(5, 44, 101, 0.15);

  transition: all 0.4s ease;
}


/* REMOVE noisy layers */
.flip-front::before,
.flip-front::after {
  display: none;
}

/* ICON */
.flip-front img {
  width: 6rem;
  height: 6rem;
  padding: 14px;
  border-bottom: 2px solid #f47a20;
  border-left: 2px solid #f47a20;
  border-radius: 14px;
  background: #f1f5ff;
  box-shadow: 0 6px 18px #f47a20;
  margin-bottom: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* TITLE */
.flip-front h3 {
  font-size: 20px;
  font-weight: 700;
  color: #052c65;
  line-height: 1.3;
  max-width: 90%;
}

/* HOVER – subtle & classy */
.flip-card:hover .flip-front {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(5, 44, 101, 0.18);
}

.flip-card:hover .flip-front img {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(5, 44, 101, 0.25);
}

/* Back */
.flip-back {
  background: #052c65;
  color: #ffffff;
  transform: rotateY(180deg);
  text-align: center;
}

.flip-back p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .choose-grids {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .choose-grids {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .flip-inner {
    height: 240px;
  }

  .choose-head h3 {
    font-size: 24px;
  }

  .choose-head p {
    font-size: 14px;
  }
}
/* ===== WHY CHOOSE SECTION ===== */
:root {
  --brand-blue: #052c65;
  --brand-dark: #00194c;
  --brand-accent: #f47a20;
  --bg-light: #f4f7ff;
}

/* SECTION */
.why-choose {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--bg-light), #fff);
}

/* HEADER */
.why-header {
  margin-bottom: 50px;
}

.why-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-dark);
}

.why-header h2 span {
  color: var(--brand-blue);
}

/* MAIN GRID */
.why-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 30px;
  align-items: stretch;
}

/* IMAGE CARD */
.why-image {
  grid-column: span 2;
  display: flex;
  height: 240px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* CARDS */
.why-card {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 44, 101, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(5, 44, 101, 0.25);
}

.why-card:hover::before {
  opacity: 1;
}

/* ICON */
.why-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* TEXT */
.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* SCROLL ANIMATION */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */

/* TABLET */
@media (max-width: 992px) {
  .why-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-image {
    grid-column: span 2;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-image {
    grid-column: span 1;
  }

  .why-header h2 {
    font-size: 28px;
  }
}

/* ===== STORY SECTION ===== */
.story-section {
  background: linear-gradient(180deg, #eef5ff, #f8fbff);
  padding: 100px 0;
  overflow: hidden;
}

/* GRID */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* EYEBROW TEXT */
.eyebrow {
  color: #f47a20;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* CONTENT */
.story-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #052c65;
  margin-bottom: 20px;
}

.story-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 18px;
  max-width: 620px;
}

/* BUTTON */
.primary-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 34px;
  background: linear-gradient(135deg, #0056d2, #052c65);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(5, 44, 101, 0.3);
}

/* IMAGE */
.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  animation: float 6s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* EXPERTISE CARD */
.expertise-card {
  margin-top: 90px;
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(5, 44, 101, 0.12);
}

.expertise-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-top: 16px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up {
  transform: translateY(60px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-content h2 {
    font-size: 32px;
  }

  .story-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .story-image img {
    margin: auto;
  }

  .expertise-card {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .story-section {
    padding: 70px 0;
  }

  .story-content h2 {
    font-size: 26px;
  }

  .expertise-card {
    padding: 30px;
  }
}