 /* BASIC STYLES ============================================================================== */
        :root {
            --primary: #000064;
            --footer:#000035;
            --secondary: #F0DCA0;
            --accent: #a02814;
            --black: #060606;
            --white: #f7f7f7;
            --light-bg: #f8f9fa;
             --whatsapp: #25D366;
            --facebook: #3b5998;
            --twitter: #1DA1F2;
            --youtube: #FF0000;
            --instagram: #E1306C;
            --primary: #000064;
            --pinterest: #BD081C;
            --linkedin: #0077B5;
            --tumblr: #35465C;
             --success: #28a745;
        }

        * { 
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--light-bg);
            margin: 0;
            padding: 0;
        }
        a{
            text-decoration: none;
        }

        /* TOP HEADER STYLES ============================================================================= */
        .top_head1 {
            background: linear-gradient(135deg, var(--primary) 0%, #1a1a8a 100%);
            color: var(--white);
            padding: 10px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 99;
            padding-bottom:8px;
            border-bottom: 3px solid var(--secondary);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .top_head2 {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .top_head3 {
            display: flex;
            align-items: center;
            font-size: 14px;
            margin-right: 20px;
            font-weight: 500;
            background: rgba(0, 0, 0, 0.2);
            padding: 6px 12px;
            border-radius: 4px;
            border-left: 2px solid var(--secondary);
        }

        .top_head3 i {
            margin-right: 8px;
            color: var(--secondary);
            font-size: 16px;
        }

        .top_head4 {
            flex: 1;
            min-width: 250px;
            position: relative;
            overflow: hidden;
            height: 30px;
            background: rgba(0, 0, 0, 0.15);
            border-radius: 4px;
            display: flex;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top_head5 {
            background: linear-gradient(to right, var(--accent), #c0392b);
            color: var(--white);
            padding: 4px 10px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 700;
            margin-right: 12px;
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 9;
        }

        .top_head6 {
            position: absolute;
            white-space: nowrap;
            animation: ticker 35s linear infinite;
            animation-delay: 2s;
            padding-left: 100%;
        }

        .top_head6 span {
            margin-right: 35px;
            color: var(--white);
            font-weight: 500;
            font-size: 14px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        .top_head7 a{
            color: var(--secondary); 
        }
        .top_head6 span.top_head7 {
            color: var(--secondary);
            font-weight: 600;
        }

        .top_head8 {
            display: flex;
            margin-left: 20px;
        }

        .top_head8 a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.08));
            color: var(--white);
            margin-left: 10px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
        }

        .top_head8 a:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .top_head8 a:hover:before {
            left: 100%;
        }

        .top_head8 a i {
            position: relative;
            z-index: 1;
            font-size: 14px;
            transition: 0.3s;
        }

        .top_head8 a:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 5px 12px rgba(220, 180, 120, 0.4);
        }

        .top_head8 a:hover i {
            color: var(--secondary);
            transform: scale(1.2);
        }

        /* Animated elements */
        .pulse {
            display: inline-block;
            width: 6px;
            height: 6px;
            background-color: var(--accent);
            border-radius: 50%;
            margin-right: 6px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.9);
                box-shadow: 0 0 0 0 rgba(160, 40, 20, 0.7);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 4px rgba(160, 40, 20, 0);
            }
            100% {
                transform: scale(0.9);
                box-shadow: 0 0 0 0 rgba(160, 40, 20, 0);
            }
        }

        /* Animations */
        @keyframes ticker {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* MAIN HEADER STYLES */
        .head1 {
            background:#111181f7;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            padding: 0.8rem 2rem;
            position: sticky;
            top: 53px;
            z-index: 999;
            transition: all 0.4s ease;
        }

        .head1.fixed {
            position: fixed;
            width: 100%;
            top: 0;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .head2 {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .head3 {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .head3:hover {
            transform: scale(1.05);
            color: var(--black);
        }

        .head3 i {
            margin-right: 0.5rem;
            color: var(--black);
            font-size: 2.2rem;
        }

        .head4 {
            display: flex;
            align-items: center;
        }

        .head5 {
            display: flex;
            list-style: none;
            margin-right: 1.5rem;
                align-items: center;
        }

        .head6 {
            position: relative;
            margin: 0 0.5rem;
        }

        .head7 {
            color: var(--secondary)  ;
            text-decoration: none;
            padding: 0.8rem 1rem;
            display: flex;
            align-items: center;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .head7:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .head7 i {
            margin-left: 0.5rem;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .head7 i {
            transform: rotate(180deg);
        }

        .head8 {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            width: 260px;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            z-index: 1000;
            padding: 0.8rem 0;
        }

            .dropdown.active .head8 {
                opacity: 1;
                visibility: visible;
                transform: translateY(8px);
            }


        .head9 {
            display: block;
            padding: 0.8rem 1.8rem;
            color: var(--black);
            text-decoration: none;
            transition: all 0.2s ease;
            position: relative;
            font-weight: 500;
        }

        .head9:hover {
            background-color: var(--light-bg);
            color: var(--accent);
            padding-left: 2.2rem;
        }

        .head9:hover::before {
            content: '';
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background-color: var(--accent);
            border-radius: 50%;
        }

        .head10 {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }

        .head10 span {
            height: 3px;
            width: 100%;
            background-color: var(--white);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .head10.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .head10.active span:nth-child(2) {
            opacity: 0;
        }

        .head10.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .head11 {
            background: linear-gradient(90deg, var(--accent) 0%, #c33118 100%) !important;
            color: var(--white) !important;
            padding: 0.8rem 1.8rem !important;
            border-radius: 30px !important;
            -webkit-border-radius: 30px !important;
            -moz-border-radius: 30px !important;
            -ms-border-radius: 30px !important;
            -o-border-radius: 30px !important;
}


        /* Content for demonstration */
        .content {
            max-width: 1200px;
            margin: 7rem auto 3rem;
            padding: 0 2rem;
            color: var(--black);
        }

        .content h1 {
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-size: 2.5rem;
        }

        .content p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        /* Responsive styles */
        @media (max-width: 990px) {
            .top_head8 {
                display: none;
            }
            
            .top_head2 {
                justify-content: space-between;
            }
            
            .top_head4 {
                flex: 2;
                margin: 0 15px;
            }
        }

        @media (max-width: 768px) {
            .top_head5 {
                display: none;
            }
            
            .top_head4 {
                padding-left: 10px;
            }
            
            .top_head3 span {
                display: none;
            }
            
            .top_head3 {
                padding: 8px;
                margin-right: 10px;
            }
            
            .top_head3 i {
                margin-right: 0;
            }
            
            .head1 {
                padding: 0.8rem 1rem;
                top: 49px;
            }
        }

        @media (max-width: 1100px) {
            .head5 {
                position: fixed;
                top: 53px;
                left: -100%;
                background-color: var(--primary);
                width: 280px;
                height: calc(100vh - 53px);
                flex-direction: column;
                margin: 0;
                padding: 2rem 0;
                transition: all 0.4s ease;
                box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
                z-index: 999;
            }

            .head5.active {
                       left: 0;
        overflow: auto;
        top: 0;
            }

            .head6 {
                width: 100%;
                margin: 0;
            }

            .head7 {
                padding: 1.2rem 2rem;
                border-radius: 0;
                justify-content: space-between;
            }

            .head8 {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: rgba(255, 255, 255, 0.05);
                display: none;
                margin-left: 1rem;
                border-radius: 0;
                padding: 0.5rem 0;
            }

            .dropdown.active .head8 {
                display: block;
            }

            .head9 {
                color: var(--secondary);
                padding: 0.8rem 3rem;
            }

            .head9:hover {
                padding-left: 3.5rem;
            }

            .head11 {
                margin: 1rem 2rem;
                text-align: center;
                border-radius: 6px;
            }

            .head10 {
                display: flex;
            }
        }

        @media (max-width: 576px) {
            .top_head6 {
                animation: ticker 30s linear infinite;
                animation-delay: 2s;
            }
            
            .top_head3 {
                font-size: 12px;
                padding: 6px;
            }
            
            .top_head6 span {
                font-size: 12px;
                margin-right: 20px;
            }
            
            .top_head5 {
                padding: 3px 8px;
                font-size: 11px;
            }
            
            .top_head4 {
                height: 28px;
            }
            
            .top_head2 {
                padding: 0 10px;
            }
        }

        @media (max-width: 480px) {
            .top_head3 {
                background: none;
                padding: 5px;
                border: none;
                margin-right: 5px;
            }
            
            .top_head4 {
                margin: 0 5px;
            }
        }

        @media (max-width: 360px) {
            .top_head3 {
                display: none;
            }
            
            .top_head4 {
                margin-left: 0;
            }
        }
        /* HEADER SECTION ENDS========================================================================== */
        /* hero section starts============================================================================ */
        /* Enhanced Hero Section */
        .hero_1 {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .hero_2 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .hero_3 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease, transform 16s ease;
            transform: scale(1.15);
        }
        
        .hero_3::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
            z-index: 1;
        }
        
        .hero_3.active {
            opacity: 1;
            transform: scale(1);
            z-index: 1;
        }
        
        .hero_3 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero_4 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            z-index: 2;
            width: 80%;
            max-width: 900px;
            text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
        }
        
        .hero_4 h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(to right, var(--secondary), #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
        }
        
        .hero_4 p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1.2s ease;
            font-weight: 400;
            line-height: 1.6;
        }
        
        .hero_5 {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            animation: fadeInUp 1.4s ease;
        }
        
        .hero_6 {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s ease;
            display: inline-block;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .hero_6::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: var(--primary);
            transition: all 0.4s ease;
            z-index: -1;
            border-radius: 50px;
        }
        
        .hero_6:hover::before {
            width: 100%;
        }
        
        .hero_7 {
            background: var(--secondary);
            color: var(--primary);
            box-shadow: 0 5px 20px rgba(220, 180, 120, 0.5);
            border: 2px solid var(--secondary);
        }
        
        .hero_7:hover {
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(220, 180, 120, 0.7);
        }
        .hero_77:hover{
             transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(220, 180, 120, 0.7);
        }
        
        .hero_8 {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .hero_8:hover {
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
        }
        
        .hero_9 {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }
        
        .hero_10 {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.4s ease;
        }
        
        .hero_10.active {
            background: var(--secondary);
            transform: scale(1.4);
            box-shadow: 0 0 10px var(--secondary);
        }
        
        /* Enhanced News Section */
        .news_1 {
                position: relative;
                z-index: 4;
                margin: -160px 120px 20px 120px;
                padding: 60px 40px 30px;
                background: var(--white);
                border-radius: 40px ;
                box-shadow: 10px 20px 48px rgb(0 0 0 / 15%);
                overflow: hidden;
}
.news_101{
    padding: 4rem;
}
        
        .news_2 {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .news_3 {
            text-align: center;
            margin-bottom: 70px;
            color: var(--primary);
            position: relative;
            font-size: 2.8rem;
            font-weight: 800;
            z-index: 2;
        }
        
        .bg-text {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 7rem;
            font-weight: 900;
            color: rgb(0 0 0 / 5%);;
            z-index: 1;
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 5px;
        }
        
        .news_3:after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--secondary);
            border-radius: 3px;
        }
        
        .news_4 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .news_5 {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            top: 0;
        }
        
        .news_5:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            top: -5px;
        }
        
        .news_6 {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .news_6::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            z-index: 1;
        }
        
        .news_6 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .news_5:hover .news_6 img {
            transform: scale(1.15);
        }
        
        .news_7 {
            padding: 25px;
            position: relative;
        }
        
        .news_8 {
            color: var(--accent);
            font-size: 0.95rem;
            margin-bottom: 12px;
            display: block;
            font-weight: 500;
        }
        
        .news_9 a{
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 700;
            line-height: 1.4;
        }
        
        .news_10 {
            color: #666;
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .news_11 {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .news_11::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .news_11:hover {
            color: var(--primary);
        }
        
        .news_11:hover::after {
            width: 100%;
        }
        
        .news_11 i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .news_11:hover i {
            transform: translateX(8px);
        }
        
        .read-more-btn {
            text-align: center;
            margin-top: 30px;
        }
        
        .read-more-btn a {
            padding: 15px 40px;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            box-shadow: 0 5px 20px rgba(0, 0, 100, 0.2);
        }
        
        .read-more-btn a:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(220, 180, 120, 0.4);
        }
        
        .read-more-btn a i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .read-more-btn a:hover i {
            transform: translateX(8px);
        }
        
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .news_1 {
                margin: -80px 80px 0;
            }
            
            .news_4 {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
            
            .bg-text {
                font-size: 6rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero_4 h1 {
                font-size: 3.2rem;
            }
            
            .hero_4 p {
                font-size: 1.2rem;
            }
            
            .news_1 {
                margin: -60px 40px 0;
                padding: 120px 30px 60px;
            }
            
            .news_3 {
                font-size: 2.5rem;
            }
            
            .news_4 {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .bg-text {
                font-size: 5rem;
                top: -30px;
            }
            
            .news_9 {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 868px) {
            .news_4 {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .bg-text {
                font-size: 4rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero_4 {
                width: 90%;
            }
            
            .hero_4 h1 {
                font-size: 2.5rem;
            }
            
            .hero_4 p {
                font-size: 1.1rem;
            }
            
            .hero_6 {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .news_1 {
                margin: -40px 20px 0;
                padding: 100px 20px 50px;
            }
            
            .news_3 {
                font-size: 2.2rem;
            }
            
            .bg-text {
                font-size: 3.5rem;
            }
            
            .floating-element {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 650px) {
            .news_4 {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .bg-text {
                font-size: 3rem;
                top: -20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero_4 h1 {
                font-size: 2rem;
            }
            
            .hero_5 {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .hero_6 {
                width: 200px;
                text-align: center;
            }
            
            .news_1 {
                margin: -30px 15px 0;
                padding: 80px 15px 40px;
            }
            
            .news_3 {
                font-size: 1.8rem;
            }
            
            .bg-text {
                font-size: 2.2rem;
                top: -10px;
            }
            
            .news_9 {
                font-size: 1.2rem;
            }
            
            .floating-element {
                display: none;
            }
            
            .read-more-btn a {
                padding: 12px 30px;
            }
        }
        /* HERO SECTION ENDS========================================================================= */


        /* ABOUT US SECTION STARTS=================================================================================== */
        
.about-us {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.ab_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section 1: Header */
.ab_1 {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeIn 1s ease-out;
}

.ab_1 h2 {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.ab_1 h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    border-radius: 3px;
}

.ab_tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent);
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.4;
    position: relative;
    padding: 1rem 2rem;
    background: rgba(220, 180, 120, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

/* Section 2: Content and Image */
.ab_2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    margin-bottom: 2rem;
    position: relative;
}

.ab_content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.ab_content h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.ab_content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.ab_content p {
    line-height: 1.8;
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
}

.ab_quote {
    font-style: italic;
    padding: 2rem;
    border-left: 4px solid var(--secondary);
    background: linear-gradient(135deg, rgba(220, 180, 120, 0.1) 0%, rgba(160, 40, 20, 0.05) 100%);
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 0 12px 12px 0;
    margin: 2.5rem 0;
    position: relative;
}

.ab_quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 1rem;
    line-height: 1;
}

.ab_established {
    font-weight: 700;
    color: var(--accent);
    text-align: right;
    font-size: 1.2rem;
    position: relative;
    padding-right: 2rem;
    margin-bottom: 2.5rem;
}

.ab_established::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 2px;
    background: var(--accent);
}

.ab_stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #1a1a8c 100%);
    border-radius: 16px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ab_stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.ab_stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.ab_stat-label {
    font-size: 1rem;
    font-weight: 500;
}

.ab_image {
    flex: 1;
    min-width: 300px;
    position: relative;
    perspective: 1000px;
}

.ab_img-container {
    position: relative;
    width: 100%;
    height: 700px;
}

.ab_img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 2;
    
}

.ab_img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 60%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
    transition: all 0.5s ease;
    z-index: 1;
}


.ab_img-container:hover .ab_img-secondary {
    transform: rotate(0deg) translate(10px, -10px);
}

.ab_img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 102%;
    padding: 1.5rem;
    background: linear-gradient(to top, var(--primary), transparent);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    border-radius: 0 0 16px 16px;
}

.ab_img-container:hover .ab_img-overlay {
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .ab_2 {
        flex-direction: column;
        gap: 3rem;
    }
    
    .ab_content {
        padding-right: 0;
    }
    
    .ab_stats {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 3rem 1rem;
    }
    
    .ab_1 h2 {
        font-size: 2.5rem;
    }
    
    .ab_tagline {
        font-size: 1.3rem;
    }
    
    .ab_img-container {
        height: 400px;
    }
    
    .ab_stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ab_1 h2 {
        font-size: 2rem;
    }
    
    .ab_content h3 {
        font-size: 1.8rem;
    }
    
    .ab_img-container {
        height: 350px;
    }
    
    .ab_stat-number {
        font-size: 2rem;
    }
}
/* ABOUTB US SECTIN ENDS============================================================================================ */
/* OUR CORE VALUE SECTION STARTS====================================================================================== */
.val_1 {
      background: url('../img/111.jpg') no-repeat center center/cover !important;
      position: relative;
      padding: 80px 0;
      max-height: 810px;
    }
    .val_2 {
      margin-top: 600px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      padding: 40px;
      max-width: 600px;
    }
    .val_3 {
      color: #dc3545;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .val_4 {
      font-weight: 700;
      margin-bottom: 20px;
    }
    .val_5 {
      margin-bottom: 20px;
    }
    .val_5 li {
      margin-bottom: 8px;
    }
    .val_6 {
      border-radius: 50px;
      padding: 8px 20px;
      margin-right: 8px;
      margin-bottom: 8px;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .val_2 {
        margin-top: 100px;
        padding: 20px;
      }
      .val_4 {
        font-size: 1.4rem;
      }
    }

    @media (max-width: 576px) {
      .val_2 {
        margin-top: 50px;
      }
    }
/* OUR CORE VALUE SECTION ENDS====================================================================================== */

/* DIRECTOR MESSAGE SECTION STARTS=========================================================================================== */
 .pm_1 {
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .pm_2 {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            position: relative;
            z-index: 2;
        }

        .pm_3 {
            display: flex;
            justify-content: center;
            margin-top: -110px;
            margin-bottom: 2rem;
        }

        .pm_4 {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            padding: 8px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .pm_4:hover {
            transform: scale(1.05);
        }

        .pm_5 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid var(--white);
        }

        .pm_6 {
            color: var(--primary);
            font-weight: 700;
            text-align: center;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 15px;
        }

        .pm_6::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .pm_7 {
            color: var(--black);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .pm_8 {
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .pm_9 {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .pm_10 {
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pm_11 {
            color: var(--primary);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .pm_12 {
            position: relative;
            z-index: 2;
        }

        .pm_13 {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            height: 100%;
        }

        .pm_14 {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .pm_15 {
            border-radius: 15px;
        }

        .pm_16 {
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .pm_16:hover {
            transform: scale(1.02);
        }

        .pm_17 {
            height: 600px;
            object-fit: cover;
            border-radius: 15px;
        }

        .pm_18 {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            padding: 20px;
            border-radius: 0 0 15px 15px;
        }

        .pm_19 {
            color: var(--white);
            font-size: 1rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }

        .carousel-control-prev, .carousel-control-next {
            width: 45px;
            height: 45px;
            background: var(--primary);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }

        .carousel-control-prev {
            left: 15px;
        }

        .carousel-control-next {
            right: 15px;
        }

        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
        }

        .carousel-indicators {
            bottom: 15px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--white);
            opacity: 0.5;
        }

        .carousel-indicators .active {
            opacity: 1;
            background-color: var(--accent);
        }

        /* News section styles */
        .news-section {
            margin-top: 2rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .news-header {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }

        .news-header::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .circular-item {
            display: flex;
            align-items: center;
            padding: 1rem;
                border-radius: 12px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s;
        }

        .circular-item:hover {
            background-color: rgba(0, 0, 0, 0.03);
        }

        .circular-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 1.2rem;
        }

        .circular-content {
            flex: 1;
        }

        .circular-title {
            font-weight: 600;
            color: var(--black);
            margin-bottom: 0.25rem;
        }

        .circular-date {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .view-btn {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .view-btn:hover {
            background: var(--primary);
            color: white;
        }

        /* Fixed slider styles */
        .fixed-slider-container {
            position: sticky;
            top: 2rem;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .pm_2 {
                margin-bottom: 3rem;
            }
            
            .pm_4 {
                width: 160px;
                height: 160px;
            }

            .fixed-slider-container {
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 768px) {
            .pm_1 {
                padding: 4rem 0;
            }
            
            .pm_2 {
                padding: 2rem 1.5rem;
            }
            
            .pm_4 {
                width: 140px;
                height: 140px;
            }
            
            .pm_17 {
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            .pm_6 {
                font-size: 1.5rem;
            }
            
            .pm_7 {
                font-size: 1rem;
            }
            
            .pm_4 {
                width: 120px;
                height: 120px;
            }
            
            .pm_17 {
                height: 400px;
            }

            .circular-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .circular-icon {
                margin-bottom: 0.75rem;
            }
        }

        .news_2 {
            margin-bottom: 2rem;
        }


       
/* DIRECTOR MESSAGE SECTION ENDS=========================================================================================== */

/* FOOTER SECTION STARTS================================================================================================ */
/* Footer Styles */
        .foot_1 {
            background-color: var(--footer);
            color: var(--white);
            padding: 3rem 0 1rem;
            position: relative;
            overflow: hidden;
        }

        .foot_1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
        }

        .foot_2 {
            max-width: 180px;
            margin-bottom: 1.5rem;
        }

        .foot_3 {
            color: var(--secondary);
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
            font-size: 1.25rem;
        }

        .foot_3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }

        .foot_4 {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .foot_4 li {
            margin-bottom: 0.8rem;
        }

        .foot_4 a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .foot_4 a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .foot_4 i {
            color: var(--secondary);
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        .foot_5 {
            margin-bottom: 1.5rem;
        }

        .foot_5 p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
        }

        .foot_5 i {
            color: var(--secondary);
            margin-right: 15px;
            margin-top: 5px;
            min-width: 20px;
            text-align: center;
        }

        .foot_6 {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }

        .foot_6 a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .foot_6 a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .foot_7 {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .foot_8 {
            background: var(--accent);
            color: white;
            padding: 5px 10px;
            border-radius: 30px;
            font-size: 0.8rem;
            display: inline-block;
            margin-top: 1rem;
        }

        .foot_9 {
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .foot_10 {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
        }

        /* Responsive adjustments for footer */
        @media (max-width: 992px) {
            .foot_11 {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            .foot_3 {
                font-size: 1.1rem;
            }
            
            .foot_9 {
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            .foot_1 {
                padding: 2rem 0 1rem;
            }
            
            .foot_6 {
                justify-content: center;
            }
            
            .foot_9 {
                height: 200px;
            }
        }

        /* FOOTER SECTION ENDS=============================================================================== */

        /* BREADCRUMB SECTION STARTS=============================================================================== */
        .breadcrumb_1 {
            background: linear-gradient(115deg, rgba(0, 0, 0,0.78), rgba(0, 0, 100, 0.78)), url('../img/222.jpg') !important;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 5.5rem 0;
            position: relative;
            overflow: hidden;
            margin-bottom: 2rem;
        }

       
        .breadcrumb_2 {
            display: flex;
            flex-wrap: wrap;
                margin-top: 15px;
            padding: 0;
            margin-bottom: 0;
            list-style: none;
            align-items: center;
        }

        .breadcrumb_3 {
            display: flex;
            align-items: center;
            font-size: 1.05rem;
            position: relative;
            transition: all 0.4s ease;
        }

        .breadcrumb_3 a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            margin: 0.2rem;
            position: relative;
            overflow: hidden;
        }

        .breadcrumb_3 a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.5s ease;
        }

        .breadcrumb_3 a:hover::before {
            left: 100%;
        }

        .breadcrumb_3 a:hover {
            color: var(--secondary);
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .breadcrumb_3.active {
            color: var(--secondary);
            font-weight: 600;
        }

        .breadcrumb_3.active a {
            background: rgba(220, 180, 120, 0.2);
            color: var(--secondary);
        }

        .breadcrumb_3+.breadcrumb_3::before {
            content: '\f105';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--white);
            padding: 0 0.5rem;
            opacity: 0.8;
            font-size: 1.2rem;
        }

        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

        .breadcrumb_4 {
            color: var(--white);
            margin-bottom: 1rem;
            font-weight: 700;
            font-size: 2.8rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
            position: relative;
            display: inline-block;
            animation: fadeInUp 1s ease-out;
        }

        .breadcrumb_4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
            animation: expandLine 1.5s ease-out forwards;
        }

        @keyframes expandLine {
            0% { width: 0; }
            100% { width: 80px; }
        }

        @keyframes fadeInUp {
            0% { 
                opacity: 0;
                transform: translateY(20px);
            }
            100% { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        .breadcrumb_5 {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            max-width: 600px;
            margin-bottom: 2rem;
            animation: fadeIn 1.5s ease-out 0.3s both;
        }

        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        

        @media (max-width: 768px) {
            .breadcrumb_1 {
                padding: 2.5rem 0;
                background-attachment: scroll;
            }
            
            .breadcrumb_4 {
                font-size: 2.2rem;
            }
            
            
            .breadcrumb_3 a {
                padding: 0.4rem 0.8rem;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 576px) {
            .breadcrumb_1 {
                padding: 4rem 0;
                text-align: center;
            }
            
            .breadcrumb_4 {
                font-size: 1.8rem;
            }
            
            .breadcrumb_5 {
                font-size: 1rem;
            }
            
            .breadcrumb_2 {
                justify-content: center;
            }
            
            .breadcrumb_3 a {
                padding: 0.3rem 0.7rem;
                margin: 0.15rem;
                font-size: 0.9rem;
            }
            
            .breadcrumb_3+.breadcrumb_3::before {
                padding: 0 0.3rem;
                font-size: 1rem;
            }
        }

       /* BREADCRUMB SECTION ENDS===================================================================================== */

       /* TEAM SECTION STARTS=============================================================================================== */

        /* Teams Section Styles */
        .team_1 {
            padding: 5rem 0;
            background: var(--light-bg);
            position: relative;
        }

        .team_2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .team_3 {
            color: var(--primary);
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .team_3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .team_4 {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .team_5 {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2.5rem;
        }

        .team_6 {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            width: 300px;
            position: relative;
            transform: translateY(50px);
            opacity: 0;
        }

        .team_6.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .team_6:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .team_7 {
            position: relative;
            overflow: hidden;
            height: 370px;
        }

        .team_8 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .team_6:hover .team_8 {
            transform: scale(1.05);
        }

        .team_9 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: var(--white);
            text-align: center;
        }

        .team_10 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .team_11 {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .team_12 {
            padding: 1.5rem;
            text-align: center;
        }

        .team_13 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }

        .team_14 {
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        /* Social Icons - Modified to appear in top right corner on hover */
        .team_15 {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.4s ease;
            z-index: 10;
        }

        .team_6:hover .team_15 {
            opacity: 1;
            transform: translateX(0);
        }

        .team_16 {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            color: var(--primary);
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            transform: translateX(20px);
            opacity: 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .team_6:hover .team_16 {
            transform: translateX(0);
            opacity: 1;
        }

        .team_6:hover .team_16:nth-child(1) {
            transition-delay: 0.1s;
        }

        .team_6:hover .team_16:nth-child(2) {
            transition-delay: 0.2s;
        }

        .team_6:hover .team_16:nth-child(3) {
            transition-delay: 0.3s;
        }

        .team_16:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px) !important;
        }

        /* Filter buttons */
        .team_17 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .team_18 {
            padding: 0.6rem 1.5rem;
            background: var(--white);
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .team_18:hover, .team_18.active {
            background: var(--primary);
            color: var(--white);
        }

        /* Animation for cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .team_1 {
                padding: 3rem 0;
            }
            
            .team_5 {
                gap: 1.5rem;
            }
            
            .team_6 {
                width: 280px;
            }
            
            .team_15 {
                opacity: 1;
                transform: none;
                flex-direction: row;
                top: auto;
                bottom: 15px;
                right: 50%;
                transform: translateX(50%);
            }
            
            .team_16 {
                transform: none;
                opacity: 1;
            }
        }

        @media (max-width: 576px) {
            .team_6 {
                width: 100%;
                max-width: 320px;
            }
            
            .team_17 {
                gap: 0.5rem;
            }
            
            .team_18 {
                padding: 0.5rem 1.2rem;
                font-size: 0.9rem;
            }
        }
        /* TEAM SECTION ENDS=============================================================================================================
         */

         /* CTA SECTION STARTS============================================================================================================ */
         /* CTA Section Styles */
        .cta_1 {
            padding: 5rem 0;
               background: linear-gradient(135deg, #05052e 0%, #040404 100%);
            position: relative;
            overflow: hidden;
        }

        .cta_1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 1;
        }

        .cta_2 {
            position: relative;
            z-index: 2;
        }

        .cta_3 {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: glow 3s infinite alternate;
        }

        @keyframes glow {
            0% {
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }
            100% {
                box-shadow: 0 10px 40px rgba(220, 180, 120, 0.4);
            }
        }

        .cta_4 {
            color: var(--white);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        .cta_5 {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1.2s ease-out;
        }

        .cta_6 {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--accent);
            color: var(--white);
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s ease;
            border: 2px solid var(--accent);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1.4s ease-out;
        }

        .cta_6::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }

        .cta_6:hover::before {
            left: 100%;
        }

        .cta_6:hover {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .cta_7 {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            animation: float 6s ease-in-out infinite;
        }

        .cta_8 {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateY(-10deg);
            transition: all 0.5s ease;
        }

        .cta_8:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Feature Icons */
        .cta_9 {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .cta_10 {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.8rem 1.2rem;
            border-radius: 50px;
            backdrop-filter: blur(5px);
            animation: fadeIn 1s ease-out;
        }

        .cta_11 {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--secondary);
            color: var(--primary);
            border-radius: 50%;
            margin-right: 0.8rem;
            font-size: 1.2rem;
        }

        .cta_12 {
            color: var(--white);
            font-weight: 500;
            font-size: 0.95rem;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .cta_4 {
                font-size: 2.2rem;
            }
            
            .cta_5 {
                font-size: 1.1rem;
            }
            
            .cta_7 {
                margin-top: 3rem;
            }
        }

        @media (max-width: 768px) {
            .cta_1 {
                padding: 3rem 0;
            }
            
            .cta_3 {
                padding: 2rem;
            }
            
            .cta_4 {
                font-size: 1.8rem;
            }
            
            .cta_5 {
                font-size: 1rem;
            }
            
            .cta_6 {
                padding: 0.8rem 2rem;
            }
            
            .cta_9 {
                gap: 1rem;
            }
            
            .cta_10 {
                padding: 0.6rem 1rem;
            }
        }

        @media (max-width: 576px) {
            .cta_4 {
                font-size: 1.6rem;
            }
            
            .cta_3 {
                padding: 1.5rem;
            }
            
            .cta_9 {
                flex-direction: column;
                gap: 0.8rem;
            }
            
            .cta_10 {
                width: 100%;
            }
            
            .cta_8 {
                transform: perspective(1000px) rotateY(0);
            }
        }
        /* CTA SECTION ENDS============================================================================================ */

        /* GALLERY IMAGE SECTION STARTS========================================================================================================== */
         /* Gallery Section Styles */
        .gal_1 {
            padding: 5rem 0;
            background: var(--light-bg);
        }

        .gal_2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .gal_3 {
            color: var(--primary);
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .gal_3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .gal_4 {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Gallery Grid */
        .gal_7 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .gal_8 {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
                text-decoration: none;
        }

        .gal_8:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .gal_9 {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .gal_10 {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .gal_8:hover .gal_10 {
            transform: scale(1.05);
        }

        .gal_14 {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .gal_8:hover .gal_14 {
            opacity: 1;
        }

        .gal_15 {
            padding: 1.2rem;
            text-align: center;
        }

        .gal_16 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.4rem;
            font-size: 1.1rem;
        }

        .gal_17 {
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        /* Enhanced Lightbox Styles */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .lightbox.open {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        .lightbox-caption {
            color: white;
            text-align: center;
            margin-top: 15px;
            font-size: 1.2rem;
            max-width: 600px;
        }

        /* Custom Close Button */
        .lightbox-close {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            z-index: 10000;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .lightbox-close:hover {
            background: #c42c14;
            transform: scale(1.1);
        }

        /* Navigation Buttons */
        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 10000;
        }

        .lightbox-prev, .lightbox-next {
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
        }

        .lightbox-prev:hover, .lightbox-next:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }

        /* Loading Animation */
        .lightbox-loader {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top: 4px solid var(--accent);
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .gal_1 {
                padding: 3rem 0;
            }
            
            .gal_7 {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 1.2rem;
            }
            
            .lightbox-close {
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .lightbox-prev, .lightbox-next {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .lightbox-caption {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .gal_7 {
                grid-template-columns: 1fr;
            }
            
            .gal_3 {
                font-size: 1.8rem;
            }
            
            .lightbox-nav {
                padding: 0 10px;
            }
            
            .lightbox-prev, .lightbox-next {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            
            .lightbox-caption {
                font-size: 0.9rem;
                margin-top: 10px;
            }
        }
        /* GALLERY IMAGE SECTION ENDS-------------==================================================================================== */

        /* GALLERY VIDEO SECTION STARTS================================================================================================= */
        .video-gallery {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}
.gallery-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.video-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .video-thumb img {
  transform: scale(1.05);
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.video-card:hover .play-btn { opacity: 1; }
.video-info { padding: 20px; }
.video-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}
.video-info p { color: #666; margin: 0; }

/* Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  background: #000;
}
.video-modal iframe {
  width: 100%;
  height: 500px;
}
.video-close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
/* GALLERY VIDEO SECTION ENDS=============================================================================================== */

/* REGISTRATION FORM STARTS===================================================================================================== */
 /* Registration Form Styles */
    .reg_1 {
        padding: 80px 0;
        background: var(--light-bg);
    }
    
    .reg_2 {
        background: var(--white);
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 1px solid rgba(0, 0, 100, 0.1);
    }
    
    .reg_3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--primary);
        position: relative;
        text-align: center;
    }
    
    .reg_4 {
        text-align: center;
        color: #7f8c8d;
        margin-bottom: 40px;
        font-size: 16px;
    }
    
    .reg_5 {
        margin-top: 30px;
    }
    
    .reg_6 {
        background: var(--light-bg);
        border-radius: 10px;
        padding: 25px;
        margin-bottom: 30px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        border-left: 4px solid var(--primary);
    }
    
    .reg_6.reg_34 {
        opacity: 1;
        transform: translateY(0);
    }
    
    .reg_7 {
        font-size: 20px;
        color: var(--primary);
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--secondary);
        display: inline-block;
    }
    
    .reg_8 {
        margin-bottom: 20px;
    }
    
    .reg_9 {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--primary);
    }
    
    .reg_10 {
        color: var(--accent);
    }
    
    .reg_11 {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    
    .reg_11:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0, 0, 100, 0.1);
    }
    
    .reg_11.reg_32 {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(160, 40, 20, 0.1);
    }
    
    .reg_12 {
        height: 5px;
    }
    
    .reg_13 {
        margin-top: 5px;
        font-size: 14px;
        color: var(--primary);
        font-weight: 500;
    }
    
    .reg_14 {
        position: relative;
        overflow: hidden;
        display: inline-block;
        width: 100%;
    }
    
    .reg_15 {
        position: absolute;
        left: -9999px;
    }
    
    .reg_16 {
        display: inline-block;
        padding: 10px 15px;
        background: var(--primary);
        color: var(--white);
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .reg_16:hover {
        background: #00004a;
    }
    
    .reg_17 {
        display: inline-block;
        margin-left: 10px;
        font-size: 14px;
        color: var(--primary);
    }
    
    .reg_18 {
        margin-top: 5px;
        font-size: 12px;
        color: #95a5a6;
    }
    
    .reg_19 {
        display: flex;
        align-items: flex-start;
    }
    
    .reg_20 {
        margin-left: 10px;
        font-size: 14px;
        color: var(--primary);
        line-height: 1.5;
    }
    
    input[type="checkbox"] {
        accent-color: var(--primary);
    }
    
    .reg_21 {
        text-align: center;
        margin-top: 30px;
    }
    
    .reg_22 {
        display: inline-flex;
        align-items: center;
        background: var(--primary);
        color: var(--white);
        border: none;
        padding: 15px 30px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        transform: translateY(0);
        box-shadow: 0 5px 15px rgba(0, 0, 100, 0.3);
    }
    
    .reg_22.reg_34 {
        animation: pulse 2s infinite;
    }
    
    .reg_22:hover {
        background: #00004a;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 100, 0.4);
    }
    
    .reg_23 {
        margin-right: 10px;
    }
    
    .reg_24 {
        font-size: 20px;
    }
    
    .reg_25 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .reg_25.reg_33 {
        opacity: 1;
        visibility: visible;
    }
    
    .reg_26 {
        width: 100%;
        max-width: 400px;
        padding: 20px;
    }
    
    .reg_27 {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        animation: modalIn 0.5s ease;
        border: 1px solid var(--secondary);
    }
    
    .reg_28 {
        padding: 30px;
        text-align: center;
    }
    
    .reg_28 i {
        font-size: 60px;
        color: var(--primary);
        margin-bottom: 20px;
    }
    
    .reg_29 {
        font-size: 24px;
        color: var(--primary);
        margin-bottom: 15px;
    }
    
    .reg_30 {
        color: #7f8c8d;
        margin-bottom: 25px;
    }
    
    .reg_31 {
        background: var(--primary);
        color: var(--white);
        border: none;
        padding: 10px 25px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 16px;
        transition: background 0.3s ease;
    }
    
    .reg_31:hover {
        background: #00004a;
    }
    
    /* Animations */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 0, 100, 0.5);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(0, 0, 100, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(0, 0, 100, 0);
        }
    }
    
    @keyframes modalIn {
        from {
            transform: scale(0.9);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .reg_2 {
            padding: 25px;
        }
        
        .reg_3 {
            font-size: 26px;
        }
        
        .reg_6 {
            padding: 20px;
        }
        
        .reg_19 {
            flex-direction: column;
        }
        
        .reg_20 {
            margin-left: 0;
            margin-top: 10px;
        }
    }
    /* REGISTRATION SECTION ENDS================================================================================= */
    
    /* EVENTS SECTION STARTS==================================================================================== */
     /* Events Section Styles */
    .events_1 {
        padding: 80px 0;
        background: var(--light-bg);
    }
    
    .events_2 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 15px;
        color: var(--primary);
        position: relative;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .events_2 .bg-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 80px;
        font-weight: 900;
        color: rgba(0, 0, 100, 0.05);
        z-index: -1;
        text-transform: uppercase;
        white-space: nowrap;
    }
    
    .events_3 {
        text-align: center;
        color: #5a5a5a;
        margin-bottom: 40px;
        font-size: 18px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
    
    .events_4 {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 30px;
    }
    
    .events_5 {
        display: flex;
        align-items: center;
        gap: 10px;
        background: white;
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .events_6 {
        font-weight: 600;
        color: var(--primary);
    }
    
    .events_7 {
        padding: 8px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background: var(--white);
        color: var(--primary);
        font-weight: 600;
        cursor: pointer;
    }
    
    .events_7:focus {
        outline: none;
        border-color: var(--primary);
    }
    
    .events_8 {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .events_9 {
        display: flex;
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(20px);
        position: relative;
    }
    
    .events_9.events_45 {
        opacity: 1;
        transform: translateY(0);
    }
    
    .events_9:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .events_10 {
        background: var(--primary);
        color: var(--white);
        padding: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 120px;
        z-index: 2;
    }
    
    .events_11 {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .events_12 {
        font-size: 32px;
        font-weight: 800;
        line-height: 1;
    }
    
    .events_13 {
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .events_14 {
        font-size: 14px;
        background: var(--secondary);
        color: var(--black);
        padding: 5px 12px;
        border-radius: 20px;
        font-weight: 700;
    }
    
    .events_46 {
        width: 600px;
        overflow: hidden;
        position: relative;
    }
    
    .events_47 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .events_9:hover .events_47 {
        transform: scale(1.08);
    }
    
    .events_50 {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--accent);
        color: white;
        padding: 5px 12px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .events_54 {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #6c757d;
        color: white;
        padding: 5px 12px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .events_15 {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .events_16 {
        margin-bottom: 20px;
    }
    
    .events_17 {
        font-size: 24px;
        color: var(--primary);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        font-weight: 700;
    }
    
    .events_17::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--secondary);
        transition: width 0.3s ease;
    }
    
    .events_9:hover .events_17::after {
        width: 120px;
    }
    
    .events_18 {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .events_19 {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #555;
        background: #f3f3f3;
        padding: 8px 15px;
        border-radius: 50px;
        font-weight: 500;
    }
    
    .events_20 {
        color: #555;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .events_51 {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .events_52, .events_53, .events_55 {
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
    }
    
    .events_52 {
        background: rgba(0, 0, 100, 0.1);
        color: var(--primary);
    }
    
    .events_53 {
        background: rgba(220, 180, 120, 0.15);
        color: #8a6916;
    }
    
    .events_55 {
        background: rgba(0, 128, 0, 0.15);
        color: #2e7d32;
    }
    
    .events_21 {
        display: flex;
        gap: 15px;
    }
    
    .events_22 {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--primary);
        color: var(--white);
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .events_22:hover {
        background: #00004a;
        transform: translateY(-3px);
        box-shadow: 0 7px 15px rgba(0,0,100,0.2);
    }
    
    .events_23 {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--secondary);
        color: var(--black);
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .events_23:hover {
        background: #d0a66a;
        transform: translateY(-3px);
        box-shadow: 0 7px 15px rgba(220,180,120,0.3);
    }
    
    .events_24 {
        text-align: center;
        padding: 60px 20px;
        display: none;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .events_24 i {
        font-size: 70px;
        color: #ddd;
        margin-bottom: 20px;
    }
    
    .events_24 h3 {
        color: var(--primary);
        margin-bottom: 10px;
        font-weight: 700;
    }
    
    .events_24 p {
        color: #777;
        font-size: 18px;
    }
    
    /* Pagination Styles */
    .events_56 {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }
    
    .events_57 {
        display: flex;
        gap: 10px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .events_58 {
        display: flex;
    }
    
    .events_59 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 10px;
        background: white;
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
    }
    
    .events_59:hover, .events_60 {
        background: var(--primary);
        color: white;
    }
    
    /* Newsletter Styles */
    .events_61 {
        padding: 80px 0;
        background: var(--primary);
        margin-top: 50px;
    }
    
    .events_62 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }
    
    .events_63 h3 {
        color: white;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .events_63 p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 18px;
        margin: 0;
        max-width: 500px;
    }
    
    .events_65 {
        display: flex;
        gap: 10px;
    }
    
    .events_66 {
        padding: 15px 20px;
        border: none;
        border-radius: 8px;
        width: 300px;
        font-size: 16px;
    }
    
    .events_66:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(220, 180, 120, 0.3);
    }
    
    .events_67 {
        padding: 15px 25px;
        border: none;
        border-radius: 8px;
        background: var(--secondary);
        color: var(--black);
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .events_67:hover {
        background: #e0b97e;
        transform: translateY(-3px);
        box-shadow: 0 7px 15px rgba(0,0,0,0.1);
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .events_62 {
            flex-direction: column;
            text-align: center;
        }
        
        .events_65 {
            justify-content: center;
        }
    }
    
    @media (max-width: 768px) {
        .events_9 {
            flex-direction: column;
        }
        
        .events_10 {
            flex-direction: row;
            justify-content: space-between;
            padding: 20px;
        }
        
        .events_11 {
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .events_12 {
            font-size: 28px;
        }
        
        .events_46 {
            width: 100%;
            height: 200px;
        }
        
        .events_21 {
            flex-direction: column;
        }
        
        .events_18 {
            flex-direction: column;
        }
        
        .events_65 {
            flex-direction: column;
        }
        
        .events_66 {
            width: 100%;
        }
    }
    
    @media (max-width: 576px) {
        .events_10 {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }
        
        .events_11 {
            flex-direction: column;
            gap: 5px;
        }
        
        .events_2 {
            font-size: 28px;
        }
        
        .events_2 .bg-text {
            font-size: 50px;
        }
        
        .events_51 {
            flex-wrap: wrap;
        }
    }
    /* EVENTS SECTION ENDS============================================================================================ */

    /* HISTORY SECTION STARTS============================================================================================== */
     /* History Section Styles */
    .his_1 {
        padding: 80px 0;
        background: #f8f9fa;
        overflow: hidden;
    }
    
    .his_2 {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .his_3 {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .his_4 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 15px;
        color: #000064;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .his_4 .his_5 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 80px;
        font-weight: 900;
        color: rgba(0, 0, 100, 0.05);
        z-index: 0;
        text-transform: uppercase;
        white-space: nowrap;
    }
    
    .his_6 {
        color: #5a5a5a;
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .his_7 {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .his_8 {
        display: flex;
        gap: 30px;
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        margin-bottom: 40px;
        align-items: center;
        opacity: 0;
        transform: translateY(20px);
        animation: his_fadeInUp 0.8s ease forwards;
    }
    
    .his_9 {
        background: #000064;
        color: white;
        padding: 25px 20px;
        border-radius: 10px;
        text-align: center;
        min-width: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .his_10 {
        font-size: 32px;
        font-weight: 800;
        line-height: 1;
    }
    
    .his_11 {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 8px;
    }
    
    .his_12 {
        flex: 1;
    }
    
    .his_13 {
        font-size: 24px;
        color: #000064;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .his_14 {
        color: #555;
        line-height: 1.7;
        margin-bottom: 0;
    }
    
    .his_15 {
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        opacity: 0;
        transform: translateY(20px);
        animation: his_fadeInUp 0.8s ease 0.3s forwards;
    }
    
    .his_16 {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
    
    .his_17 {
        font-size: 22px;
        color: #000064;
        margin-bottom: 10px;
        font-weight: 700;
    }
    
    .his_18 {
        color: #555;
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    .his_19 {
        position: relative;
        padding-left: 30px;
    }
    
    .his_19::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: #000064;
        border-radius: 2px;
    }
    
    .his_20 {
        position: relative;
        margin-bottom: 30px;
        opacity: 0;
        transform: translateX(-20px);
        animation: his_fadeInRight 0.6s ease forwards;
    }
    
    .his_20:nth-child(1) { animation-delay: 0.5s; }
    .his_20:nth-child(2) { animation-delay: 0.7s; }
    .his_20:nth-child(3) { animation-delay: 0.9s; }
    .his_20:nth-child(4) { animation-delay: 1.1s; }
    .his_20:nth-child(5) { animation-delay: 1.3s; }
    .his_20:nth-child(6) { animation-delay: 1.5s; }
    .his_20:nth-child(7) { animation-delay: 1.7s; }
    
    .his_20::before {
        content: '';
        position: absolute;
        left: -37px;
        top: 8px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #dcb478;
        border: 3px solid #000064;
        z-index: 1;
    }
    
    .his_21 {
        background: #dcb478;
        color: #000;
        font-weight: 700;
        padding: 8px 15px;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .his_22 h4 {
        font-size: 18px;
        color: #000064;
        margin-bottom: 5px;
        font-weight: 600;
    }
    
    .his_22 p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 0;
        font-size: 14px;
    }
    
    /* Animations */
    @keyframes his_fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes his_fadeInRight {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .his_7 {
            padding: 0 20px;
        }
    }
    
    @media (max-width: 768px) {
        .his_8 {
            flex-direction: column;
            text-align: center;
        }
        
        .his_9 {
            width: 100%;
            margin-bottom: 20px;
        }
        
        .his_4 {
            font-size: 28px;
        }
        
        .his_4 .his_5 {
            font-size: 50px;
        }
        
        .his_19 {
            padding-left: 20px;
        }
        
        .his_19::before {
            left: -10px;
        }
        
        .his_20::before {
            left: -27px;
        }
    }
    
    @media (max-width: 576px) {
        .his_8, .his_15 {
            padding: 20px;
        }
        
        .his_9 {
            min-width: auto;
            padding: 20px 15px;
        }
        
        .his_10 {
            font-size: 28px;
        }
        
        .his_4 {
            font-size: 24px;
        }
        
        .his_4 .his_5 {
            font-size: 40px;
        }
        
        .his_6 {
            font-size: 16px;
        }
    }
    /* HISTORY SECTION ENDS========================================================================================== */

    /* MISSISON AND VISSION SECTION STARTS=================================================================================== */
     /* Mission & Vision Section Styles */
    .miss_1 {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        overflow: hidden;
        position: relative;
        isolation: isolate;
    }
    
    .miss_2 {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        position: relative;
        z-index: 2;
    }
    
    .miss_3 {
        text-align: center;
        margin-bottom: 80px;
    }
    
    .miss_4 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #000064;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
    
    .miss_4 .miss_5 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 100px;
        font-weight: 900;
        color: rgba(0, 0, 100, 0.05);
        z-index: -1;
        text-transform: uppercase;
        white-space: nowrap;
    }
    
    .miss_6 {
        color: #5a5a5a;
        font-size: 20px;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
        position: relative;
        padding: 0 20px;
    }
    
    .miss_7 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        max-width: 1100px;
        margin: 0 auto;
    }
    
    .viss_1 {
        perspective: 1000px;
    }
    
    .viss_2 {
        background: white;
        border-radius: 16px;
        padding: 40px 30px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transform-style: preserve-3d;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(50px) rotateX(5deg);
        animation: miss_fadeInUp 0.8s ease forwards;
        border-left: 5px solid #dcb478;
    }
    
    .viss_1:nth-child(1) .viss_2 {
        animation-delay: 0.2s;
        border-left-color: #000064;
    }
    
    .viss_1:nth-child(2) .viss_2 {
        animation-delay: 0.4s;
        border-left-color: #dcb478;
    }
    
    .viss_2:hover {
        transform: translateY(-15px) rotateX(0);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }
    
    .viss_2::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 100, 0.03) 0%, rgba(220, 180, 120, 0.03) 100%);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: -1;
    }
    
    .viss_2:hover::before {
        opacity: 1;
    }
    
    .viss_3 {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }
    
    .viss_4 {
        margin-right: 20px;
        flex-shrink: 0;
    }
    
    .viss_9 {
        background: linear-gradient(135deg, #000064 0%, #1a1a8c 100%);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 20px rgba(0, 0, 100, 0.15);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }
    
    .viss_1:nth-child(2) .viss_9 {
        background: linear-gradient(135deg, #dcb478 0%, #e5c891 100%);
    }
    
    .viss_2:hover .viss_9 {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 15px 25px rgba(0, 0, 100, 0.2);
    }
    
    .viss_1:nth-child(2) .viss_2:hover .viss_9 {
        box-shadow: 0 15px 25px rgba(220, 180, 120, 0.3);
    }
    
    .viss_9::before {
        content: '';
        position: absolute;
        width: 50%;
        height: 180%;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: rotate(45deg);
        animation: viss_shine 3s infinite;
    }
    
    .viss_5 {
        width: 35px;
        height: 35px;
        fill: white;
        position: relative;
        z-index: 1;
    }
    
    .viss_6 {
        font-size: 28px;
        color: #000064;
        margin: 0;
        font-weight: 700;
        position: relative;
        padding-bottom: 10px;
    }
    
    .viss_6::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: #dcb478;
        transition: width 0.5s ease;
    }
    
    .viss_2:hover .viss_6::after {
        width: 80px;
    }
    
    .viss_1:nth-child(2) .viss_6::after {
        background: #000064;
    }
    
    .viss_7 {
        flex: 1;
        margin-bottom: 20px;
    }
    
    .viss_8 {
        color: #555;
        line-height: 1.8;
        margin-bottom: 0;
        font-size: 17px;
        position: relative;
    }
    
    .viss_10 {
        height: 6px;
        background: #f0f0f0;
        border-radius: 3px;
        overflow: hidden;
        margin-top: auto;
    }
    
    .viss_11 {
        height: 100%;
        width: 0;
        background: linear-gradient(to right, #000064, #dcb478);
        border-radius: 3px;
        transition: width 1s ease-in-out;
    }
    
    .viss_2:hover .viss_11 {
        width: 100%;
    }
    
    .viss_1:nth-child(2) .viss_11 {
        background: linear-gradient(to right, #dcb478, #000064);
    }
    
    /* Background elements */
    .miss_8, .miss_9, .miss_10 {
        position: absolute;
        border-radius: 50%;
        z-index: 1;
    }
    
    .miss_8 {
        width: 300px;
        height: 300px;
        background: rgba(0, 0, 100, 0.03);
        top: -150px;
        right: -150px;
        animation: miss_float 15s infinite ease-in-out;
    }
    
    .miss_9 {
        width: 200px;
        height: 200px;
        background: rgba(220, 180, 120, 0.05);
        bottom: -100px;
        left: -100px;
        animation: miss_float 12s infinite ease-in-out reverse;
    }
    
    .miss_10 {
        width: 150px;
        height: 150px;
        background: rgba(0, 0, 100, 0.03);
        top: 50%;
        left: 10%;
        animation: miss_float 10s infinite ease-in-out;
    }
    
    /* Animations */
    @keyframes miss_fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px) rotateX(5deg);
        }
        to {
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }
    }
    
    @keyframes viss_shine {
        0% {
            left: -100%;
        }
        20% {
            left: 100%;
        }
        100% {
            left: 100%;
        }
    }
    
    @keyframes miss_float {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-20px) rotate(10deg);
        }
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .miss_7 {
            gap: 30px;
        }
    }
    
    @media (max-width: 992px) {
        .miss_7 {
            grid-template-columns: 1fr;
            max-width: 700px;
        }
        
        .miss_4 {
            font-size: 36px;
        }
        
        .miss_4 .miss_5 {
            font-size: 80px;
        }
        
        .miss_8 {
            display: none;
        }
    }
    
    @media (max-width: 768px) {
        .miss_1 {
            padding: 80px 0;
        }
        
        .miss_3 {
            margin-bottom: 60px;
        }
        
        .miss_4 {
            font-size: 32px;
        }
        
        .miss_4 .miss_5 {
            font-size: 60px;
        }
        
        .miss_6 {
            font-size: 18px;
        }
        
        .viss_2 {
            padding: 30px 25px;
        }
        
        .viss_9 {
            width: 60px;
            height: 60px;
        }
        
        .viss_5 {
            width: 30px;
            height: 30px;
        }
        
        .viss_6 {
            font-size: 24px;
        }
        
        .viss_8 {
            font-size: 16px;
        }
        
        .miss_10 {
            display: none;
        }
    }
    
    @media (max-width: 576px) {
        .miss_1 {
            padding: 60px 0;
        }
        
        .miss_3 {
            margin-bottom: 50px;
        }
        
        .miss_4 {
            font-size: 28px;
        }
        
        .miss_4 .miss_5 {
            font-size: 50px;
        }
        
        .miss_6 {
            font-size: 16px;
            padding: 0 10px;
        }
        
        .viss_2 {
            padding: 25px 20px;
            border-radius: 12px;
        }
        
        .viss_3 {
            flex-direction: column;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .viss_4 {
            margin-right: 0;
            margin-bottom: 15px;
        }
        
        .viss_9 {
            width: 55px;
            height: 55px;
        }
        
        .viss_5 {
            width: 25px;
            height: 25px;
        }
        
        .viss_6 {
            font-size: 22px;
        }
        
        .viss_6::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .viss_8 {
            font-size: 15px;
            text-align: center;
        }
        
        .miss_9 {
            display: none;
        }
    }
    
    @media (max-width: 400px) {
        .miss_4 {
            font-size: 24px;
        }
        
        .miss_4 .miss_5 {
            font-size: 40px;
        }
        
        .viss_2 {
            padding: 20px 15px;
        }
        
        .viss_6 {
            font-size: 20px;
        }
    }
    /* MISSION AND VISSION SECTION ENDS================================================================================== */


    /* MESSAGE FROM OFFICIAL SECTION STARTS=================================================================================== */
    
        .mes_container {
                  max-width: 1300px;
    /* background: var(--white); */
    /* border-radius: 20px; */
    overflow: hidden;
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
    padding: 40px 120px;
    margin: 40px auto;
        }
        
        .mes_title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }
        
        .mes_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .mes_wrapper {
            display: flex;
            flex-direction: column;
            gap: 80px;
        }
        
        .mes_card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            overflow: visible;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            width: 100%;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            border-top: 5px solid var(--secondary);
            padding-left: 100px;
            min-height: 300px;
        }
        
        .mes_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .mes_header {
            background: var(--primary);
            color: var(--white);
            padding: 20px;
            text-align: center;
            position: relative;
            margin-left: -100px;
            border-radius: 15px 0 0 0;
        }
        
        .mes_header h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .mes_img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 5px solid var(--white);
            overflow: hidden;
            position: absolute;
            left: -90px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .mes_img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .mes_content {
            padding: 30px;
            position: relative;
        }
        
        .mes_text {
            font-size: 1.05rem;
            margin-bottom: 25px;
            color: #333;
            line-height: 1.8;
            position: relative;
            padding: 0 10px;
        }
        
        .mes_text:before {
            content: """;
            font-size: 5rem;
            color: var(--secondary);
            opacity: 0.2;
            position: absolute;
            top: -40px;
            left: 0;
            font-family: Georgia, serif;
        }
        
        .mes_sign {
            text-align: right;
            border-top: 1px dashed var(--secondary);
            padding-top: 20px;
        }
        
        .mes_name {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .mes_role {
            color: var(--accent);
            font-style: italic;
            font-size: 0.95rem;
        }
        
        .mes_icon {
            position: absolute;
            opacity: 0.05;
            font-size: 8rem;
            z-index: 0;
            bottom: 10px;
            right: 10px;
            transform: rotate(15deg);
            color: var(--primary);
        }
        
        .mes_theme {
            position: absolute;
            bottom: 20px;
            left: 20px;
            display: flex;
            gap: 10px;
        }
        
        .mes_sicon {
            width: 30px;
            height: 30px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .mes_container {
                padding: 20px;
            }
            
            .mes_card {
                padding-left: 0;
                min-height: auto;
            }
            
            .mes_img {
                position: relative;
                left: 0;
                top: 0;
                transform: none;
                margin: -70px auto 20px;
                width: 140px;
                height: 140px;
            }
            
            .mes_header {
                margin-left: 0;
                border-radius: 15px 15px 0 0;
            }
            
            .mes_content {
                padding: 20px;
            }
            
            .mes_text {
                text-align: center;
            }
            
            .mes_sign {
                text-align: center;
            }
        }
        /* MESSAGE FROM OFFICIAL SECTION ENDS============================================================================= */

        /* RULES SECTION STARTS=============================================================-=========================== */
        /* Breadcrumb Styles */
        .rule_breadcrumb {
            background: linear-gradient(to right, var(--primary) 0%, #1a1a8a 100%);
            padding: 40px 0 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .rule_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .rule_row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .rule_col {
            flex: 1;
            min-width: 300px;
        }
        
        .rule_title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .rule_breadcrumb_list {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .rule_breadcrumb_item {
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .rule_breadcrumb_item a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .rule_breadcrumb_item a:hover {
            color: white;
            text-decoration: underline;
        }
        
        .rule_breadcrumb_item.active a {
            color: white;
        }
        
        .rule_breadcrumb_item i {
            margin: 0 10px;
            color: var(--secondary);
            font-size: 0.9rem;
        }
        
        /* Rules Content Styles */
        .rule_content {
            padding: 50px 0;
            background: var(--white);
        }
        
        .rule_section {
            margin-bottom: 60px;
            animation: fadeIn 1s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .rule_section_title {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary);
            display: inline-block;
        }
        
        .rule_card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid var(--accent);
        }
        
        .rule_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .rule_card_title {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .rule_card_title i {
            margin-right: 15px;
            color: var(--accent);
            font-size: 1.8rem;
        }
        
        .rule_list {
            list-style-type: none;
            padding: 0;
        }
        
        .rule_list_item {
            padding: 15px 0;
            border-bottom: 1px dashed #e0e0e0;
            display: flex;
            align-items: flex-start;
        }
        
        .rule_list_item:last-child {
            border-bottom: none;
        }
        
        .rule_list_icon {
            color: var(--accent);
            margin-right: 15px;
            font-size: 1.2rem;
            margin-top: 3px;
        }
        
        .rule_text {
            flex: 1;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        
        /* Court Diagram */
        .rule_diagram {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            margin: 40px 0;
            text-align: center;
        }
        
        .rule_diagram_title {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .rule_court {
            width: 100%;
            max-width: 600px;
            height: 330px;
            background: #e8f4fc;
            border: 3px solid var(--primary);
            border-radius: 10px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .rule_center_line {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 100%;
            background: var(--accent);
        }
        
        .rule_cross_line {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 6px;
            background: var(--accent);
        }
        
        .rule_post {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .rule_post_1 {
            top: 30px;
            left: 30px;
        }
        
        .rule_post_2 {
            top: 30px;
            right: 30px;
        }
        
        .rule_post_3 {
            bottom: 30px;
            left: 30px;
        }
        
        .rule_post_4 {
            bottom: 30px;
            right: 30px;
        }
        
        .rule_sitting_box {
            position: absolute;
            width: 80px;
            height: 40px;
            background: var(--secondary);
            opacity: 0.7;
            border-radius: 5px;
        }
        
        .rule_sitting_1 {
            top: 50%;
            left: 25%;
            transform: translate(-50%, -50%);
        }
        
        .rule_sitting_2 {
            top: 50%;
            left: 75%;
            transform: translate(-50%, -50%);
        }
        
        .rule_diagram_labels {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .rule_label {
            display: flex;
            align-items: center;
            margin: 10px;
        }
        
        .rule_color_box {
            width: 20px;
            height: 20px;
            margin-right: 10px;
            border-radius: 3px;
        }
        
        /* Download Section */
        .rule_download {
            text-align: center;
            padding: 50px 0;
            background: linear-gradient(to bottom, var(--white) 0%, #e6eef7 100%);
            border-radius: 15px;
            margin: 40px 0;
        }
        
        .rule_download_title {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .rule_download_text {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .rule_btn {
            display: inline-block;
            padding: 15px 30px;
            background: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(160, 40, 20, 0.3);
        }
        
        .rule_btn:hover {
            background: #c42f1a;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(160, 40, 20, 0.4);
        }
        
        .rule_btn i {
            margin-right: 10px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .rule_title {
                font-size: 2rem;
            }
            
            .rule_section_title {
                font-size: 1.7rem;
            }
            
            .rule_card_title {
                font-size: 1.3rem;
            }
            
            .rule_breadcrumb_item {
                font-size: 1rem;
            }
            
            .rule_court {
                height: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .rule_breadcrumb {
                padding: 30px 0 40px;
            }
            
            .rule_title {
                font-size: 1.7rem;
            }
            
            .rule_section_title {
                font-size: 1.5rem;
            }
            
            .rule_card {
                padding: 20px;
            }
            
            .rule_court {
                height: 200px;
            }
            
            .rule_sitting_box {
                width: 60px;
                height: 30px;
            }
        }
        /* RULES SECTION ENDS======================================================================================== */

        /* COMMITTEE SECTION STARTS=========================================================================================== */
          
        .ecomitee_container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }
        
        .ecomitee_title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }
        
        .ecomitee_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .ecomitee_intro {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 50px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            border-left: 5px solid var(--primary);
        }
        
        .ecomitee_intro p {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .ecomitee_grid {
            margin-top: 120px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px 30px;
        }
        
        .ecomitee_card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            /* overflow: hidden; */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            border-top: 5px solid var(--secondary);
            padding-top: 90px;
            opacity: 1 !important;
            transform: translateY(20px);
        }
        
        .ecomitee_card.ecomitee_1 {
            border-top-color: var(--accent);
        }
        
        .ecomitee_card.ecomitee_2 {
            border-top-color: var(--primary);
        }
        
        .ecomitee_card.ecomitee_3 {
            border-top-color: #2a8a3b;
        }
        
        .ecomitee_card.ecomitee_4 {
            border-top-color: #9c37a3;
        }
        
        .ecomitee_card.ecomitee_5 {
            border-top-color: #2b6fa8;
        }
        
        .ecomitee_card.ecomitee_6 {
            border-top-color: #e67e22;
        }
        
        .ecomitee_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .ecomitee_image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 5px solid var(--white);
            overflow: hidden;
            margin: -130px auto 20px;
            position: relative;
            z-index: 2;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .ecomitee_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .ecomitee_name {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 5px;
            text-align: center;
        }
        
        .ecomitee_role {
            color: var(--accent);
            font-style: italic;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
            padding: 0 10px;
        }
        
        .ecomitee_content {
            padding: 0 20px 20px;
            position: relative;
        }
        
        .ecomitee_responsibilities {
            margin-bottom: 20px;
        }
        
        .ecomitee_responsibilities ul {
            list-style-type: none;
            padding: 0;
        }
        
        .ecomitee_responsibilities li {
            padding: 8px 0;
            border-bottom: 1px dashed #e0e0e0;
            display: flex;
            align-items: flex-start;
        }
        
        .ecomitee_responsibilities li:last-child {
            border-bottom: none;
        }
        
        .ecomitee_responsibilities i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 5px;
            font-size: 0.9rem;
        }
        
        .ecomitee_message {
            background: rgba(220, 180, 120, 0.1);
            border-radius: 10px;
            padding: 15px;
            margin-top: 20px;
            text-align: center;
            position: relative;
            border-left: 3px solid var(--secondary);
        }
        
        .ecomitee_message:before {
            content: """;
            font-size: 3rem;
            color: var(--secondary);
            opacity: 0.3;
            position: absolute;
            top: -20px;
            left: 10px;
            font-family: Georgia, serif;
        }
        
        .ecomitee_icon {
            position: absolute;
            opacity: 0.05;
            font-size: 6rem;
            z-index: 0;
            bottom: 10px;
            right: 10px;
            transform: rotate(15deg);
            color: var(--primary);
        }
        
        @media (max-width: 768px) {
            .ecomitee_grid {
                grid-template-columns: 1fr;
                gap: 80px 30px;
            }
            
            .ecomitee_container {
                padding: 10px;
            }
            
            .ecomitee_content {
                padding: 0 15px 15px;
            }
            
            .ecomitee_image {
                width: 160px;
                height: 160px;
                margin-top: -110px;
            }
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate {
            animation: fadeInUp 0.6s ease forwards;
        }
        /* COMMITTEE SECTION ENDS================================================================================================= */

        /* ACHIEVEMENTS SECTIONSTARTS==================================================================================================== */
         .ach_container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }
        
        .ach_title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .ach_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .ach_title span {
            color: var(--accent);
        }
        
        /* Floating animation */
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        /* Pulse animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Shine effect */
        @keyframes shine {
            0% { background-position: -100px; }
            100% { background-position: 200px; }
        }
        
        /* Section styles */
        .ach_section {
            margin-bottom: 80px;
            position: relative;
        }
        
        .ach_section_title {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 40px;
            padding: 15px 20px;
            background: linear-gradient(90deg, rgba(220, 180, 120, 0.2) 0%, rgba(255,255,255,0) 100%);
            border-left: 5px solid var(--secondary);
            display: inline-block;
            border-radius: 0 8px 8px 0;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }
        
        /* Milestones - Roadmap style */
        .ach_roadmap {
            position: relative;
            padding: 40px 0;
        }
        
        .ach_roadmap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--secondary), var(--primary));
            border-radius: 2px;
        }
        
        .ach_milestone {
            width: 45%;
            padding: 25px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            position: relative;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(50px);
            border: 1px solid rgba(220, 180, 120, 0.3);
        }
        
        .ach_milestone:nth-child(odd) {
            margin-left: auto;
            border-right: 5px solid var(--accent);
        }
        
        .ach_milestone:nth-child(even) {
            margin-right: auto;
            border-left: 5px solid var(--primary);
        }
        
        .ach_milestone:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .ach_year {
            position: absolute;
            top: -20px;
            width: 90px;
            height: 40px;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }
        
        .ach_milestone:nth-child(odd) .ach_year {
            right: -45px;
        }
        
        .ach_milestone:nth-child(even) .ach_year {
            left: -45px;
        }
        
        .ach_content {
            padding: 10px 0;
        }
        
        .ach_content p {
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        /* Team Achievements - Card style */
        .ach_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .ach_card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            padding: 30px;
            text-align: center;
            border-top: 5px solid var(--secondary);
            opacity: 0;
            transform: translateY(50px);
        }
        
        .ach_card:hover {
            transform: translateY(-10px) rotate(2deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .ach_card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right, 
                rgba(255, 255, 255, 0.3), 
                rgba(255, 255, 255, 0)
            );
            transform: rotate(30deg);
            animation: shine 3s infinite linear;
        }
        
        .ach_medal {
            font-size: 3.5rem;
            margin-bottom: 20px;
            display: block;
            animation: floating 3s ease-in-out infinite;
        }
        
        .ach_gold {
            color: #ffd700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        
        .ach_silver {
            color: #c0c0c0;
            text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
        }
        
        .ach_bronze {
            color: #cd7f32;
            text-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
        }
        
        .ach_card_title {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .ach_card_content {
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        /* Individual Achievements - Flip cards */
        .ach_flip_container {
            perspective: 1000px;
            height: 200px;
            margin-bottom: 30px;
        }
        
        .ach_flip_card {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            cursor: pointer;
        }
        
        .ach_flip_container:hover .ach_flip_card {
            transform: rotateY(180deg);
        }
        
        .ach_flip_front, .ach_flip_back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .ach_flip_front {
            background: linear-gradient(135deg, var(--primary) 0%, #1a1a8a 100%);
            color: var(--white);
        }
        
        .ach_flip_back {
            background: linear-gradient(135deg, var(--accent) 0%, #c42f1a 100%);
            color: var(--white);
            transform: rotateY(180deg);
        }
        
        .ach_player {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .ach_achievement {
            font-size: 1.1rem;
            line-height: 1.6;
            text-align: center;
        }
        
        /* Recognition & Awards */
        .ach_recognition {
            background: linear-gradient(135deg, var(--primary) 0%, #1a1a8a 100%);
            color: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(50px);
        }
        
        .ach_recognition::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><circle cx="50" cy="50" r="40" fill="white" /></svg>');
            background-size: 200px;
            animation: pulse 4s infinite ease-in-out;
        }
        
        .ach_recognition_list {
            list-style-type: none;
            padding: 0;
            position: relative;
            z-index: 2;
        }
        
        .ach_recognition_list li {
            padding: 20px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .ach_recognition_list li:hover {
            transform: translateX(10px);
        }
        
        .ach_recognition_list li:last-child {
            border-bottom: none;
        }
        
        .ach_recognition_list i {
            color: var(--secondary);
            margin-right: 20px;
            font-size: 1.8rem;
            min-width: 30px;
            text-shadow: 0 0 10px rgba(220, 180, 120, 0.5);
        }
        
        /* Trophy decoration */
        .ach_trophy {
            position: absolute;
            font-size: 8rem;
            opacity: 0.1;
            color: var(--secondary);
            z-index: 1;
        }
        
        .ach_trophy_1 {
            top: 20px;
            right: 20px;
            animation: floating 5s infinite ease-in-out;
        }
        
        .ach_trophy_2 {
            bottom: 20px;
            left: 20px;
            animation: floating 4s infinite ease-in-out reverse;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .ach_roadmap::before {
                left: 30px;
            }
            
            .ach_milestone {
                width: calc(100% - 60px);
                margin-left: 60px !important;
                border-left: 5px solid var(--primary) !important;
                border-right: none !important;
            }
            
            .ach_milestone:nth-child(odd) .ach_year,
            .ach_milestone:nth-child(even) .ach_year {
                left: -75px;
                right: auto;
            }
        }
        
        @media (max-width: 768px) {
            .ach_title {
                font-size: 2rem;
            }
            
            .ach_section_title {
                font-size: 1.7rem;
            }
            
            .ach_grid {
                grid-template-columns: 1fr;
            }
            
            .ach_recognition {
                padding: 25px;
            }
            
            .ach_trophy {
                font-size: 5rem;
            }
        }
        
        @media (max-width: 576px) {
            .ach_container {
                padding: 10px;
            }
            
            .ach_title {
                font-size: 1.8rem;
            }
            
            .ach_section_title {
                font-size: 1.5rem;
            }
            
            .ach_milestone {
                padding: 20px;
            }
            
            .ach_year {
                width: 70px;
                height: 35px;
                font-size: 0.9rem;
            }
            
            .ach_milestone:nth-child(odd) .ach_year,
            .ach_milestone:nth-child(even) .ach_year {
                left: -60px;
            }
        }
        /* Individual Achievements - Enhanced with images */
        .ach_player_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 30px;
        }
        
        .ach_player_card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
        }
        
        .ach_player_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .ach_player_image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .ach_player_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .ach_player_card:hover .ach_player_image img {
            transform: scale(1.1);
        }
        
        .ach_player_image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            opacity: 0.7;
        }
        
        .ach_player_badge {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .ach_player_content {
            padding: 25px;
            position: relative;
        }
        
        .ach_player_name {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .ach_player_title {
            color: var(--accent);
            font-style: italic;
            margin-bottom: 15px;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .ach_player_achievement {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(220, 180, 120, 0.1);
            border-radius: 10px;
            border-left: 3px solid var(--secondary);
        }
        
        .ach_player_stats {
            display: flex;
            justify-content: space-around;
            border-top: 1px dashed #e0e0e0;
            padding-top: 15px;
        }
        
        .ach_stat {
            text-align: center;
        }
        
        .ach_stat_number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        
        .ach_stat_label {
            font-size: 0.9rem;
            color: #777;
        }
        
        .ach_player_social {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .ach_social_icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .ach_social_icon:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        /* Medal decoration for player cards */
        .ach_player_medal {
            position: absolute;
            top: -20px;
            left: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #000;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            animation: floating 3s ease-in-out infinite;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .ach_player_grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .ach_title {
                font-size: 2rem;
            }
            
            .ach_section_title {
                font-size: 1.7rem;
            }
            
            .ach_player_grid {
                grid-template-columns: 1fr;
            }
            
            .ach_player_image {
                height: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .ach_container {
                padding: 10px;
            }
            
            .ach_title {
                font-size: 1.8rem;
            }
            
            .ach_section_title {
                font-size: 1.5rem;
            }
            
            .ach_player_content {
                padding: 20px;
            }
            
            .ach_player_stats {
                flex-wrap: wrap;
            }
            
            .ach_stat {
                width: 50%;
                margin-bottom: 15px;
            }
        }
        /* ACHIEVEMENTS SECTION ENDS================================================================================================== */

        /* CONTACT SECTION STARTS=========================================================================================================== */
          .con_section {
        padding: 60px 0px 0px 0px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e6eef7 100%);
    }
    
    .con_container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .con_row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px 50px;
    }
    
    .con_col {
        flex: 1;
        padding: 0 15px;
        min-width: 300px;
        margin-bottom: 30px;
    }
    
    .con_title {
        color: #000064;
        font-size: 2rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .con_title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: #dcb478;
        border-radius: 2px;
    }
    
    .con_desc {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .con_contact_info {
        margin-bottom: 40px;
    }
    
    .con_info_item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
    }
    
    .con_icon {
        width: 50px;
        height: 50px;
        background: #000064;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .con_info_content h4 {
        color: #000064;
        margin-bottom: 5px;
        font-size: 1.2rem;
    }
    
    .con_info_content p {
        color: #555;
        line-height: 1.6;
        margin: 0;
    }
    
    .con_social h3 {
        color: #000064;
        margin-bottom: 15px;
        font-size: 1.5rem;
    }
    
    .con_social_icons {
        display: flex;
        gap: 15px;
    }
    
    .con_social_icon {
        width: 45px;
        height: 45px;
        background: #000064;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .con_social_icon:hover {
        background: #dcb478;
        transform: translateY(-3px);
    }
    
    .con_contact_form {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .con_form_group {
        margin-bottom: 20px;
    }
    
    .con_form_group label {
        display: block;
        margin-bottom: 8px;
        color: #000064;
        font-weight: 500;
    }
    
    .con_form_group input,
    .con_form_group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .con_form_group input:focus,
    .con_form_group textarea:focus {
        outline: none;
        border-color: #000064;
        box-shadow: 0 0 0 2px rgba(0, 0, 100, 0.1);
    }
    
    .con_submit_btn {
        background: #000064;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 5px;
        font-size: 1.1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .con_submit_btn:hover {
        background: #dcb478;
        transform: translateY(-2px);
    }
    
    .con_map {
        margin-top: 50px;
    }
    
    .con_map_container {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
        .con_row {
            flex-direction: column;
        }
        
        .con_col {
            flex: none;
            width: 100%;
        }
        
        .con_title {
            font-size: 1.7rem;
        }
    }
    
    @media (max-width: 576px) {
        .con_section {
            padding: 40px 0;
        }
        
        .con_container {
            padding: 0 15px;
        }
        
        .con_title {
            font-size: 1.5rem;
        }
        
        .con_contact_form {
            padding: 20px;
        }
        
        .con_info_item {
            flex-direction: column;
            text-align: center;
        }
        
        .con_icon {
            margin-right: 0;
            margin-bottom: 15px;
        }
        
        .con_social_icons {
            justify-content: center;
        }
    }
    /* CONTACT SECTION ENDS=========================================================================================================== */

    /* FLOATING SOCIAL LINKS SECTION STARTS========================================================================================== */
       .float_social {
            position: fixed;
            right: 20px;
            top: 80%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .float_social.hidden {
            opacity: 0;
            transform: translateY(-50%) scale(0.8);
            pointer-events: none;
        }
        
        .fl_1, .fl_2, .fl_3, .fl_4, .fl_5 {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        
      .float_icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
            overflow: hidden;
        }
        
        
        .float_icon:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            top: 0;
            left: -100%;
            transform: skewX(-30deg);
            transition: all 0.6s ease;
        }
        
        .float_icon:hover:before {
            left: 120%;
        }
        
        .float_text {
            position: absolute;
            right: 0px;
            background: white;
            padding: 10px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 12px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1;
            white-space: nowrap;
        }
        
        .fl_1:hover .float_icon,
        .fl_2:hover .float_icon,
        .fl_3:hover .float_icon,
        .fl_4:hover .float_icon,
        .fl_5:hover .float_icon {
            transform: scale(1.15) rotate(8deg);
        }
        
        .fl_1:hover .float_text,
        .fl_2:hover .float_text,
        .fl_3:hover .float_text,
        .fl_4:hover .float_text,
        .fl_5:hover .float_text {
            opacity: 1;
            visibility: visible;
            right: 85px;
        }
        
        /* WhatsApp */
        .fl_1 .float_icon {
            background: var(--whatsapp);
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
        }
        
        .fl_1 .float_text {
            color: var(--whatsapp);
        }
        
        /* Facebook */
        .fl_2 .float_icon {
            background: var(--facebook);
            box-shadow: 0 5px 20px rgba(59, 89, 152, 0.4);
        }
        
        .fl_2 .float_text {
            color: var(--facebook);
        }
        
        /* Twitter */
        .fl_3 .float_icon {
            background: var(--twitter);
            box-shadow: 0 5px 20px rgba(29, 161, 242, 0.4);
        }
        
        .fl_3 .float_text {
            color: var(--twitter);
        }
        
        /* YouTube */
        .fl_4 .float_icon {
            background: var(--youtube);
            box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
        }
        
        .fl_4 .float_text {
            color: var(--youtube);
        }
        
        /* Instagram */
        .fl_5 .float_icon {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
        }
        
        .fl_5 .float_text {
            color: #dc2743;
        }
        
        /* Pulse animation for WhatsApp */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        .fl_1 .float_icon {
            animation: pulse 2s infinite;
        }
        
        /* Bounce animation for others */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-12px);
            }
            60% {
                transform: translateY(-7px);
            }
        }
        
        .fl_2 .float_icon {
            animation: bounce 5s infinite 1s;
        }
        
        .fl_3 .float_icon {
            animation: bounce 5s infinite 2s;
        }
        
        .fl_4 .float_icon {
            animation: bounce 5s infinite 3s;
        }
        
        /* Instagram specific animation */
        @keyframes instaPulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.7);
            }
            50% {
                transform: scale(1.08);
                box-shadow: 0 0 0 12px rgba(225, 48, 108, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(225, 48, 108, 0);
            }
        }
        
        .fl_5 .float_icon {
            animation: instaPulse 3s infinite;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .float_social {
                right: 10px;
            }
            
            .float_icon {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }
            
            .float_text {
                font-size: 14px;
                padding: 8px 14px;
            }
            
            .fl_1:hover .float_text,
            .fl_2:hover .float_text,
            .fl_3:hover .float_text,
            .fl_4:hover .float_text,
            .fl_5:hover .float_text {
                right: 70px;
            }
        }
        
        @media (max-width: 576px) {
            .float_social {
                bottom: 20px;
                top: auto;
                right: 50%;
                transform: translateX(50%);
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
                width: 90%;
                max-width: 320px;
                background: rgba(255, 255, 255, 0.95);
                padding: 12px;
                border-radius: 50px;
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
                backdrop-filter: blur(5px);
            }
            
            .float_social.hidden {
                transform: translateX(50%) scale(0.8);
            }
            
            .fl_1, .fl_2, .fl_3, .fl_4, .fl_5 {
                justify-content: center;
            }
            
            .float_text {
                top: -45px;
                right: 50%;
                transform: translateX(50%);
                bottom: auto;
            }
            
            .fl_1:hover .float_text,
            .fl_2:hover .float_text,
            .fl_3:hover .float_text,
            .fl_4:hover .float_text,
            .fl_5:hover .float_text {
                top: -50px;
                right: 50%;
                transform: translateX(50%);
            }
        }
        
       
        
        .show-social-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .show-social-btn.visible {
            opacity: 1;
            visibility: visible;
        }
        
        @media (max-width: 576px) {
            .show-social-btn {
                bottom: 80px;
                right: 20px;
            }
        }
        /* socIAL media links ends===================================================================================== */
        
        /* NEWS DETAIL SECTION STARTS=================================================================================== */
         .n_det_container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            overflow: hidden;
        }
        
        .n_det_header {
            background: var(--primary);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .n_det_title {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .n_det_meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .n_det_meta_item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
        }
        
        .n_det_body {
            padding: 40px;
        }
        
        .n_det_image {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .n_det_content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }
        
        .n_det_quote {
            background: #f8f9fa;
            border-left: 4px solid var(--secondary);
            padding: 25px;
            margin: 30px 0;
            font-style: italic;
            font-size: 1.2rem;
            border-radius: 0 8px 8px 0;
        }
        
        .n_det_actions {
            display: flex;
            gap: 15px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .n_det_btn {
            padding: 12px 25px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .n_det_btn_primary {
            background: var(--primary);
            color: white;
        }
        
        .n_det_btn_secondary {
            background: var(--secondary);
            color: white;
        }
        
        .n_det_btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .n_det_related {
            background: #f8f9fa;
            padding: 40px;
            border-top: 1px solid #eee;
        }
        
        .n_det_related_title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--primary);
            text-align: center;
        }
        
        .n_det_related_grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .n_det_related_item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .n_det_related_item:hover {
            transform: translateY(-5px);
        }
        
        .n_det_related_img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .n_det_related_content {
            padding: 20px;
        }
        
        .n_det_related_item_title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .n_det_related_item_date {
            color: #777;
            font-size: 0.9rem;
        }
       
        /* Responsive Design */
        @media (max-width: 768px) {
            .n_det_body {
                padding: 25px;
            }
            
            .n_det_title {
                font-size: 2rem;
            }
            
            .n_det_actions {
                flex-direction: column;
            }
            
            .n_det_btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .n_det_header {
                padding: 20px;
            }
            
            .n_det_title {
                font-size: 1.8rem;
            }
            
            .n_det_meta {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .n_det_related {
                padding: 25px;
            }
        }
        .nd2{
        margin:50px;
    }
    .footer-gallery .footer-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

       .val_2 {
      margin-top: 490px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      padding: 40px;
      max-width: 600px;
    }
     .pm_1 {
            padding: 13rem 0;
            position: relative;
            overflow: hidden;
        }

        /* NEWS DETAIL SECTION STARTS=================================================================================== */
