* {
    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);
    }
}

 

.recognition-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 70px 50px 50px 50px; 
  text-align: center;
  color: #2c4d52;
  /* padding-bottom: 200px;  */
   margin-bottom:0;
  padding-bottom:0;
}

.recognition-section h1 {
  margin-bottom: 10px;   /* gap kam karo */
  font-size: 60px;
  /* padding-top: 500px; */
}

.recognition-section p {
  margin-top: 0;         /* extra top margin hatao */
  font-size: 40px;
  color: #6fa3b3;
}




/*  Card Section  */
/* ===== SECTION ===== */
.ideas{
  background:#eef3f1;
  padding:200px 50px;
   
}

.ideas-container{
  max-width:1200px;
  margin:auto;
}

/* ===== HEADING ===== */
.ideas-heading{
  text-align:center;
  margin-bottom:100px;
}

.ideas-heading h1{
  font-size:48px;
  color:#18323b;
  line-height:1.2;
   /* padding-bottom: 500px; */
}

.ideas-heading span{
  /* color:#6fa2b2; */
   color: #2c4d52;
   font-size: 25px;
 
}

/* ===== GRID ===== */
.ideas-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:40px;
}

/* ===== CARD ===== */
.idea-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.idea-card img{
  width:100%;
  height:280px;
  object-fit:cover;
}

/* ===== FOOTER ===== */
.idea-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 28px;
}

.idea-footer h3{
  font-size:20px;
  color:#18323b;
}

.idea-footer span{
  font-size:28px;
  color:#a7a7a7;
  font-weight:600;
}

/* Tablet */
@media (max-width: 992px){
  .ideas-heading h1{
    font-size:40px;
  }

  .idea-card img{
    height:220px;
  }
}

/* Mobile */
@media (max-width: 576px){
  .ideas-grid{
    grid-template-columns:1fr;
  }

  .ideas-heading h1{
    font-size:32px;
  }

  .idea-footer h3{
    font-size:18px;
  }
}



/* ---------------- ANIMATIONS ---------------- */

/* LEFT → RIGHT PAGE LOAD */
.animate{
  opacity:0;
  transform:translateX(-60px);
  animation: slideIn 1s ease forwards;
}

@keyframes slideIn{
  to{
    opacity:1;
    transform:translateX(0);
  }
}

/* CARD ANIMATION (NO POSITION CHANGE) */
.card-animate{
  opacity:0;
  transform:scale(0.95);
  animation: fadeUp 0.8s ease forwards;
  animation-delay:0.6s;
}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:scale(1);
  }
}

/* Tablet Responsive */
@media(max-width:992px){
  .services-wrapper{
    flex-direction:column;
    text-align:center;
  }

  .services-cards{
    justify-content:center;
  }
}

/* Mobile */
@media(max-width:576px){
  .services-content h1{
    font-size:32px;
  }

  .services-image img{
    width:220px;
  }

  .services-cards{
    flex-direction:column;
  }

  .service-card{
    width:100%;
  }
}



/* Update Section */
body {
  background: hsl(0, 4%, 84%);
}

/* ================= PAGE LOAD ANIMATIONS ================= */

@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(120%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* LEFT SIDE CARDS */
.update-card {
  display: flex;
  gap: 20px;
  align-items: center;

  opacity: 0;
  animation: slideFromLeft 1.2s ease-out forwards;
}

/* stagger effect */
.update-card:nth-child(1) {
  animation-delay: 0.2s;
}
.update-card:nth-child(2) {
  animation-delay: 0.45s;
}
.update-card:nth-child(3) {
  animation-delay: 0.7s;
}

/* RIGHT FEATURED CARD */
.featured-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;

  opacity: 0;
  animation: slideFromRight 1.3s ease-out forwards;
  animation-delay: 0.4s;
}



/* 3
-process */
body {
  background: hsl(165, 13%, 94%);
}

/* SECTION */
.process {
  padding: 80px 20px;
}

.process-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.process-title {
  text-align: center;
  font-size: 50px;
  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;
  }
}

/* testinor 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 h1 span {
  color: #6fa3b3;
  
}




/* footer section */
.footer {
  background-color: #1f3b45;
  color: #cfd8dc;
  padding: 60px 20px;
  /* margin-top: 100px; */
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  /* margin-top: 100px; */

}

.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;
  }
}


