/* resources/css/app.css */

/* Custom Variables */
:root {
    --navy: #0f172a;
      /* color: rgb(96, 127, 213) !important; */
    --dark-navy: #172b49;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --light: #e2c8c8;
    --gray: #cbd5e1;
    --dark-gray: #334155;
    --beige: #f8f9fa;

    --new:#ffd8d0;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: #0f172a;
    /* color: var(--light); */
    line-height: 1.7;
}

/* Navbar */
.navbar {
    background: var(--navy) !important;
    border-bottom: 1px solid var(--dark-gray) !important;
}

.navbar-brand {
    color: var(--accent) !important;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    color: var(--gray) !important;
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* Hero Section */
/* .hero-bg {
    min-height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), 
                url('/images/hero-bg.jpeg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    position: relative;
} */
 .hero-bg {
    min-height: 100vh;
    background:
        linear-gradient(
            /* to right, */
              135deg,
            rgba(67, 82, 119, 0.92) 0%,
            rgba(58, 70, 97, 0.85) 50%,
            rgba(212, 137, 24, 0.45) 100%
        ),
        url('/images/hero-bg.jpeg') center/cover no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-bg > .container {
    position: relative;
    z-index: 2;
}

.hero-bg h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

/* .hero-bg h1 span.text-white {
    display: block;
} */

.hero-bg p.text-accent {
    font-size: 1.5rem;
    font-weight: 600;
}
.hero-bg p.text-accent1 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 600;
}
.hero-bg p.text-accent2 {
    font-size: 1.5rem;
    font-weight: 600;
}
/* Buttons */
.btn-accent {
    background: var(--accent);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline-accent:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-3px);
}

/* Exam Badges */
.badge-exam {
    background: rgba(30, 41, 59, 0.8);
    color: var(--gray);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
}

/* Programs Cards */
/* Section spacing */
#programs {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Section heading */
#programs h2 {
    letter-spacing: 1px;
}

/* Accent subtitle color */
#programs .text-warning {
    color: #f97316 !important; /* Orange shade */
}

/* Card styling */
#programs .card {
    transition: all 0.3s ease;
    border-radius: 18px;
}

/* Card hover effect */
#programs .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Icon box styling */
#programs .icon-box {
    width: 60px;
    height: 60px;
    background-color: #fff3e6;
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* List styling */
#programs ul li {
    margin-bottom: 8px;
}

/* Card title hover color change */
#programs .card:hover h5 {
    color: #ea580c !important;
}

/* Smooth icon hover */
#programs .card:hover .icon-box {
    background-color: #f94316;
    color: rgb(209, 133, 133);
    transition: 0.3s;
}
/* ---style */
/* Hero Buttons - Screenshot प्रमाणे exact style */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content:start;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-btn {
    background: transparent; /* orange */
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px; /* pill shape */
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    text-decoration: none;
}

.hero-btn:hover {
    background: #ea580c;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.hero-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Exam Tags - bottom row */
.exam-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 1rem;
}

.exam-tag {
    background: rgba(30, 41, 59, 0.8); /* dark transparent */
    color: #cbd5e1;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #475569;
}

/* Hero Text Adjustments */
.hero-bg h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-bg .text-accent {
    color: #f97316;
    font-weight: 700;
}

.hero-bg p.lead {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}
/* ----card */

/* Icon Square - Left side, pink hover */
.icon-square {
    width: 5rem;
    height: 5rem;
    background: rgba(236, 72, 153, 0.1); /* pink tint */
    color: #f97316; /* pink */
    transition: all 0.3s ease;
}

.card:hover .icon-square {
    background: rgba(236, 72, 153, 0.2); /* pink hover */
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.25);
}

/* Card Hover - pink accent */
.card:hover {
    border-color: #f97316 !important;
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15) !important;
}

.text-accent {
    color: #f97316 !important; /* pink accent */
}

/* Card Title */
.card-title {
    
    transition: color 0.3s;
}

.card:hover .card-title {
    color: #ec4899 !important;
}
/* ---about */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.about p{
     margin-top: 5rem;
}
.about-feature-card {
    margin-bottom: 5rem;
    background: white;
    border-radius: 16px; /* rounded corners like screenshot */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); /* soft shadow */
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid rgba(249, 115, 22, 0.08); /* very light orange border */
}

.about-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.18); /* orange tinted hover shadow */
    border-color: rgba(249, 115, 22, 0.25);
}

.feature-icon-circle {
    width: 72px; /* screenshot प्रमाणे थोडा मोठा */
    height: 72px;
    background: rgba(249, 115, 22, 0.07); /* very light orange */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.12);
    transition: all 0.3s ease;
}

.about-feature-card:hover .feature-icon-circle {
    background: rgba(249, 115, 22, 0.15);
    transform: scale(1.12);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
}

.feature-icon-circle i {
    font-size: 2.2rem; /* icon size screenshot प्रमाणे */
}

.feature-card-body {
    padding: 2rem 1.8rem 2.5rem; /* balanced padding */
    text-align: center;
}

.card-title {
    color: #f97316 !important;
    font-weight: 700;
    font-size: 1.45rem;
    /* margin-bottom: 1rem; */
    margin-top: 5rem;
    line-height: 1.3;
}

.about-feature-card p {
    color: #4b5563;
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

ul.list-unstyled li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.85rem;
    font-size: 0.96rem;
    color: #4b5563;
    text-align: left;
}

ul.list-unstyled li::before {
    content: "•";
    color: #f97316;
    position: absolute;
    left: 0.1rem;
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: bold;
}

/* Quote Box - screenshot प्रमाणे */
.bg-navy {
    background: #0f172a !important;
}

.quote-box p {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.quote-box .bi-lightbulb-fill {
    color: #f97316;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 991px) {
    .about-feature-card {
        margin-bottom:5rem;
    }
}
/* ---footer */


    #values {
      padding: 80px 0;
      /* background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); */
    }

    .section-title {
      font-size: 3.2rem;
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 0.5rem;
      background: linear-gradient(90deg, #dde4ec);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .subtitle {
      font-size: 1.4rem;
      color: #f97316;
      font-weight: 500;
      margin-bottom: 3.5rem;
    }

    .value-card {

      padding: 2.2rem 1.8rem;
      transition: all 0.35s ease;
      backdrop-filter: blur(6px);
      margin-top: 3.5rem;
    
    }

    .value-card:hover {
      transform: translateY(-12px);
      /* background: rgba(30, 41, 59, 0.85); */
      border-color: #f97316;
      box-shadow: 0 20px 40px rgba(245, 158, 11, 0.12);
    }

    .icon-circle {
      width: 50px;
      height: 50px;
      background: rgba(245, 158, 11, 0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto .5rem;
      transition: all 0.4s ease;
    }

    .value-card:hover .icon-circle {
      background: rgba(245, 158, 11, 0.25);
      transform: scale(1.12);
    }

    .value-icon {
      font-size: 1.7rem;
      color: #f97316;
    }

    .value-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #cbd5e1;
      margin-bottom: 1rem;
    }

    .value-text {
      color: #cbd5e1;
      font-size: 1rem;
      line-height: 1.6;
    }

    @media (max-width: 576px) {
      .section-title { font-size: 2.6rem; }
      .subtitle { font-size: 1.25rem; }
      .value-card { padding: 1.8rem 1.4rem; }
    }
  