
/* ================= Hero Section Start ================= */




    /* ===== HERO SECTION CSS START ===== */
    #home {
      height: 100vh;
      display: flex;
      justify-content: center;
      /* Horizontal center */
      align-items: center;
      /* Vertical center */
      text-align: center;
      /* Text center */
      position: relative;
      background: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)), url("images/Hero Picture.jpg") no-repeat center center/cover;
      color: white;
      padding: 0 20px;
    }

    #home::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.45);
      /* Slightly darker overlay */
      z-index: 1;
    }

    #home .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-btns {
      display: flex;
      /* Flex container */
      justify-content: center;
      /* Horizontal center */
      gap: 20px;
      /* Buttons ke beech gap */
      margin-top: 20px;
      /* Thoda upar se space */
    }

    /* Hero Slides Fix */
    .hero-slides {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
      /* Text ke peeche rahe */
    }

    .hero-slides .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    /* First slide initially visible */
    .hero-slides .slide:first-child {
      opacity: 1;
    }

   

    #home h1 {
      font-size: 4rem;
      margin-bottom: 15px;
      text-transform: uppercase;
    }

    #home p {
      font-size: 1.3rem;
      margin-bottom: 30px;
      color: #ddd;
    }

    .hero-btns {
      display: flex;
      gap: 20px;
    }

    .btn-main {
      background: var(--primary-orange);
      color: white;
      padding: 15px 35px;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 700;
      transition: 0.3s;
      border: 2px solid var(--primary-orange);
    }

    .btn-outline {
      background: transparent;
      color: white;
      padding: 15px 35px;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 700;
      transition: 0.3s;
      border: 2px solid white;
    }

    .btn-main:hover {
      background: #e65c00;
      border-color: #e65c00;
      transform: scale(1.05);
    }

    .btn-outline:hover {
      background: white;
      color: var(--dark-charcoal);
      transform: scale(1.05);
    }






section {
    padding: 120px 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TITLE ANIMATION */
.hero-title {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.5s;
}

/* SUBTITLE ANIMATION */
.hero-subtitle {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 1s;
}

/* BUTTONS ANIMATION */
.hero-btns {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.5s;
}


/* KEYFRAME */
@keyframes fadeUp {
    to {

        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeDown 1s ease forwards;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
    animation: fadeUp 1.2s ease forwards;
}

.btn {
    background: var(--primary);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #e65c00;
    transform: scale(1.05);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary);
}

footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 30px;
}

/* Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= Hero Section End ================= */