*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  color:#1f2937;
  background:#fff;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.header{
  background:white;
  border-bottom:1px solid #e5e7eb;
  position:sticky;
  top:0;
  z-index:1000;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

.logo{
  width:170px;
}

nav{
  display:flex;
  gap:24px;
}

nav a{
  text-decoration:none;
  color:#1f2937;
  font-weight:600;
  font-size:15px;
}

nav a:hover{
  color:#0b63ce;
}

.call-btn,
.primary{

  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  
  background:linear-gradient(
    135deg,
    #ff214f,
    #d90429
    
  );

  color:white;

  text-decoration:none;

  padding:15px 30px;

  border-radius:999px;

  font-weight:700;

  border:1px solid rgba(255,255,255,.15);

  backdrop-filter:blur(20px);

  box-shadow:
  0 10px 30px rgba(255,33,79,.35);

  transition:.4s ease;
}

.call-btn:hover,
.primary:hover{

  transform:translateY(-4px);

  background:linear-gradient(
    135deg,
    #ff4d73,
    #ff214f
  );

  box-shadow:
  0 20px 45px rgba(255,33,79,.55);
}


.hero{
    position:relative;
    overflow:hidden;

    padding:140px 0 180px;

    background:linear-gradient(
        135deg,
        #f4f8ff,
        #ffffff
    );
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.badge,
.section-label{
  display:inline-block;
  color:#0b63ce;
  background:#e8f1ff;
  padding:9px 18px;
  border-radius:30px;
  font-weight:700;
  margin-bottom:18px;
}

h1{
  font-size:56px;
  line-height:1.1;
  color:#0b2d5c;
  margin-bottom:22px;
}

h2{
  font-size:40px;
  color:#0b2d5c;
  margin-bottom:18px;
}

p{
  font-size:17px;
  line-height:1.7;
  color:#4b5563;
}

.buttons{
  margin-top:30px;
  display:flex;
  gap:16px;
}

.btn{
  display:inline-block;
  text-decoration:none;
  padding:15px 28px;
  border-radius:35px;
  font-weight:700;
}

nav a{

    position:relative;

    padding:12px 18px;

    border-radius:999px;

    text-decoration:none;

    color:#1f2937;

    font-weight:600;

    transition:.35s ease;
}

nav a:hover{

    background:rgba(255,255,255,.25);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.45);

    color:#0b63ce;

    box-shadow:
    0 10px 30px rgba(11,99,206,.15);

    transform:translateY(-2px);
}

nav a:hover{

    color:#d90429;

    box-shadow:
    0 10px 25px rgba(217,4,41,.15);
}

nav a.active{

    background:rgba(11,99,206,.08);

    color:#0b63ce;

    border:1px solid rgba(11,99,206,.15);

    backdrop-filter:blur(12px);

    border-radius:999px;
}


.hero-slider{
    position:absolute;
    top:0;
    right:0;

    width:60%;
    height:100%;

    z-index:1;
}
.slide{
    position:absolute;
    inset:0;

    opacity:0;

    transition:1.5s ease;
}

.slide.active{
    opacity:1;
}

.hero-slider img{

    width:100%;
    height:100%;
    object-fit:cover;

    mask-image:
    linear-gradient(
        to left,
        black 70%,
        transparent 100%
    );

    -webkit-mask-image:
    linear-gradient(
        to left,
        black 70%,
        transparent 100%
    );
}

.secondary{
  border:2px solid #d90429;
  color:#d90429;
  background:white;
  transition:.3s;
}

.secondary:hover{
  background:#d90429;
  color:white;
}
.white{
  background:white;
  color:#0b63ce;
}

.hero-img img{
  width:100%;
  border-radius:30px;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.intro{
  padding:120px 0;
  margin-top:120px;
}

.section-tag{
    display:inline-block;
    margin-bottom:35px;
}

.section-tag{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 24px;

    border-radius:999px;

    background:rgba(22,77,168,.08);

    border:1px solid rgba(22,77,168,.15);

    color:#164da8;

    font-weight:700;

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    box-shadow:
    0 8px 25px rgba(22,77,168,.08);

    margin-bottom:30px;
}

.section-tag:hover{

    transform:translateY(-2px);

    box-shadow:
    0 12px 30px rgba(22,77,168,.15);

    transition:.3s ease;
}

.about-buttons{
    display:flex;
    gap:18px;
    margin-top:35px;
    flex-wrap:wrap;
}

.tabs{
    display:flex;
    gap:40px;
    margin:35px 0 25px;
}

.tab-btn{

    background:none;
    border:none;

    font-size:17px;
    font-weight:600;

    cursor:pointer;

    color:#64748b;

    padding-bottom:12px;

    transition:.3s;
}

.tab-btn.active{

    color:#164da8;

    border-bottom:3px solid #164da8;
}

.tab-panel{
    display:none;

    font-size:18px;

    line-height:1.8;

    color:#475569;

    padding-top:20px;

    border-top:1px solid #e5e7eb;
}

.tab-panel.active{
    display:block;
}

.about-section{
    margin-top:10px;
    padding:80px 0;
}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.about-image img{

    width:100%;

    border-radius:35px;

    object-fit:cover;

    transition:.6s;
}
.about-image img:hover{

    transform:scale(1.03);
}

.cards-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.info-card,
.service-card,
.faq-item{
  background:white;
  padding:30px;
  border-radius:22px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.info-card h3,
.service-card h3,
.faq-item h3{
  color:#0b2d5c;
  margin-bottom:12px;
  font-size:22px;
}

.about-more{
  padding:80px 0;
  background:#f8fafc;
}

.split{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:50px;
  align-items:center;
}

.about-box{
  background:#0b63ce;
  padding:40px;
  border-radius:28px;
  color:white;
}

.about-box h3,
.about-box p{
  color:white;
}

.about-box a{
  display:inline-block;
  margin-top:18px;
  color:white;
  font-size:24px;
  font-weight:800;
  text-decoration:none;
}

.services{
  padding:80px 0;
}

.service-grid{
  margin-top:35px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.service-card{
  border-top:5px solid #d62828;
}

.referral{
  padding:70px 0;
}

.referral-box{
  background:linear-gradient(135deg,#0b63ce,#0b2d5c);
  color:white;
  text-align:center;
  padding:70px 30px;
  border-radius:35px;
}

.referral-box h2,
.referral-box p{
  color:white;
}

.referral-box .btn{
  margin-top:25px;
}


/* =========================
   SERVICES SECTION
========================= */

.services{
    padding:120px 0;
    background:
linear-gradient(
180deg,
#ffffff 0%,
#f8fbff 100%
);
}

.services-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

/* LEFT */

.services-image{
    margin-bottom:35px;
}

.services-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:30px;

    transition:.5s ease;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.services-image img:hover{
    transform:scale(1.03);
}

.services-content h2{
    margin:20px 0;
}

.services-content p{
    margin-bottom:30px;
}

/* RIGHT */

.services-right{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.service-item{

    display:flex;
    align-items:center;
    gap:25px;

    background:white;

    padding:25px;

    border-radius:30px;

    transition:.35s ease;

    box-shadow:
    0 10px 35px rgba(0,0,0,.05);
}

.service-item:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(22,77,168,.12);
}

.service-item img{

    width:120px;
    height:120px;

    border-radius:50%;

    object-fit:cover;

    flex-shrink:0;
}

.service-text h3{

    color:#0b2d5c;

    font-size:24px;

    margin-bottom:12px;
}

.service-text p{

    font-size:15px;

    margin-bottom:15px;

    line-height:1.7;
}

.service-text a{

    color:#d90429;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.service-text a:hover{

    color:#ff214f;
}

/* MOBILE */

@media(max-width:950px){

    .services-layout{

        grid-template-columns:1fr;
    }

    .service-item{

        flex-direction:column;

        text-align:center;
    }

    .service-item img{

        width:140px;
        height:140px;
    }

}


/* =========================
   APPROACH SECTION
========================= */

.approach-section{
    padding:120px 0;
    background:white;
}

.approach-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 80px;
}

.approach-header h2{
    margin:20px 0;
}

.approach-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.approach-card{

    background:white;

    border-radius:30px;

    padding:40px;

    text-align:center;

    box-shadow:
    0 15px 45px rgba(0,0,0,.06);

    transition:.4s ease;

    border:1px solid #edf2f7;
}

.approach-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(22,77,168,.12);
}

.approach-card img{

    width:160px;
    height:160px;

    object-fit:cover;

    border-radius:50%;

    margin-bottom:25px;
}

.approach-number{

    width:70px;
    height:70px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:22px;
    font-weight:800;

    color:white;

    background:linear-gradient(
        135deg,
        #ff214f,
        #d90429
    );

    box-shadow:
    0 10px 30px rgba(217,4,41,.35);
}

.approach-card h3{

    color:#0b2d5c;

    font-size:28px;

    margin-bottom:18px;
}

.approach-card p{

    color:#64748b;

    line-height:1.8;
}

/* TABLET */

@media(max-width:950px){

    .approach-grid{
        grid-template-columns:1fr;
    }

    .approach-card{
        padding:35px;
    }
}

/* MOBILE */

@media(max-width:600px){

    .approach-section{
        padding:80px 0;
    }

    .approach-card img{

        width:130px;
        height:130px;
    }

    .approach-number{

        width:60px;
        height:60px;

        font-size:18px;
    }

    .approach-card h3{

        font-size:24px;
    }
}

.faq{
  padding:80px 0;
  background:#f8fafc;
}

.faq-list{
  margin-top:35px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.footer{
  background:#081f3f;
  color:white;
  padding-top:70px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1.2fr 1fr 1fr;
  gap:35px;
}

.footer-logo{
  width:140px;
  background:white;
  padding:8px;
  border-radius:12px;
  margin-bottom:18px;
}

.footer h3{
  margin-bottom:18px;
  color:white;
}

.footer p,
.footer a{
  color:#dbeafe;
  display:block;
  text-decoration:none;
  margin-bottom:10px;
  font-size:15px;
}

.footer a:hover{
  color:white;
}

.footer-bottom{
  margin-top:50px;
  padding:20px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.15);
  color:#dbeafe;
}

@media(max-width:950px){
  .nav{
    flex-direction:column;
    gap:20px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-grid,
  .split,
  .cards-3,
  .service-grid,
  .faq-list,
  .footer-grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:40px;
  }

  h2{
    font-size:32px;
  }

  .hero{
    padding:60px 0;
  }
}
