:root{
  --red:#cb181e;
  --blue:#062759;
  --white:#fefefe;
  --pink:#b7a9b4;
  --gray:#373f51;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  overflow-x:hidden;
  background:#fff;
  color:var(--gray);
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* =========================
HEADER
========================= */

.header{
  width:100%;
  background:#fff;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 2px 20px rgba(0,0,0,0.05);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0px 0;
}

.logo img{
  width:75px;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:35px;
}

.nav-links li a{
  text-decoration:none;
  color:var(--blue);
  font-weight:600;
  transition:0.3s;
}

.nav-links li a:hover{
  color:var(--red);
}

.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:var(--blue);
}
/* =========================
HERO SECTION
========================= */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
   padding:50px 0 60px;

  background:
  linear-gradient(
    135deg,
     rgba(6,39,89,0.92),
  rgba(12,70,140,0.75),
  rgba(3,18,45,0.85)
  ),
  url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?q=80&w=1800&auto=format&fit=crop");

  background-size:cover;
  background-position:center;
}

/* ANIMATED OVERLAY */

.hero::before{
  content:"";
  position:absolute;
  width:700px;
  height:700px;
  background:rgba(255,255,255,0.05);
  border-radius:50%;
  top:-250px;
  right:-150px;
  animation:floatOne 8s ease-in-out infinite;
}

.hero::after{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(255,255,255,0.04);
  border-radius:50%;
  bottom:-180px;
  left:-120px;
  animation:floatTwo 10s ease-in-out infinite;
}

/* GLOW EFFECT */

.hero-overlay{
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at top right,
  rgba(255,255,255,0.12),
  transparent 35%),

  radial-gradient(circle at bottom left,
  rgba(255,255,255,0.10),
  transparent 30%);
}

/* CONTENT */

.hero-content-center{
  position:relative;
  z-index:2;
  max-width:980px;
  margin:auto;
  text-align:center;
  color:#fff;
}

.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:14px 26px;

  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);

  border-radius:60px;

  backdrop-filter:blur(12px);

  font-size:14px;
  font-weight:600;
  letter-spacing:1px;

  animation:fadeDown 1s ease;
}

.hero-tag::before{
  content:"";
  width:10px;
  height:10px;
  background:#fff;
  border-radius:50%;
}

/* HERO TITLE */

.hero-content-center h1{
  font-size:72px;
  line-height:1.12;
  font-weight:800;
  margin:30px 0 25px;

  animation:fadeUp 1s ease;
}

.hero-content-center p{
  max-width:850px;
  margin:auto;

  font-size:18px;
  line-height:1.9;
  color:#e5e5e5;

  margin-bottom:45px;

  animation:fadeUp 1.2s ease;
}

/* HERO BUTTONS */

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:60px;

  animation:fadeUp 1.4s ease;
}

.btn-primary,
.btn-secondary{
  padding:16px 36px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  transition:0.4s;
}

.btn-primary{
  background:#cb181e;
  color:#fff;
  box-shadow:0 10px 30px rgba(203,24,30,0.35);
}

.btn-primary:hover{
  transform:translateY(-6px);
  background:#a50f15;
}

.btn-secondary{
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter:blur(10px);
  color:#fff;
}

.btn-secondary:hover{
  transform:translateY(-6px);
  background:#fff;
  color:#062759;
}

/* CONTACT BOX */

.hero-contact-box{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:25px;

  animation:fadeUp 1.6s ease;
}

.hero-contact-card{
  display:flex;
  align-items:center;
  gap:18px;

  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.15);

  padding:20px 25px;
  border-radius:18px;

  backdrop-filter:blur(10px);

  transition:0.4s;
}

.hero-contact-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.16);
}

.hero-contact-icon{
  width:62px;
  height:62px;

  background:#fff;
  color:#cb181e;

  border-radius:18px;

  display:flex;
  justify-content:center;
  align-items:center;

  font-size:22px;
}

.hero-contact-card h4{
  font-size:17px;
  margin-bottom:5px;
}

.hero-contact-card p{
  margin:0;
  font-size:14px;
  color:#ddd;
}

/* =========================
ANIMATIONS
========================= */

@keyframes floatOne{
  0%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(30px);
  }
  100%{
    transform:translateY(0px);
  }
}

@keyframes floatTwo{
  0%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-30px);
  }
  100%{
    transform:translateY(0px);
  }
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeDown{
  from{
    opacity:0;
    transform:translateY(-30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

  .hero-content-center h1{
    font-size:56px;
  }

}

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:-100%;
    width:100%;
    flex-direction:column;
    background:#062759;
    padding:30px;
    transition:0.4s;
  }

  .nav-links.active{
    left:0;
  }

  .hero{
    padding:50px 0 45px;
  }

  .hero-content-center h1{
    font-size:42px;
  }

  .hero-content-center p{
    font-size:16px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .hero-contact-box{
    flex-direction:column;
    align-items:center;
  }

  .hero-contact-card{
    width:100%;
    max-width:350px;
  }

}

/* =========================
CARDIOLOGY RADIATION EFFECT
ADD INSIDE HERO SECTION
========================= */

.hero{
  position:relative;
  overflow:hidden;
}

/* ECG LINE EFFECT */

.hero::before{
  content:"";
  position:absolute;
  width:200%;
  height:3px;

  background:
  linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.2) 20%,
    #ffffff 50%,
    rgba(255,255,255,0.2) 80%,
    transparent 100%
  );

  top:50%;
  left:-100%;

  animation:ecgMove 6s linear infinite;

  opacity:0.18;
}

/* HEARTBEAT RADIATION */

.hero::after{
  content:"";
  position:absolute;

  width:450px;
  height:450px;

  border-radius:50%;

  background:
  radial-gradient(
    rgba(255,255,255,0.12),
    transparent 70%
  );

  top:50%;
  left:50%;

  transform:translate(-50%, -50%);

  animation:pulseGlow 4s ease-in-out infinite;
}

/* EXTRA PULSE CIRCLES */

.hero-overlay{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero-overlay span{
  position:absolute;
  border:2px solid rgba(255,255,255,0.10);
  border-radius:50%;

  animation:radiation 6s linear infinite;
}

/* CIRCLE 1 */

.hero-overlay span:nth-child(1){
  width:300px;
  height:300px;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

/* CIRCLE 2 */

.hero-overlay span:nth-child(2){
  width:500px;
  height:500px;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  animation-delay:2s;
}

/* CIRCLE 3 */

.hero-overlay span:nth-child(3){
  width:700px;
  height:700px;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  animation-delay:4s;
}

/* ECG MOVEMENT */

@keyframes ecgMove{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(50%);
  }

}

/* GLOW EFFECT */

@keyframes pulseGlow{

  0%{
    transform:translate(-50%, -50%) scale(0.9);
    opacity:0.4;
  }

  50%{
    transform:translate(-50%, -50%) scale(1.1);
    opacity:1;
  }

  100%{
    transform:translate(-50%, -50%) scale(0.9);
    opacity:0.4;
  }

}

/* RADIATION CIRCLES */

@keyframes radiation{

  0%{
    transform:translate(-50%, -50%) scale(0.8);
    opacity:0.5;
  }

  100%{
    transform:translate(-50%, -50%) scale(1.3);
    opacity:0;
  }

}

/* =========================
ABOUT
========================= */

.about{
  padding:110px 0;
}

.about-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-image img{
  width:100%;
  border-radius:25px;
}

.section-tag{
  color:var(--red);
  font-weight:700;
  letter-spacing:1px;
}

.about-content h2{
  font-size:45px;
  color:var(--blue);
  margin:20px 0;
}

.about-content p{
  line-height:1.9;
  color:#555;
  margin-bottom:30px;
}

.about-points{
  display:grid;
  gap:20px;
}

.point{
  display:flex;
  align-items:center;
  gap:15px;
}

.point i{
  width:55px;
  height:55px;
  background:var(--red);
  color:#fff;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* =========================
SERVICES
========================= */

.services{
  padding:110px 0;
  background:#f7f9fd;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:45px;
  color:var(--blue);
  margin:15px 0;
}

.section-title p{
  max-width:700px;
  margin:auto;
  line-height:1.8;
  color:#555;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.service-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 5px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card img{
  width:100%;
  height:230px;
  object-fit:cover;
}

.service-content{
  padding:25px;
}

.service-content h3{
  color:var(--blue);
  margin-bottom:15px;
}

.service-content p{
  line-height:1.8;
  color:#555;
}

/* =========================
WHY US
========================= */

.why-us{
  padding:110px 0;
  background:var(--blue);
}

.white-text h2,
.white-text p,
.white-text span{
  color:#fff;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.why-box{
  background:#fff;
  padding:40px 30px;
  border-radius:20px;
  text-align:center;
}

.why-box i{
  font-size:55px;
  color:var(--red);
  margin-bottom:20px;
}

.why-box h3{
  color:var(--blue);
  margin-bottom:15px;
}

.why-box p{
  color:#555;
  line-height:1.8;
}

/* =========================
CTA
========================= */

.cta{
  padding:100px 0;
  background:linear-gradient(to right,var(--red),#062759);
  text-align:center;
  color:#fff;
}

.cta h2{
  font-size:48px;
  margin-bottom:20px;
}

.cta p{
  max-width:700px;
  margin:auto;
  line-height:1.8;
  margin-bottom:35px;
}

/* =========================
FOOTER
========================= */

.footer{
  background:var(--blue);
  color:#fff;
  padding-top:90px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px;
  padding-bottom:60px;
}

.footer-about img{
  width:220px;
  margin-bottom:20px;
}

.footer-about p{
  color:#ddd;
  line-height:1.9;
}

.footer-links h3,
.footer-contact h3{
  margin-bottom:25px;
}

.footer-links ul{
  list-style:none;
}

.footer-links ul li{
  margin-bottom:15px;
}

.footer-links ul li a{
  text-decoration:none;
  color:#ddd;
}

.footer-contact p{
  margin-bottom:15px;
  color:#ddd;
}
.footer-bottom a {
  color: #cb181e;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.social-icons{
  display:flex;
  gap:15px;
  margin-top:25px;
}

.social-icons a{
  width:45px;
  height:45px;
  background:var(--red);
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  text-decoration:none;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
  padding:20px;
  color:#ddd;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

  .hero-wrapper,
  .about-wrapper,
  .services-grid,
  .why-grid,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:90px;
    left:-100%;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:30px;
    transition:0.3s;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
  }

  .nav-links.active{
    left:0;
  }

  .hero-wrapper,
  .about-wrapper,
  .services-grid,
  .why-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:40px;
  }

  .section-title h2,
  .about-content h2,
  .cta h2{
    font-size:34px;
  }

  .hero-buttons{
    flex-direction:column;
  }

}





/* =========================
SERVICES HERO SECTION
========================= */


.services-hero{
  position:relative;
  padding: 60px 0; /* FIXED GAP */
  overflow:hidden;

  background:
  linear-gradient(
    135deg,
    rgba(6,39,89,0.92),
    rgba(12,70,140,0.75),
    rgba(3,18,45,0.85)
  ),
  url("https://images.unsplash.com/photo-1580281657527-47f249e8f4df?q=80&w=1800&auto=format&fit=crop");

  background-size:cover;
  background-position:center;
}

/* animated glow background effect */
.services-hero::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  top:-200px;
  right:-150px;
  animation:floatOne 8s ease-in-out infinite;
}

.services-hero::after{
  content:"";
  position:absolute;
  width:450px;
  height:450px;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
  bottom:-180px;
  left:-120px;
  animation:floatTwo 10s ease-in-out infinite;
}

/* overlay glow */
.hero-overlay{
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 40%),
  radial-gradient(circle at bottom left, rgba(255,255,255,0.10), transparent 35%);
}

/* CONTENT */
.services-hero-content{
  position:relative;
  z-index:2;
  max-width:950px;
  margin:auto;
  text-align:center;
  color:#fff;
}

/* TAG */
.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:14px 26px;

  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);

  border-radius:60px;

  backdrop-filter:blur(12px);

  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
}

.hero-tag::before{
  content:"";
  width:10px;
  height:10px;
  background:#062759; /* FIXED BLUE INSTEAD OF RED */
  border-radius:50%;
}

/* TITLE */
.services-hero-content h1{
  font-size:70px;
  line-height:1.12;
  margin:28px 0 20px;
  color:#fff;
}

/* TEXT */
.services-hero-content p{
  max-width:850px;
  margin:auto;
  font-size:18px;
  line-height:1.9;
  color:#e5e5e5;
  margin-bottom:45px;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:55px;
}

/* CONTACT BOX */
.hero-contact-box{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:25px;
}

.hero-contact-card{
  display:flex;
  align-items:center;
  gap:18px;

  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.15);

  padding:20px 25px;
  border-radius:18px;

  backdrop-filter:blur(10px);

  transition:0.4s;
}

.hero-contact-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.16);
}

.hero-contact-icon{
  width:62px;
  height:62px;

  background:#062759; /* FIXED BLUE */
  color:#fff;

  border-radius:18px;

  display:flex;
  justify-content:center;
  align-items:center;

  font-size:22px;
}

.hero-contact-card h4{
  color:#fff;
  margin-bottom:5px;
}

.hero-contact-card p{
  margin:0;
  font-size:14px;
  color:#ddd;
}

/* ANIMATIONS */
@keyframes floatOne{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(25px);}
}

@keyframes floatTwo{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-25px);}
}

/* RESPONSIVE */
@media(max-width:991px){
  .services-hero-content h1{
    font-size:52px;
  }
}

@media(max-width:768px){

  .services-hero{
    padding:50px 0; /* MOBILE GAP FIX */
  }

  .services-hero-content h1{
    font-size:38px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .hero-contact-box{
    flex-direction:column;
    align-items:center;
  }

  .hero-contact-card{
    width:100%;
    max-width:360px;
  }
}
/* =========================
SERVICES SECTION
========================= */

.services-section{
  padding:110px 0;
  background:#f7f9fd;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.service-card{
  background:#fff;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.4s ease;
  position:relative;
}

.service-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.service-image{
  overflow:hidden;
}

.service-image img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:0.5s;
}

.service-card:hover .service-image img{
  transform:scale(1.1);
}

.service-content{
  padding:35px 30px;
  position:relative;
}

.service-icon{
  width:70px;
  height:70px;
  background:var(--red);
  color:#fff;
  border-radius:18px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:28px;
  margin-top:-70px;
  position:relative;
  z-index:5;
  box-shadow:0 10px 25px rgba(203,24,30,0.3);
}

.service-content h3{
  color:var(--blue);
  font-size:26px;
  margin:25px 0 15px;
}

.service-content p{
  line-height:1.9;
  color:#555;
  font-size:15px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .services-hero-wrapper{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .services-grid{
    grid-template-columns:1fr;
  }

  .services-hero-content h1{
    font-size:42px;
  }

  .service-content h3{
    font-size:22px;
  }

}

/* =========================
CONTACT HERO
========================= */

.contact-hero{
  padding:120px 0;
  background:
  linear-gradient(rgba(6,39,89,0.88),rgba(6,39,89,0.88)),
  url('https://images.unsplash.com/photo-1505751172876-fa1923c5c528?q=80&w=1600&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
  text-align:center;
}

.contact-hero-content{
  max-width:850px;
  margin:auto;
}

.contact-hero-content .section-tag{
  color:#fff;
}

.contact-hero-content h1{
  font-size:58px;
  color:#fff;
  margin:20px 0;
  line-height:1.2;
}

.contact-hero-content p{
  color:#ddd;
  line-height:1.9;
  font-size:18px;
}
/* =========================
CONTACT SECTION (FULL RESPONSIVE FIX)
========================= */

.contact-section{
  padding:110px 0;
  background:#f7f9fd;
}

.contact-wrapper{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:40px;
  align-items:start;
}

/* =========================
FORM BOX
========================= */

.contact-form-box{
  background:#fff;
  padding:50px;
  border-radius:25px;
  box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.form-header h2{
  font-size:42px;
  color:var(--blue);
  margin:15px 0;
}

.form-header p{
  color:#666;
  margin-bottom:35px;
}

/* FORM */
.contact-form{
  width:100%;
}

/* INPUT ROW */
.input-group{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:16px 18px;
  border:1px solid #ddd;
  border-radius:12px;
  outline:none;
  font-family:'Poppins',sans-serif;
  font-size:15px;
  transition:0.3s;
  background:#fff;
}

/* focus effect */
.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--red);
  box-shadow:0 0 0 4px rgba(203,24,30,0.08);
}

/* textarea */
.contact-form textarea{
  resize:none;
  min-height:140px;
  margin-bottom:25px;
}

/* submit button (if you have one) */
.contact-form button{
  width:100%;
  padding:16px;
  border:none;
  border-radius:12px;
  background:var(--red);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover{
  background:#a50f15;
  transform:translateY(-3px);
}

/* =========================
CONTACT INFO
========================= */

.contact-info-box{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.contact-info-card{
  background:#fff;
  padding:25px;
  border-radius:20px;
  display:flex;
  align-items:center;
  gap:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.contact-info-card:hover{
  transform:translateY(-6px);
}

.contact-icon{
  width:65px;
  height:65px;
  background:var(--red);
  color:#fff;
  border-radius:18px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:22px;
  flex-shrink:0;
}

.contact-info-card h3{
  color:var(--blue);
  margin-bottom:5px;
  font-size:18px;
}

.contact-info-card p{
  color:#666;
  font-size:14px;
}

/* IMAGE */
.contact-image img{
  width:100%;
  border-radius:25px;
  object-fit:cover;
  box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

/* =========================
MAP
========================= */

.map-section iframe{
  width:100%;
  height:350px;
  border:0;
  display:block;
}

/* =========================
RESPONSIVE DESIGN
========================= */

/* TABLET */
@media(max-width:1100px){

  .contact-wrapper{
    grid-template-columns:1fr;
  }

}

/* MOBILE */
@media(max-width:768px){

  .contact-section{
    padding:70px 0;
  }

  .contact-form-box{
    padding:30px 20px;
  }

  .form-header h2{
    font-size:30px;
  }

  .input-group{
    grid-template-columns:1fr;
  }

  .contact-info-card{
    flex-direction:row;
    align-items:flex-start;
  }

  .contact-icon{
    width:55px;
    height:55px;
    font-size:20px;
  }

}

/* SMALL MOBILE */
@media(max-width:480px){

  .form-header h2{
    font-size:26px;
  }

  .contact-info-card{
    flex-direction:column;
    text-align:center;
  }

  .contact-icon{
    margin:auto;
  }
}

/* =========================
REQUISITION HERO
========================= */

.requisition-hero{
  padding:120px 0;
  background:
  linear-gradient(
     rgba(6,39,89,0.92),
    rgba(12,70,140,0.75),
    rgba(3,18,45,0.85)
  ),
  url("https://images.unsplash.com/photo-1584982751601-97dcc096659c?q=80&w=1600&auto=format&fit=crop");

  background-size:cover;
  background-position:center;
  text-align:center;
}

.requisition-hero-content{
  max-width:850px;
  margin:auto;
}

.requisition-hero-content .section-tag{
  color:#fff;
}

.requisition-hero-content h1{
  font-size:58px;
  color:#fff;
  margin:20px 0;
  line-height:1.2;
}

.requisition-hero-content p{
  color:#ddd;
  line-height:1.9;
  font-size:18px;
}

/* =========================
REQUISITION SECTION
========================= */

.requisition-section{
  padding:110px 0;
  background:#f7f9fd;
}

.requisition-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.requisition-card{
  background:#fff;
  padding:40px 35px;
  border-radius:25px;
  text-align:center;
  box-shadow:0 10px 35px rgba(0,0,0,0.05);
  transition:0.4s ease;
  position:relative;
  overflow:hidden;
}

.requisition-card:hover{
  transform:translateY(-12px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.req-icon{
  width:85px;
  height:85px;
  background:linear-gradient(to right,#cb181e,#062759);
  color:#fff;
  margin:auto;
  border-radius:22px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:34px;
  margin-bottom:30px;
}

.requisition-card h3{
  font-size:26px;
  color:var(--blue);
  margin-bottom:18px;
}

.requisition-card p{
  color:#666;
  line-height:1.9;
  margin-bottom:30px;
}

.download-btn{
  display:inline-block;
  padding:14px 28px;
  background:var(--red);
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:600;
  transition:0.3s;
}

.download-btn:hover{
  background:var(--blue);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

  .requisition-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .requisition-grid{
    grid-template-columns:1fr;
  }

  .requisition-hero-content h1{
    font-size:40px;
  }

  .requisition-card h3{
    font-size:22px;
  }

}



