/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f4f7f7;
}

/* Navbar Container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #ebf0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img{
  height: 60px;      /* Desktop logo size */
  width: auto;
  display: block;
}


/* Links Styling */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4a6367;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #1a363a;
}

/* Active Underline */
.nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #4a7a80;
    bottom: -8px;
    left: 0;
}

.arrow {
    font-size: 10px;
    margin-left: 4px;
}

/* Button Styling */
.btn-main {
    background-color: #1a363a;
    color: white !important;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-main:hover {
    background-color: #2c4d52;
}

/* Hide Checkbox & Icons for Desktop */
#check, .icons {
    display: none;
}

.mobile-cta {
    display: none;
}

/* --- Responsive Design (Mobile & Tablet) --- */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 5%;
    }

    .nav-action {
        display: none; /* Hide desktop button */
    }

    .icons {
        display: block; /* Show hamburger */
        cursor: pointer;
    }

    /* Hamburger Lines */
    .menu-btn, .menu-btn::before, .menu-btn::after {
        content: '';
        background: #1a363a;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        transition: 0.4s;
        display: block;
    }
    .menu-btn::before { transform: translateY(-8px); }
    .menu-btn::after { transform: translateY(5px); }

    /* Nav Links Panel (Mobile) */
    .nav-links {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #ebf0f0;
        top: 60px;
        left: -100%; /* Hidden by default */
        flex-direction: column;
        justify-content: center;
        transition: 0.5s;
    }

    .nav-links a.active::after {
        display: none; /* Mobile pe line zaruri nahi */
    }

    .mobile-cta {
        display: block;
        margin-top: 20px;
    }

    /* Checkbox Logic to Toggle Menu */
    #check:checked ~ .nav-links {
        left: 0;
    }

    /* Animation for Hamburger to Close icon */
    #check:checked ~ .icons .menu-btn {
        background: transparent;
    }
    #check:checked ~ .icons .menu-btn::before {
        transform: rotate(45deg);
    }
    #check:checked ~ .icons .menu-btn::after {
        transform: rotate(-45deg) translateY(-1px);
    }
}


h1 {
  /* text-align: center; */
display: flex;
justify-content: center; /* left–right */
align-items: center;     /* top–bottom */
font-size: 60px;
padding-top: 150px;
padding-bottom: 120px;
color: #2c4d52;
background:#eef3f1;

}

/* ===== SECTION ===== */
.purpose {
  background:#eef3f1;
  padding:100px 20px;
}

.purpose-container {
  max-width:1200px;
  margin:auto;
}

/* ===== HEADING ===== */
.purpose-head {
  /* display:flex; */
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:60px;
  gap:40px;
  text-align: center;

}

.purpose-head h2 {
font-size:40px;
color:#18323b;
line-height:1.2; 
justify-content: center; /* left–right */
align-items: center;     /* top–bottom */
padding-top: 150px;
padding-bottom: 120px;
/* background:#eef3f1; */
}

.purpose-head span {
  color:#6fa2b2;
  display: block;
  font-size: 30px;
  /* text-align: center; */
  
}



/* ===== GRID ===== */
.purpose-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
}

/* ===== CARD ===== */
.purpose-card{
  background:#e3e8e7;
  padding:30px;
  border-radius:24px;
  margin-left: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 10%;
}


.purpose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


.purpose-card i{
  font-size:40px;
  color:#4f7f8b;
  margin-bottom:20px;
}

.purpose-card h3{
  font-size:22px;
  color:#18323b;
  margin-bottom:10px;
}

.purpose-card p{
  font-size:15px;
  color:#8a9598;
  line-height:1.6;
}

/* ===== CENTER IMAGE ===== */
.purpose-image{
  background:#fff;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.purpose-image img{
  width:70%;
  border-radius:20px;
}

/* Tablet Responsive */
@media (max-width: 992px){
  .purpose-head{
    flex-direction:column;
  }

  .purpose-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* Mobile Responsive */
@media (max-width: 576px){
  .purpose-head h1{
    font-size:32px;
  }

  .purpose-grid{
    grid-template-columns:1fr;
  }

  .purpose-image img{
    width:80%;
  }
}


/* Testional section */
body {
  background: #eef2f1;
}

/* SECTION */
.testimonial-section {
  padding: 80px 20px;
}

.testimonial-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT IMAGE */
.testimonial-image img {
  width: 420px;
  max-width: 100%;
  border-radius: 20px;
}

/* RIGHT CONTENT */
.testimonial-content {
  flex: 1;
  position: relative;
 
}

.testimonial-content h1 {
  font-size: 48px;
  color: #1f3b45;
  margin-bottom: 30px;
}

.testimonial-content span{
  color: #6fa3b3;
  padding-left: 20px;
}



/* QUOTE BOX */
.quote-box {
  border: 2px solid #aabec4;
  border-radius: 22px;
  padding: 30px;
  max-width: 540px;
  background: transparent;
}

.quote-box p {
  font-size: 18px;
  line-height: 1.7;
  color: #1f3b45;
}

.quote-box h4 {
  margin-top: 18px;
  font-size: 16px;
  color: #7a8c92;
}



/* STATS */
.stats {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  background: #e5eceb;
  padding: 30px;
  border-radius: 20px;
  max-width: 500px;
}

.stat h2 {
  font-size: 36px;
  color: #1f3b45;
}

.stat p {
  color: #7a8c92;
  margin-top: 5px;
}

.divider {
  width: 1px;
  height: 50px;
  background: #b8c7cb;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .testimonial-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .quote-box,
  .stats {
    margin: auto;
  }

  .arrow {
    position: static;
    margin: 20px 0;
  }
}

@media (max-width: 576px) {
  .testimonial-content h1 {
    font-size: 32px;
  }

  .quote-box p {
    font-size: 16px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .divider {
    display: none;
  }
}

body {
  background: hsl(165, 13%, 94%);
}

/* SECTION */
.process {
  padding: 80px 20px;
}

.process-container h1 {
 font-size: 48px;
  color: #1f3b45;
  margin-bottom: 30px;
}

.process-container span {
  color: #6fa3b3;
  padding-left: 20px;
}


.testimonial-content {
  flex: 1;
  position: relative;
 
}



/* TITLE */
.process-title {
  text-align: center;
  font-size: 48px;
  color: #1f3b45;
  margin-bottom: 80px;
}

.process-title span {
  color: #6fa3b3;
}

/* ITEMS */
.process-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #9aa6a8;
}

.process-item h2 {
  font-size: 36px;
  color: #1f3b45;
}

.process-item p {
  max-width: 420px;
  font-size: 18px;
  color: #728081;
  text-align: right;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .process-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .process-item p {
    text-align: left;
  }

  .process-title {
    font-size: 34px;
  }
}




/* footer section */
.footer {
  background-color: #1f3b45;
  color: #cfd8dc;
  padding: 60px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-col h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cfd8dc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: #3f6672;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  transition: background 0.3s;
}

.social-icons a:hover {
  background-color: #ffffff;
  color: #1f3b45;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}


