/* ================================= */
/* HERO */
/* ================================= */

.services-hero{
  padding: 150px 20px 130px !important;
  text-align:center;
  background: #2E5E99;
  color:white;
  position:relative;
  overflow:hidden;
}

/* subtle glow */
.services-hero::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  top:-200px;
  right:-150px;
}

.services-hero h1{
  font-size:56px;
  margin-bottom:18px;
  color:white;
  font-weight:600;
  letter-spacing:.5px;
}

.services-hero p{
  max-width:620px;
  margin:auto;
  font-size:18px;
  line-height:1.7;
  color:rgba(255,255,255,0.9);
}


/* ================================= */
/* ABOUT SECTION */
/* ================================= */

.about-section{
  position:relative;
  padding:160px 100px;
  background:#f8fafc;
}

/* LAYOUT */
.about-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}

/* TEXT */
.about-left h1{
  font-size:44px;
  margin-bottom:20px;
  color:#1f4a80; 
  font-weight:600;
}

.about-intro{
  font-size:16px;
  color:#555;
  line-height:1.8;
  margin-bottom:40px;
  max-width:520px;
}


/* ================================= */
/* FEATURES */
/* ================================= */

.about-features{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.feature{
  display:flex;
  gap:18px;
  align-items:flex-start;
  transition:.3s ease;
}

/* ICON */
.feature-icon{
  width:46px;
  height:46px;
  background:rgba(46,94,153,0.08);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:.3s;
}

.feature-icon svg{
  width:22px;
  height:22px;
  stroke:#2E5E99;
  transition:.3s;
}

/* TEXT */
.feature h4{
  margin:0 0 5px;
  font-size:16px;
  font-weight:600;
  color:#111;
}

.feature p{
  margin:0;
  font-size:14px;
  color:#666;
  line-height:1.6;
}

/* HOVER */
.feature:hover{
  transform:translateX(6px);
}

.feature:hover .feature-icon{
  background:#2E5E99;
  box-shadow:0 10px 25px rgba(46,94,153,0.25);
}

.feature:hover .feature-icon svg{
  stroke:white;
}


/* ================================= */
/* RIGHT SIDE */
/* ================================= */

.about-right{
  position:relative;
  display:flex;
  justify-content:center;
}

.about-right img{
  width:110%;
  max-width:650px;
  border-radius:22px;
  display:block;
  box-shadow:
    0 50px 120px rgba(0,0,0,0.25),
    0 20px 40px rgba(46,94,153,0.15);
}


/* EXPERIENCE CARD */
.experience-card{
  position:absolute;
  bottom:-25px;
  left: 0px;
  background:white;
  border-radius:14px;
  padding:16px 22px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

.experience-card h3{
  font-size:24px;
  color:#2E5E99;
  margin:0;
}

.experience-card p{
  font-size:12px;
  color:#666;
  margin:0;
}

.star-icon{
  width:40px;
  height:40px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:10px;
  background:#2E5E99;
  color:white;

  box-shadow:0 10px 25px rgba(46,94,153,0.3);
}

.star-icon svg{
  width:20px;
  height:20px;
}


/* ========================= */
/* SCROLL STORY SECTION */
/* ========================= */

.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:
    opacity 1.2s cubic-bezier(.16,1,.3,1),
    transform 1.2s cubic-bezier(.16,1,.3,1);
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* stagger delays */
.reveal-delay-1{ transition-delay: .15s; }
.reveal-delay-2{ transition-delay: .3s; }
.reveal-delay-3{ transition-delay: .45s; }
.reveal-delay-4{ transition-delay: .6s; }

.about-scroll{
  padding:160px 100px;
  background:linear-gradient(135deg,#2E5E99,#1f4a80);
  color:white;
  position:relative;
  overflow:hidden;
}

.scroll-container{
  max-width:800px;
  margin:auto;
  position:relative;
}

/* TITLE */
.about-scroll h2{
  text-align:center;
  font-size:42px;
  margin-bottom:80px;
  color: white;
}

/* VERTICAL LINE */
.scroll-line{
  position:absolute;
  left:50%;
  top:120px;
  transform:translateX(-50%);
  width:2px;
  height:100%;
  background:rgba(255,255,255,0.2);
}

/* ITEMS */
.scroll-item{
  position:relative;
  width:50%;
  padding:30px;
  margin-bottom:80px;
}

/* LEFT SIDE */
.scroll-item:nth-child(even){
  left:0;
  text-align:right;
}

/* RIGHT SIDE */
.scroll-item:nth-child(odd){
  left:50%;
}

/* DOT */
.scroll-item::before{
  content:"";
  position:absolute;
  top:35px;
  width:12px;
  height:12px;
  background:white;
  border-radius:50%;
  box-shadow:0 0 15px rgba(255,255,255,0.6);
}

/* DOT POSITION */
.scroll-item:nth-child(even)::before{
  right:-6px;
}

.scroll-item:nth-child(odd)::before{
  left:-6px;
}

/* TEXT */
.scroll-item h3{
  font-size:30px;
  margin-bottom:10px;
}

.scroll-item p{
  font-size:16px;
  color:rgba(255,255,255,0.8);
  line-height:1.7;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
    position: relative;
    background: linear-gradient(
        135deg,
        #1f4a80 0%,
        #2E5E99 50%,
        #173a63 100%
    );
    color: white;
    padding: 140px 120px 60px;
    overflow: hidden;
}

/* glow effect */
.footer::before {
    content: "";
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 500px;

    background: radial-gradient(
        ellipse at center,
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.1) 40%,
        transparent 75%
    );

    pointer-events: none;
    z-index: 0;
}

/* ========================= */
/* LAYOUT */
/* ========================= */

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 120px;

    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* headings */
.footer h4 {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* links + text */
.footer p,
.footer a {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 2;
    text-decoration: none;
    transition: all .3s ease;
}

.footer a:hover {
    color: white;
    transform: translateX(4px);
}

/* ========================= */
/* CONTACT */
/* ========================= */

.footer-contact {
    display: flex;
    gap: 80px;
}

.contact-group {
    min-width: 200px;
}

/* ========================= */
/* NAV + SOCIAL */
/* ========================= */

.footer-nav,
.footer-social {
    min-width: 150px;
}

/* ========================= */
/* BOTTOM */
/* ========================= */

.footer-bottom {
    margin-top: 80px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);

    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-left p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer-right a {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.footer-right a:hover {
    color: white;
}