* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}


body {
  background: #d9dddb;   /* SAME background as image */
}

/* 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;

}

.us{
  color: #94a8ab;
  padding-left: 20px;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #eef2f0;
}

/* SECTION */
.trust {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
}

.trust h1 {
  text-align: center;
  font-size: 44px;
  margin-bottom: 60px;
  color: #1f3a40;
}

.trust h1 span {
  color: #7aa6b2;
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 25px;
  align-items: stretch;
}

/* CARDS */
.card {
  border-radius: 28px;
  padding: 30px;
}

.card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: #8a8a8a;
  line-height: 1.5;
}

/* LIGHT CARD */
.card.light {
  background: #e6ecea;
  color: #1f3a40;
}

/* DARK CARD */
.card.dark {
  background: #193841;
  color: #ffffff;
}

.card.dark p {
  color: #d6e1e4;
}

/* IMAGE */
.image-box {
  grid-row: span 2;
  border-radius: 28px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TABLET */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-box {
    grid-row: span 1;
    grid-column: span 2;
    height: 320px;
  }

  .trust h1 {
    font-size: 34px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .image-box {
    grid-column: span 1;
    height: 260px;
  }

  .trust h1 {
    font-size: 26px;
  }

  .card h3 {
    font-size: 22px;
  }
}



.faq {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.faq h1 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #243d3d;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  background: #edf1ef;
  border-radius: 35px;
}

.faq-item.full {
  grid-column: span 2;
}

.faq-header {
  border: 1px solid #b8c1bf;
  border-radius: 35px;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #243d3d;
}

.arrow {
  font-size: 20px;
}

.faq-content {
  display: none;
  padding: 20px 25px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.faq-item.active .faq-content {
  display: block;
}

/* TABLET */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item.full {
    grid-column: span 1;
  }

  .faq h1 {
    font-size: 34px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .faq h1 {
    font-size: 26px;
  }

  .faq-header h3 {
    font-size: 16px;
  }
}


/* experience year section */
body {
  background: #eef2f1;
}

/* SECTION */
.creativity{
  background: #eef3f1;
  padding: 100px 0 160px; /* bottom extra space image ke liye */
}

.creativity-card{
  position: relative;
  max-width: 1200px;
  margin: auto;
  background: #1f3b44;
  border-radius: 20px;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible; /* image bahar nikal sake */
  color: #fff;
 clip-path: polygon(
    0 0,
    80% 0,
    100% 22%,
    100% 100%,
    0 100%
  );
}
 

/* PAGE LOAD ANIMATION */
.left-content,h1,p {
  animation: slideIn 1.3s ease-out forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-120%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* LEFT */
.left-content {
  /* flex: 1; */
   padding-right: 200px;
}

.left-content h1 {
  font-size: 48px;
  margin-bottom: 20px;

}

.left-content p {
  color: #cbd6d8;
  line-height: 1.6;
  margin-bottom: 25px;
}

.left-content button {
  padding: 14px 30px;
  border-radius: 10px;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

/* CENTER IMAGE */
.center-image {
  position: absolute;
  left: 50%;
  bottom: -80px;
  transform: translate(-50%, 0%);
  z-index: 2;
}

.center-image img {
  width: 280px;
  border-radius: 24px;
  /* padding-top: 20px; */
 
}

@media (max-width: 992px) {
  .center-image {
    position: static;
    transform: none;
    margin: 30px 0;
  }

  .left-content,
  .right-content {
    padding: 0;
  }
}


/* RIGHT */
.right-content {
  /* flex: 1; */
   padding-left: 160px;
}

.experience-box {
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  /* max-width: 220px; */
}

.experience-box h2 {
  font-size: 48px;
}

.experience-box p {
  margin-top: 10px;
  color: #cbd6d8;
}

.right-text {
  margin-top: 20px;
  color: #cbd6d8;
}

/*  Left content RESPONSIVE */
@media (max-width: 992px) {
  .creativity-card {
    flex-direction: column;
    text-align: center;
  }

  .experience-box {
    margin: auto;
  }
}

@media (max-width: 576px) {
  .left-content h1 {
    font-size: 32px;
  }

  .center-image img {
    width: 100%;
  }
}

/* Right content Responsive  */
@media (max-width: 768px) {

  .right-content {
    width: 100%;
    text-align: center;
  }

  .experience-box {
    width: 100%;
    max-width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    margin-bottom: 15px;
  }

  .experience-box h2 {
    font-size: 42px;
  }

  .experience-box p {
    font-size: 16px;
  }

  .right-text {
    font-size: 14px;
    line-height: 1.6;
  }
}


/* CTA section */
body {
  background: #e9eeee;
}

.cta {
  background-color: #eef3f2;
  padding: 80px 20px;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Text Section */
.cta-text h2 {
  font-size: 48px;
  color: #1f3b45;
  font-weight: 700;
}

.cta-text h3 {
  font-size: 42px;
  color: #4a6f7a;
  font-weight: 600;
  margin-top: 8px;
}

/* Form Section */
.cta-form {
  display: flex;
  gap: 15px;
}

.cta-form input {
  width: 380px;
  padding: 16px 18px;
  font-size: 16px;
  border: 1px solid #aabec4;
  border-radius: 10px;
  outline: none;
}

.cta-form input:focus {
  border-color: #1f3b45;
}

.cta-form button {
  padding: 16px 30px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  background-color: #1f3b45;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-form button:hover {
  background-color: #162e36;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-form {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cta-text h1 {
    font-size: 34px;
  }

  .cta-text h2 {
    font-size: 30px;
  }

  .cta-form {
    flex-direction: column;
    width: 100%;
  }

  .cta-form input {
    width: 100%;
  }

  .cta-form button {
    width: 100%;
  }
}

/* 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;
  }
}



