:root {
    --saffron: #f93;
    --saffron-light: #fa5;
    --green: #138808;
    --white: #fff
}

* {
    scroll-behavior: smooth
}

body {
    background: #fee4b6;
    font-family: Poppins, sans-serif;
    overflow-x: hidden
}

.hindi-font {
    font-family: Tiro Devanagari Hindi, Hind, sans-serif;
    font-weight: 600
}

.gradient-bg {
    animation: gradient 8s ease infinite;
    background: linear-gradient(135deg, #f93, #f60 50%, #f93);
    background-size: 200% 200%
}

.gradient-text {
    color: #ff5216
}

.flag-gradient {
    background: linear-gradient(180deg, #f93 0, #f93 33.33%, #fff 0, #fff 66.66%, #138808 0, #138808)
}

.parallax {
    transition: transform .1s ease-out;
    will-change: transform
}

.parallax-bg {
    position: relative;
    transform-style: preserve-3d
}

.parallax-bg:before {
    background: inherit;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateZ(-1px) scale(2)
}

.glow {
    filter: drop-shadow(0 0 20px rgba(255, 153, 51, .5))
}

.glass {
    backdrop-filter: blur(10px);
    background: hsla(0, 0%, 100%, .1);
    border: 1px solid hsla(0, 0%, 100%, .2)
}

.particle {
    animation: particle-float 15s infinite;
    opacity: .7;
    pointer-events: none;
    position: absolute
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) rotate(0deg)
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translateY(-100vh) translateX(100px) rotate(1turn)
    }
}

.hero-section {
    height: 100vh;
    margin-top: 80px;
    min-height: 500px
}

@media (max-width:768px) {
    .hero-section {
        height: calc(100vh - 70px);
        margin-top: 70px;
        min-height: 400px
    }

    .hero-background {
        background-image: url(https://res.cloudinary.com/da92yrowy/image/upload/f_auto,q_auto/val3j00s1xcsgs3hfnkn);
        background-position: 50%;
        background-repeat: no-repeat;
        background-size: cover
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease-out
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

::-webkit-scrollbar {
    width: 12px
}

::-webkit-scrollbar-track {
    background: #f1f1f1
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f93, #138808);
    border-radius: 6px
}

.loader-ring {
    animation: spin 2s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.hover-lift {
    transition: all .3s ease
}

.hover-lift:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transform: translateY(-5px)
}

.text-reveal {
    overflow: hidden
}

.text-reveal span {
    animation: reveal-text .6s forwards;
    display: inline-block;
    opacity: 0;
    transform: translateY(100%)
}

@keyframes reveal-text {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.menu-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all .3s ease
}

.menu-open .menu-item {
    animation: slideIn .4s forwards
}

#mobileMenu {
    max-height: calc(100vh - 100px);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all .3s cubic-bezier(.25, .46, .45, .94);
    visibility: hidden;
    z-index: 9999
}

#mobileMenu.menu-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible
}

#mobileMenuBtn span {
    transform-origin: center;
    transition: all .3s cubic-bezier(.25, .46, .45, .94)
}

body.menu-open {
    overflow: hidden
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.ripple {
    overflow: hidden;
    position: relative
}

.ripple:before {
    background: hsla(0, 0%, 100%, .5);
    border-radius: 50%;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s;
    width: 0
}

.ripple:active:before {
    height: 300px;
    width: 300px
}

.path-animation {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease-out forwards
}

.morph-shape {
    animation: morph 8s ease-in-out infinite
}

@keyframes morph {

    0%,
    to {
        border-radius: 60% 40% 30% 70%/60% 30% 70% 40%
    }

    50% {
        border-radius: 30% 60% 70% 40%/50% 60% 30% 60%
    }
}

.glitch {
    position: relative
}

.glitch:after,
.glitch:before {
    content: attr(data-text);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.glitch:before {
    animation: glitch-1 .5s infinite;
    color: #f93;
    z-index: -1
}

.glitch:after {
    animation: glitch-2 .5s infinite;
    color: #138808;
    z-index: -2
}

@keyframes glitch-1 {

    0%,
    to {
        clip-path: inset(0 0 0 0);
        transform: translate(0)
    }

    20% {
        clip-path: inset(20% 0 60% 0);
        transform: translate(-2px, 2px)
    }
}

@keyframes glitch-2 {

    0%,
    to {
        clip-path: inset(0 0 0 0);
        transform: translate(0)
    }

    20% {
        clip-path: inset(60% 0 20% 0);
        transform: translate(2px, -2px)
    }
}

.perspective-text {
    transform: perspective(500px) rotateY(25deg);
    transition: transform .5s
}

.perspective-text:hover {
    transform: perspective(500px) rotateY(0deg)
}

.parallax-section {
    overflow: hidden
}

.parallax-section:before {
    background: inherit;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ff5216;
    line-height: 1.2;
    margin-bottom: .5em
}

p {
    line-height: 1.6;
    margin-bottom: 1em
}

.grid>* {
    margin-bottom: 2rem
}

@media (min-width:768px) {
    .grid>* {
        margin-bottom: 0
    }
}

.timeline-milestone .milestone-image {
    z-index: 1
}

.timeline-milestone .milestone-icon {
    z-index: 2
}

.timeline-milestone .milestone-bg {
    transition: all .3s ease
}

.timeline-milestone:hover .milestone-bg {
    animation: milestone-breathe 2s ease-in-out infinite
}

.timeline-milestone:hover .milestone-bg[stroke="#FF9933"] {
    filter: drop-shadow(0 0 20px #FF9933) drop-shadow(0 0 40px #FF9933)
}

.timeline-milestone:hover .milestone-bg[stroke="#138808"] {
    filter: drop-shadow(0 0 20px #138808) drop-shadow(0 0 40px #138808)
}

.timeline-milestone:hover .milestone-bg[stroke="#000080"] {
    filter: drop-shadow(0 0 20px #000080) drop-shadow(0 0 40px #000080)
}

.timeline-milestone:hover .milestone-bg[stroke="#E91E63"] {
    filter: drop-shadow(0 0 20px #E91E63) drop-shadow(0 0 40px #E91E63)
}

.timeline-milestone:hover .milestone-bg[stroke="#9C27B0"] {
    filter: drop-shadow(0 0 20px #9C27B0) drop-shadow(0 0 40px #9C27B0)
}

@keyframes milestone-breathe {

    0%,
    to {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .9;
        transform: scale(1.05)
    }
}

.video-breathing {
    animation: video-breathe 4s ease-in-out infinite
}

@keyframes video-breathe {

    0%,
    to {
        opacity: .15;
        transform: scale(1)
    }

    50% {
        opacity: .25;
        transform: scale(1.02)
    }
}

.group:hover .video-breathing {
    animation: video-breathe-hover 3s ease-in-out infinite
}

@keyframes video-breathe-hover {

    0%,
    to {
        opacity: .35;
        transform: scale(1.01)
    }

    50% {
        opacity: .45;
        transform: scale(1.03)
    }
}

@media (max-width:768px) {
    .mobile-no-radius {
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .carousel-container {
        overflow: hidden;
        position: relative;
        touch-action: pan-y pinch-zoom;
        width: 100%
    }

    .carousel-track {
        display: flex;
        transition: transform .3s ease-out;
        will-change: transform
    }

    .carousel-slide {
        flex-shrink: 0;
        min-width: 100%;
        pointer-events: auto
    }

    .carousel-dots {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-top: 20px;
        padding: 10px
    }

    .carousel-dot {
        background: rgba(0, 0, 0, .2);
        border: 2px solid transparent;
        border-radius: 50%;
        cursor: pointer;
        height: 12px;
        position: relative;
        transition: all .3s ease;
        width: 12px
    }

    .carousel-dot:hover {
        background: rgba(255, 153, 51, .5);
        transform: scale(1.1)
    }

    .carousel-dot.active {
        background: #f93;
        box-shadow: 0 0 0 3px rgba(255, 153, 51, .3);
        transform: scale(1.2)
    }

    .carousel-container.dragging .carousel-track {
        cursor: grabbing
    }

    .carousel-container.dragging {
        touch-action: none
    }

    .carousel-container:not(.dragging) {
        cursor: grab;
        cursor: -webkit-grab
    }

    .carousel-slide img {
        transition: opacity .3s ease;
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        user-drag: none;
        pointer-events: none
    }

    .mobile-px-4 {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .mobile-py-12 {
        padding-bottom: 3rem;
        padding-top: 3rem
    }
}

@media (max-width:480px) {
    .mobile-px-2 {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .mobile-py-8 {
        padding-bottom: 2rem;
        padding-top: 2rem
    }
}

@media (max-width:768px) {
    .mobile-timeline {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        position: relative
    }

    .mobile-timeline:before {
        background: linear-gradient(180deg, #f93, #138808, #f93);
        bottom: 0;
        content: "";
        left: 50%;
        position: absolute;
        top: 0;
        transform: translateX(-50%);
        width: 4px;
        z-index: 1
    }

    .mobile-milestone {
        align-items: center;
        background: #fff;
        border-radius: 100px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
        display: flex;
        flex-direction: column;
        max-width: 280px;
        padding: 1rem;
        position: relative;
        text-align: center;
        width: 100%;
        z-index: 2
    }

    .mobile-milestone-icon {
        align-items: center;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
        display: flex;
        height: 80px;
        justify-content: center;
        margin-bottom: 1rem;
        width: 80px
    }

    .mobile-milestone-content h3 {
        color: #333;
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: .5rem
    }

    .mobile-milestone-content p {
        color: #666;
        font-size: .875rem;
        margin: 0
    }

    .desktop-timeline {
        display: none
    }
}

@media (min-width:769px) {
    .mobile-timeline {
        display: none
    }

    .desktop-timeline {
        display: block
    }
}