/* =====================================================
   PRATIBHA PRATIYOGITA 2026
   MAIN WEBSITE CSS
===================================================== */


/* =====================
   RESET
===================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: 92%;
    max-width: 1180px;
    margin: auto;
}


/* =====================
   COLORS
===================== */

:root {
    --primary: #f28c28;
    --primary-dark: #d96f0b;
    --dark: #142033;
    --text: #667085;
    --light: #fff7ed;
    --light-bg: #f7f8fa;
    --border: #e5e7eb;
    --white: #ffffff;
}


/* =====================
   HEADER
===================== */

.header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ================= FOUNDATION BRAND ================= */

.foundation-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.foundation-brand-logo {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
}

.foundation-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.foundation-brand-info h2 {
    margin: 0;

    font-size: 19px;
    font-weight: 550;

    color: #142033;

    line-height: 1.2;
}

.foundation-brand-info p {
    margin: 4px 0 0;

    font-size: 10px;
    font-weight: 600;

    color: #f28c28;

    letter-spacing: 0.5px;
}
/* =====================
   NAVIGATION
===================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > a,
.dropdown-btn {
    padding: 11px 13px;

    color: #344054;

    font-size: 14px;
    font-weight: 600;

    border: none;
    background: transparent;

    cursor: pointer;

    transition: 0.3s;
}

.nav-menu > a:hover,
.dropdown-btn:hover,
.nav-menu .active {
    color: var(--primary);
}


/* =====================
   DROPDOWN
===================== */

.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-btn span {
    font-size: 16px;
}

.dropdown-menu {
    position: absolute;

    top: 48px;
    left: 0;

    width: 210px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 8px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition: 0.25s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;

    padding: 11px 12px;

    border-radius: 7px;

    color: #344054;

    font-size: 14px;

    transition: 0.2s;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
}


/* =====================
   APPLY BUTTON
===================== */

.apply-btn {
    background: var(--primary) !important;

    color: #ffffff !important;

    border-radius: 6px;

    margin-left: 7px;
}

.apply-btn:hover {
    background: var(--primary-dark) !important;
}


/* =====================
   MOBILE MENU BUTTON
===================== */

.menu-btn {
    display: none;

    border: none;
    background: transparent;

    font-size: 27px;

    cursor: pointer;

    color: var(--dark);
}


/* =====================
   HERO
===================== */
.hero {
    color: #ffffff;
    padding: 100px 0;
    
    /* Background setup */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Animation: 12 second mein 3 images change hongi aur infinite loop chalega */
    animation: changeBackground 12s infinite;
}

/* Yahan par hum 3 images ka slider bana rahe hain */
@keyframes changeBackground {
    0%, 25% {
        /* Pehli Image yahan lagayein */
        background-image: 
            linear-gradient(rgba(20, 32, 51, 0.85), rgba(36, 51, 75, 0.85)), 
            url('image/home_page.png');
    }
    33.33%, 58.33% {
        /* Dusri Image yahan lagayein */
        background-image: 
            linear-gradient(rgba(20, 32, 51, 0.85), rgba(36, 51, 75, 0.85)), 
            url('image/activity.png');
    }
    66.66%, 91.66% {
        /* Teesri Image yahan lagayein */
        background-image: 
            linear-gradient(rgba(20, 32, 51, 0.85), rgba(36, 51, 75, 0.85)), 
            url('image/img\ 2.jpeg');
    }
    100% {
        /* Wapas Pehli Image tak aane ke liye */
        background-image: 
            linear-gradient(rgba(20, 32, 51, 0.85), rgba(36, 51, 75, 0.85)), 
            url('image/home_page.png');
    }
}

.hero-content {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 60px;

    align-items: center;
}


/* HERO LEFT */

.hero-tag {
    color: #ffad57;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.hero-left h1 {
    font-size: clamp(42px, 6vw, 68px);

    line-height: 1.08;

    margin: 18px 0;

    max-width: 700px;
}

.hero-left h1 span {
    color: #ffad57;
}

.hero-left p {
    max-width: 650px;

    color: #d8dee8;

    font-size: 17px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}

.btn {
    display: inline-block;

    padding: 13px 23px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s;

    cursor: pointer;
}

.primary-btn {
    background: var(--primary);

    color: #ffffff;
}

.primary-btn:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}

.outline-btn {
    border: 1px solid rgba(255,255,255,0.35);

    color: #ffffff;
}

.outline-btn:hover {
    background: #ffffff;

    color: var(--dark);
}


/* =====================
   HERO CARD
===================== */

.hero-right {
    display: flex;

    justify-content: center;
}

.competition-card {
    width: 100%;
    max-width: 390px;

    padding: 45px 30px;

    text-align: center;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 24px;

    backdrop-filter: blur(10px);
}

.trophy {
    font-size: 80px;

    margin-bottom: 10px;
}

.competition-card h2 {
    font-size: 28px;
}

.competition-card p {
    margin-top: 5px;

    color: #d8dee8;
}

#prizeAmount{
    color: #ffb45c;

    font-size: 45px;

    font-weight: 800;

    margin-top: 20px;
}


/* =====================
   COMMON SECTION
===================== */

.section {
    padding: 85px 0;
}

.light-bg {
    background: var(--light-bg);
}


/* =====================
   SECTION HEADING
===================== */

.section-heading {
    max-width: 700px;

    text-align: center;

    margin: 0 auto 40px;
}

.section-heading > span {
    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;
    
}

.section-heading h2 {
    font-size: 40px;

    line-height: 1.2;

    margin: 8px 0 12px;
}

.section-heading h2 strong {
    color: var(--primary);
}

.section-heading p {
    color: var(--text);

    font-size: 15px;
}


/* =====================
   INFORMATION CARDS
===================== */

.info-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.info-card {
    padding: 27px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 15px;

    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.07);

    border-color: #ffd3a8;
}

.info-icon {
    width: 55px;
    height: 55px;

    border-radius: 12px;

    background: var(--light);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;

    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 18px;

    margin-bottom: 5px;
}

.info-card p {
    color: var(--text);

    font-size: 14px;
}


/* =====================
   EXAM PATTERN
===================== */

.pattern-box {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.pattern-box > div {
    background: #ffffff;

    padding: 60px;

    border-radius: 15px;

    border: 1px solid var(--border);

    text-align: center;
}

.pattern-box h3 {
    font-size: 17px;

    margin-bottom: 8px;
}

.pattern-box p {
    color: var(--text);

    font-size: 14px;
}


/* =====================
   PRIZES
===================== */

.prize-grid {
    display: grid;
    /* Yahan 3 ki jagah 4 kar dijiye */
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.prize-card {
    padding: 35px 25px;

    text-align: center;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: #ffffff;

    transition: 0.3s;
}

.prize-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08);
}

.medal {
    font-size: 50px;

    margin-bottom: 10px;
}

.prize-card h3 {
    font-size: 20px;
}

.prize-card h2 {
    color: var(--primary);

    font-size: 36px;

    margin: 8px 0;
}

.prize-card p {
    color: var(--text);
}

.other-prize {
    margin-top: 22px;

    padding: 20px;

    background: var(--light);

    border-radius: 12px;

    text-align: center;

    border: 1px solid #ffe1c2;
}

.other-prize strong {
    margin-right: 10px;
}

.other-prize span {
    color: var(--text);
}


/* =====================
   CTA
===================== */

.cta {
    padding: 65px 0;

    background: var(--primary);

    color: #ffffff;
}

.cta-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.cta-content span {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.cta-content h2 {
    font-size: 34px;

    margin-top: 6px;
}

.white-btn {
    background: #ffffff;

    color: var(--dark);
}

.white-btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}


/* =====================
   FOOTER
===================== */

.footer {
    background: #111827;
    color: #ffffff;
    padding-top: 55px;
    font-size: 12px;
    font-weight: 10px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 45px;

    padding-bottom: 45px;
}

.footer .logo-text h2 {
    color: #ffffff;
    
    
}

.footer-about p {
    max-width: 330px;

    color: #9ca3af;

    font-size: 14px;

    margin-top: 18px;
}

.footer-links h3 {
    font-size: 17px;

    margin-bottom: 17px;
}

.footer-links a,
.footer-links p {
    display: block;

    color: #9ca3af;

    font-size: 14px;

    margin: 9px 0;

    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid #293141;

    padding: 18px;

    text-align: center;

    color: #9ca3af;

    font-size: 13px;
}

/* Social Media Icons Styling */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px; 
}

/* Yahan maine .footer-links aage add kiya hai taki yeh code zyada powerful ho jaye */
.footer-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f29c38; 
    color: #ffffff !important;
    border-radius: 50%; 
    font-size: 14px; /* Thoda chota kiya taki text bahar na nikle */
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(242, 156, 56, 0.3);
    margin: 0; /* Purana margin reset kar diya */
}

/* Hover Effect */
.footer-links .social-icon:hover {
    background-color: #142033; 
    transform: translateY(-5px); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff !important;
}
/* =====================================================
   RESPONSIVE
===================================================== */


/* TABLET */

@media (max-width: 1000px) {

    .nav-menu > a,
    .dropdown-btn {
        padding: 10px 8px;

        font-size: 13px;
    }

    .hero-content {
        gap: 35px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 800px) {

    /* MOBILE NAV */

    .menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        background: #ffffff;

        padding: 15px 5%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        box-shadow:
            0 10px 25px rgba(0,0,0,0.08);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu > a,
    .dropdown-btn {
        width: 100%;

        text-align: left;

        padding: 13px 10px;
    }

    .dropdown-menu {
        position: static;

        width: 100%;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        border: none;

        padding-left: 15px;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .apply-btn {
        text-align: center !important;

        margin: 7px 0;
    }


    /* HERO */

    .hero {
        padding: 75px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero-left h1 {
        font-size: 45px;
    }


    /* SECTIONS */

    .section {
        padding: 65px 0;
    }

    .section-heading h2 {
        font-size: 34px;
    }


    /* PATTERN */

    .pattern-box {
        grid-template-columns: 1fr;
    }


    /* PRIZES */

    .prize-grid {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* SMALL MOBILE */

@media (max-width: 550px) {

    .navbar {
        height: 70px;
    }

    .nav-menu {
        top: 70px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

}
/* =========================================
   ABOUT PAGE
========================================= */

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: center;
}

/* Main Box Setup */
.about-visual {
    min-height: 390px;
    border-radius: 22px;

    /* Background mein aapka gradient (halka transparent) aur uske piche photo */
    background-image: 
        linear-gradient(
            135deg,
            rgba(156, 135, 108, 0.85),
            rgba(255, 224, 186, 0.85)
        ),
        url('image/prize.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Aapka diya hua exact layout code */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;

    /* Hover animation ko smooth banane ke liye */
    transition: 0.3s;
}

/* Hover Effect (Mouse le jane par thoda upar uthega) */
.about-visual:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Trophy ki image ka size bada rakhne ke liye */
.about-visual img {
    width: 120px; /* Aap ise 100px ya 150px karke apne hisaab se adjust kar sakte hain */
    height: auto;
    margin-bottom: 20px; /* Trophy aur text ke beech ka gap */
}

.about-visual-icon {
    font-size: 90px;
    margin-bottom: 15px;
}

.about-visual h3 {
    font-size: 25px;
}

.about-visual p {
    color: #667085;
    margin-top: 5px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 18px;
}

.about-content p {
    color: #667085;
    margin-bottom: 15px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;

    margin-top: 25px;
}

.about-points div {
    padding: 12px;

    background: #fff7ed;

    border-radius: 8px;

    color: #344054;

    font-size: 14px;

    font-weight: 600;
}

.about-points div::first-letter {
    color: #f28c28;
}


/* =========================================
   MISSION
========================================= */

.mission-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.mission-card {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    padding: 30px;

    transition: 0.3s;
}

.mission-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.07);
}

.mission-card h3 {
    margin: 15px 0 8px;
}

.mission-card p {
    color: #667085;

    font-size: 14px;
}


/* =========================================
   VISION
========================================= */

.vision-box {
    background: #142033;

    color: #ffffff;

    border-radius: 22px;

    padding: 55px;

    display: grid;

    grid-template-columns: 130px 1fr;

    gap: 35px;

    align-items: center;
}

.vision-icon {
    width: 110px;
    height: 110px;

    border-radius: 50%;

    background: #f28c28;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 50px;
}

.vision-box h2 {
    font-size: 38px;

    margin: 7px 0 15px;
}

.vision-box h2 strong {
    color: #ffad57;
}

.vision-box p {
    color: #d8dee8;

    max-width: 750px;

    margin-bottom: 10px;
}


/* =========================================
   ABOUT RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 300px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .vision-box {
        grid-template-columns: 1fr;

        padding: 35px;
    }

    .vision-icon {
        width: 85px;
        height: 85px;

        font-size: 38px;
    }

}


@media (max-width: 550px) {

    .about-points {
        grid-template-columns: 1fr;
    }

    .vision-box h2 {
        font-size: 30px;
    }

}
/* Background & Container */
.application-form-section {
    padding: 60px 20px;
    background-color: #f8f9fa; /* Ek halka gray background taki form highlight ho */
}

.modern-form-container {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Soft 3D shadow */
    border-top: 5px solid #f29c38; /* Aapka orange/primary color */
}

/* Header */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}
.form-header h1 {
    font-size: 32px;
    color: #142033; /* Dark blue */
    margin-bottom: 8px;
    font-weight: bold;
}
.form-header p {
    color: #666;
    font-size: 16px;
}

/* Section Titles */
.section-title {
    font-size: 18px;
    color: #142033;
    border-bottom: 2px solid #ffe0ba; /* Peach underline */
    padding-bottom: 10px;
    margin: 35px 0 20px 0;
    font-weight: 600;
}

/* Grid Layout for Inputs */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.full-width {
    grid-column: span 2;
}

/* Input Boxes */
.input-box {
    display: flex;
    flex-direction: column;
}
.input-box label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}
.input-box input {
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fdfdfd;
    font-size: 15px;
    transition: 0.3s ease;
    color: #333;
    outline: none;
}
.input-box input:hover {
    border-color: #bbb;
}
.input-box input:focus {
    border-color: #f29c38; /* Primary color on focus */
    box-shadow: 0 0 0 4px rgba(242, 156, 56, 0.15);
    background: #ffffff;
}

/* File Upload Field */
.photo-upload input[type="file"] {
    padding: 10px;
    background: #fff0dd; /* Light peach background for photo upload */
    border: 1px dashed #f29c38;
    cursor: pointer;
}

/* Submit Button */
.submit-wrapper {
    text-align: center;
    margin-top: 40px;
}
.btn-submit {
    background: linear-gradient(135deg, #f29c38, #d97f1f);
    color: #ffffff;
    border: none;
    padding: 15px 45px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(242, 156, 56, 0.3);
    transition: 0.3s;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(242, 156, 56, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr; /* Mobile me 1 ke neeche 1 dikhega */
    }
    .full-width {
        grid-column: span 1;
    }
    .modern-form-container {
        padding: 25px 20px;
    }
    .form-header h1 {
        font-size: 26px;
    }
}
/* COMPETITION DETAILS */

.competition-info {
    background: #fafafa;
}

.competition-details-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}

.competition-details-grid > div {
    padding: 18px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 10px;
}

.competition-details-grid span {
    display: block;

    color: #98a2b3;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 5px;
}

.competition-details-grid strong {
    display: block;

    color: #344054;

    font-size: 14px;
}


/* DECLARATION */

.declaration {
    padding: 25px 32px;

    background: #fffaf5;

    border-bottom: 1px solid #e5e7eb;
}

.checkbox-label {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #667085;

    font-size: 13px;

    cursor: pointer;
}

.checkbox-label input {
    width: 17px;
    height: 17px;

    margin-top: 2px;

    accent-color: #f28c28;

    flex-shrink: 0;
}


/* SUBMIT */

.form-submit {
    padding: 25px 32px;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 12px;
}

.reset-btn,
.submit-btn {
    border: none;

    padding: 13px 22px;

    border-radius: 7px;

    cursor: pointer;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s;
}

.reset-btn {
    background: #f2f4f7;

    color: #344054;
}

.reset-btn:hover {
    background: #e4e7ec;
}

.submit-btn {
    background: #f28c28;

    color: #ffffff;
}

.submit-btn:hover {
    background: #d96f0b;

    transform: translateY(-2px);
}


/* APPLICATION RESPONSIVE */

@media (max-width: 800px) {

    .inner-page-hero h1 {
        font-size: 38px;
    }

    .application-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .application-badge {
        min-width: 110px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .competition-details-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 550px) {

    .inner-page-hero {
        padding: 55px 0;
    }

    .inner-page-hero h1 {
        font-size: 32px;
    }

    .form-section {
        padding: 23px 18px;
    }

    .application-header {
        padding: 23px 18px;
    }

    .competition-details-grid {
        grid-template-columns: 1fr;
    }

    .declaration {
        padding: 20px 18px;
    }

    .form-submit {
        padding: 20px 18px;

        flex-direction: column-reverse;

        align-items: stretch;
    }

    .reset-btn,
    .submit-btn {
        width: 100%;
    }

}
/* =====================================================
   COMPACT NOTICE PAGE DESIGN (No Navbar Conflicts)
===================================================== */

/* बाहर का बैकग्राउंड (हल्का ग्रे) */
.notice-wrapper {
    background-color: #f8f9fa; 
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

/* मेन नोटिस बॉक्स */
.notice-box {
    background: #ffffff;
    width: 100%;
    max-width: 600px; /* इससे बॉक्स ज्यादा बड़ा नहीं होगा */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* बॉक्स का हेडर */
.notice-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fcfcfc;
    border-bottom: 1px solid #e0e0e0;
}

.title-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-left h2 {
    font-size: 1.15rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
}

.badge-right span {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* इमेज वाला हिस्सा */
.notice-img-container {
    padding: 25px;
    text-align: center;
    background: #ffffff;
}

.notice-img-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid #cccccc;
    border-radius: 6px;
    display: inline-block;
}

/* बॉक्स का निचला हिस्सा (Footer) */
.notice-bottom {
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    background-color: #fcfcfc;
}

.notice-bottom p {
    color: #555555;
    font-size: 1rem;
    margin-bottom: 20px;
    margin-top: 0;
}

/* बटन डिज़ाइन */
.notice-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-green, .btn-white {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
}

/* Apply Now (Green Button) */
.btn-green {
    background-color: #27ae60;
    color: #ffffff;
    border: 1px solid #27ae60;
}

.btn-green:hover {
    background-color: #219653;
}

/* Download (White Button) */
.btn-white {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #bbbbbb;
}

.btn-white:hover {
    background-color: #f1f1f1;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .notice-buttons {
        flex-direction: column;
    }
    .btn-green, .btn-white {
        width: 100%;
    }
}

/* =====================================================
   SERVICES PAGE
===================================================== */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    overflow: hidden;

    transition: 0.3s;
}

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #f28c28;

    transform: scaleX(0);

    transform-origin: left;

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.07);

    border-color: #ffd0a3;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    position: absolute;

    top: 18px;
    right: 20px;

    color: #e4e7ec;

    font-size: 28px;

    font-weight: 800;
}

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff7ed;

    border-radius: 13px;

    font-size: 25px;

    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 18px;

    margin-bottom: 8px;
}

.service-card p {
    color: #667085;

    font-size: 13px;

    line-height: 1.7;

    min-height: 70px;
}

.service-card a {
    display: inline-block;

    margin-top: 15px;

    color: #f28c28;

    font-size: 13px;

    font-weight: 800;
}

.service-card a:hover {
    color: #d96f0b;
}


/* =====================================================
   PROCESS
===================================================== */

.process-grid {
    display: grid;

    grid-template-columns:
        1fr 45px 1fr 45px 1fr 45px 1fr;

    align-items: center;

    gap: 5px;
}

.process-card {
    text-align: center;

    padding: 25px 15px;
}

.process-icon {
    width: 65px;
    height: 65px;

    margin: auto auto 15px;

    border-radius: 50%;

    background: #f28c28;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(242,140,40,0.25);
}

.process-card h3 {
    font-size: 18px;

    margin-bottom: 5px;
}

.process-card p {
    color: #667085;

    font-size: 13px;
}

.process-line {
    height: 2px;

    background: #ffd0a3;
}


/* =====================================================
   SERVICE FEATURE
===================================================== */

.service-feature {
    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 45px;

    align-items: center;

    padding: 55px;

    background: #142033;

    border-radius: 22px;

    color: #ffffff;
}

.service-feature-icon {
    width: 150px;
    height: 150px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f28c28;

    border-radius: 50%;

    font-size: 65px;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.2);
}

.service-feature-content > span,
.result-feature > div > span {
    color: #ffad57;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.service-feature-content h2,
.result-feature h2 {
    font-size: 37px;

    line-height: 1.2;

    margin: 8px 0 15px;
}

.service-feature-content h2 strong,
.result-feature h2 strong {
    color: #ffad57;
}

.service-feature-content p,
.result-feature p {
    color: #d8dee8;

    font-size: 15px;

    max-width: 700px;
}

.feature-points {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 22px;
}

.feature-points div {
    padding: 9px 13px;

    background: rgba(255,255,255,0.08);

    border-radius: 7px;

    color: #ffffff;

    font-size: 12px;
}


/* =====================================================
   RESULT FEATURE
===================================================== */

.result-feature {
    display: grid;

    grid-template-columns: 1fr 330px;

    gap: 60px;

    align-items: center;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 22px;

    padding: 50px;
}

.result-feature p {
    color: #667085;

    margin-bottom: 25px;
}

.result-visual {
    min-height: 250px;

    background: #fff7ed;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    padding: 30px;
}

.result-circle {
    width: 125px;
    height: 125px;

    border-radius: 50%;

    background: #f28c28;

    color: #ffffff;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    box-shadow:
        0 10px 25px rgba(242,140,40,0.25);
}

.result-circle strong {
    font-size: 24px;
}

.result-circle span {
    font-size: 9px;

    letter-spacing: 1px;
}

.result-bars {
    display: flex;

    align-items: flex-end;

    gap: 7px;

    height: 100px;
}

.result-bars div {
    width: 13px;

    background: #f28c28;

    border-radius: 4px 4px 0 0;
}

.result-bars div:nth-child(1) {
    height: 45px;
}

.result-bars div:nth-child(2) {
    height: 65px;
}

.result-bars div:nth-child(3) {
    height: 85px;
}

.result-bars div:nth-child(4) {
    height: 55px;
}


/* =====================================================
   AWARDS
===================================================== */

.award-service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.award-service-card {
    text-align: center;

    padding: 30px 20px;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    background: #ffffff;

    transition: 0.3s;
}

.award-service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.07);
}

.award-icon {
    font-size: 48px;

    margin-bottom: 12px;
}

.award-service-card > span {
    color: #98a2b3;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.award-service-card h3 {
    color: #f28c28;

    font-size: 30px;

    margin: 5px 0;
}

.award-service-card p {
    color: #667085;

    font-size: 13px;
}


/* =====================================================
   SERVICES RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .award-service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .process-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .process-line {
        width: 2px;

        height: 25px;

        margin: auto;
    }

    .service-feature {
        grid-template-columns: 1fr;

        padding: 35px;

        text-align: center;
    }

    .service-feature-icon {
        margin: auto;
    }

    .feature-points {
        justify-content: center;
    }

    .result-feature {
        grid-template-columns: 1fr;

        padding: 35px;
    }

    .result-visual {
        max-width: 400px;

        margin: auto;
    }

}


@media (max-width: 550px) {

    .service-grid {
        grid-template-columns: 1fr;
    }

    .award-service-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }

    .service-feature {
        padding: 28px 20px;
    }

    .service-feature-content h2,
    .result-feature h2 {
        font-size: 30px;
    }

    .result-feature {
        padding: 25px 20px;
    }

    .result-visual {
        flex-direction: column;
    }

}
/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.contact-info-card {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 15px;

    transition: 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);

    border-color: #ffd0a3;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.06);
}

.contact-info-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff7ed;

    border-radius: 12px;

    font-size: 23px;
}

.contact-info-card span {
    display: block;

    color: #f28c28;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 4px;
}

.contact-info-card h3 {
    font-size: 15px;

    margin-bottom: 4px;

    word-break: break-word;
}

.contact-info-card p {
    color: #667085;

    font-size: 12px;
}


/* =====================================================
   CONTACT MAIN
===================================================== */

.contact-main {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 55px;

    align-items: start;
}

.contact-left {
    padding-top: 20px;
}

.small-title {
    color: #f28c28;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.contact-left h2 {
    font-size: 42px;

    line-height: 1.15;

    margin: 10px 0 18px;
}

.contact-left h2 strong {
    color: #f28c28;
}

.contact-left > p {
    color: #667085;

    font-size: 15px;

    line-height: 1.8;

    max-width: 550px;
}


/* HELP LIST */

.contact-help-list {
    margin-top: 25px;

    display: grid;

    gap: 13px;
}

.contact-help-list div {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    font-weight: 600;

    color: #344054;
}

.contact-help-list span {
    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff0dd;

    color: #f28c28;

    border-radius: 50%;

    font-size: 12px;
}


/* DIRECT CONTACT */

.contact-direct {
    margin-top: 30px;

    padding: 20px;

    background: #142033;

    border-radius: 13px;

    color: #ffffff;
}

.contact-direct span {
    display: block;

    color: #ffad57;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 7px;
}

.contact-direct a {
    color: #ffffff;

    font-size: 17px;

    font-weight: 700;
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-box {
    background: #ffffff;

    padding: 35px;

    border-radius: 18px;

    border: 1px solid #e5e7eb;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.05);
}

.form-heading {
    margin-bottom: 25px;
}

.form-heading span {
    color: #f28c28;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.form-heading h3 {
    font-size: 27px;

    margin-top: 5px;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.form-field {
    margin-bottom: 17px;
}

.form-field label {
    display: block;

    margin-bottom: 7px;

    color: #344054;

    font-size: 12px;

    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d0d5dd;

    border-radius: 8px;

    outline: none;

    font-family: inherit;

    font-size: 13px;

    background: #ffffff;

    transition: 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #f28c28;

    box-shadow:
        0 0 0 3px rgba(242,140,40,0.1);
}

.form-field textarea {
    resize: vertical;

    min-height: 120px;
}

.contact-submit {
    width: 100%;

    border: none;

    cursor: pointer;

    font-family: inherit;
}

.form-message {
    text-align: center;

    font-size: 12px;

    margin-top: 12px;

    min-height: 18px;
}


/* =====================================================
   CONTACT FAQ
===================================================== */

.contact-faq {
    max-width: 850px;

    margin: auto;
}

.contact-faq details {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 10px;

    margin-bottom: 12px;

    overflow: hidden;
}

.contact-faq summary {
    list-style: none;

    cursor: pointer;

    position: relative;

    padding: 18px 50px 18px 20px;

    font-size: 14px;

    font-weight: 700;

    color: #344054;
}

.contact-faq summary::-webkit-details-marker {
    display: none;
}

.contact-faq summary::after {
    content: "+";

    position: absolute;

    right: 20px;

    top: 14px;

    color: #f28c28;

    font-size: 21px;
}

.contact-faq details[open] summary::after {
    content: "−";
}

.contact-faq details p {
    padding: 0 20px 20px;

    color: #667085;

    font-size: 13px;

    line-height: 1.7;
}


/* =====================================================
   MAP
===================================================== */

.map-section {
    padding: 0 0 70px;
}

.map-placeholder {
    min-height: 330px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #eef2f5,
            #e3e8ec
        );

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

    border: 1px solid #dfe3e8;
}

/* Decorative map lines */

.map-placeholder::before,
.map-placeholder::after {
    content: "";

    position: absolute;

    width: 130%;

    height: 1px;

    background: rgba(20,32,51,0.08);

    transform: rotate(25deg);
}

.map-placeholder::after {
    transform: rotate(-20deg);
}

.map-content {
    position: relative;

    z-index: 2;

    text-align: center;

    background: rgba(255,255,255,0.94);

    padding: 30px 45px;

    border-radius: 15px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
}

.map-pin {
    font-size: 40px;

    margin-bottom: 8px;
}

.map-content h3 {
    font-size: 20px;

    margin-bottom: 5px;
}

.map-content p {
    color: #667085;

    margin-bottom: 5px;
}

.map-content span {
    color: #98a2b3;

    font-size: 11px;
}


/* =====================================================
   CONTACT RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .contact-info-grid {
        grid-template-columns:
            1fr;
    }

    .contact-main {
        grid-template-columns:
            1fr;
    }

    .contact-left {
        padding-top: 0;
    }

}


@media (max-width: 600px) {

    .form-row {
        grid-template-columns:
            1fr;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-left h2 {
        font-size: 32px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .map-content {
        padding: 25px 20px;
    }

}

/* =====================================================
   GALLERY FILTER
===================================================== */

.gallery-filters {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 30px;
}

.gallery-filter {
    padding: 10px 20px;

    border: 1px solid #e1e4e8;

    background: #ffffff;

    color: #475467;

    border-radius: 30px;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.25s;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: #f28c28;

    border-color: #f28c28;

    color: #ffffff;
}


/* =====================================================
   GALLERY GRID
===================================================== */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.gallery-item {
    position: relative;

    height: 270px;

    border-radius: 15px;

    overflow: hidden;

    background: #e9ecef;

    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* =====================================================
   GALLERY OVERLAY
===================================================== */

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 22px;

    background:
        linear-gradient(
            transparent 35%,
            rgba(10,18,30,0.85)
        );

    opacity: 0;

    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #ffad57;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.gallery-overlay h3 {
    color: #ffffff;

    font-size: 17px;

    margin: 5px 0 10px;
}

.view-image {
    align-self: flex-start;

    padding: 7px 12px;

    background: rgba(255,255,255,0.15);

    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.3);

    border-radius: 5px;

    font-family: inherit;

    font-size: 11px;

    cursor: pointer;
}

.view-image:hover {
    background: #f28c28;

    border-color: #f28c28;
}


/* =====================================================
   GALLERY FEATURE
===================================================== */

.gallery-feature {
    display: grid;

    grid-template-columns:
        1fr 400px;

    gap: 50px;

    align-items: center;

    background: #142033;

    border-radius: 22px;

    padding: 55px;

    overflow: hidden;

    color: #ffffff;
}

.gallery-feature-content > span {
    color: #ffad57;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.gallery-feature-content h2 {
    font-size: 38px;

    line-height: 1.2;

    margin: 10px 0 16px;
}

.gallery-feature-content h2 strong {
    color: #ffad57;
}

.gallery-feature-content p {
    max-width: 620px;

    color: #d5dbe5;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.gallery-feature-visual {
    height: 270px;

    border-radius: 18px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(242,140,40,0.35),
            transparent 60%
        );

    border: 1px solid rgba(255,255,255,0.1);
}

.feature-big-number {
    font-size: 75px;

    font-weight: 900;

    line-height: 1;

    color: #ffad57;
}

.feature-small-text {
    margin-top: 10px;

    text-align: center;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    line-height: 1.5;
}


/* =====================================================
   LIGHTBOX
===================================================== */

.image-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 50px;

    background: rgba(5,10,18,0.94);
}

.image-lightbox.show {
    display: flex;
}

.image-lightbox img {
    max-width: 85vw;

    max-height: 85vh;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.4);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    color: #ffffff;

    font-size: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #f28c28;
}

.lightbox-close {
    top: 25px;

    right: 30px;

    font-size: 32px;
}

.lightbox-prev {
    left: 30px;

    top: 50%;

    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;

    top: 50%;

    transform: translateY(-50%);
}


/* =====================================================
   GALLERY RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .gallery-feature {
        grid-template-columns:
            1fr;
    }

}


@media (max-width: 600px) {

    .gallery-grid {
        grid-template-columns:
            1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-feature {
        padding: 30px 22px;
    }

    .gallery-feature-content h2 {
        font-size: 30px;
    }

    .gallery-feature-visual {
        height: 220px;
    }

    .feature-big-number {
        font-size: 55px;
    }

    .image-lightbox {
        padding: 20px;
    }

    .image-lightbox img {
        max-width: 92vw;

        max-height: 75vh;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

}
/* ================= HERO ANIMATION ================= */

.hero-content {
    animation: heroFadeUp 1s ease-out both;
}

.hero-content h1 {
    animation: titleMove 1.2s ease-out both;
}

.hero-content .hero-subtitle {
    animation: heroFadeUp 1.4s ease-out both;
}

.hero-buttons {
    animation: heroFadeUp 1.6s ease-out both;
}


/* Main heading movement */

@keyframes titleMove {

    0% {
        opacity: 0;
        transform: translateX(-80px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }

}


/* General fade + up */

@keyframes heroFadeUp {

    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ================= BUTTON HOVER ================= */

.hero-buttons a {
    transition: all 0.3s ease;
}

.hero-buttons a:hover {
    transform: translateY(-5px);
}


/* ================= PRATIBHA TEXT ================= */

.hero-content h1 .highlight {
    display: inline-block;
    animation: pratibhaFloat 2.5s ease-in-out infinite;
}

@keyframes pratibhaFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}


/* ================= HERO BACKGROUND ================= */

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(255, 166, 70, 0.08);

    top: -100px;
    right: -100px;

    animation: circleMove 6s ease-in-out infinite alternate;
}

@keyframes circleMove {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-80px, 50px) scale(1.2);
    }

}
.inner-page-hero {
    background: linear-gradient(120deg, #142033, #24334b);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}