@import url('https://fonts.googleapis.com/css2?family=Gravitas+One&family=Oswald:wght@200..700&family=Outfit:wght@100..900&display=swap');

:root {
    --bg-main: #f8fafc;
    --text-deep: #1e293b;
    --accent-teal: #1abc9c;
    --nav-navy: #2c3e50;
    --glass-white: rgba(255, 255, 255, 0.9);

    --base-color: #0f172a;
    --base-dark: #0a0a0a;
    --secondary-color: #1e293b;
    --accent-color: #38bdf8;
}

html {
    scroll-behavior: smooth;
}

.body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-main) !important;
    color: var(--text-deep);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*header start.... */
.header {
    width: 100%;
    background: #0f172a;
    padding: 50px 0;
    border-bottom: 1px solid rgba(26, 188, 156, 0.2);
    position: relative;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 50px;
}

.logo {
    position: relative;
}

.logo-accent-blur {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #1abc9c;
    filter: blur(50px);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.responsive-logo {
    height: 110px;
    width: auto;
    position: relative;
    z-index: 2;
}

.company-name {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 40px;
}

.institute-tag a {
    font-family: 'Oswald', sans-serif;
    color: #1abc9c;
    font-size: 0.80rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.company-name h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.9px;
}

.company-name h1 span {
    display: block;
    color: #94a3b8;
    font-weight: 400;
    font-size: 1.8rem;
    margin-top: 5px;
}

/* --- Animation Keyframes --- */
@keyframes radar-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
}

@keyframes text-slide-in {
    from {
        opacity: 0;
        transform: translateX(-20px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}


/* --- Applied Styles --- */

.header {
    width: 100%;
    background: #0f172a;
    padding: 50px 0;
    border-bottom: 1px solid rgba(26, 188, 156, 0.2);
    position: relative;
    overflow: hidden;
}

.logo-accent-blur {
    position: absolute;
    width: 130px;
    height: 130px;
    background: #1abc9c;
    filter: blur(50px);
    top: 50%;
    left: 50%;
    z-index: 1;
    /* Active Radar Animation */
    animation: radar-pulse 4s infinite ease-in-out;
}


.company-name {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 40px;
    /* Sequential Fade-in */
    animation: text-slide-in 0.8s ease-out forwards;
}

.company-name h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
    animation: text-slide-in 0.8s ease-out 0.4s backwards;
}

.responsive-logo {
    height: 110px;
    width: auto;
    position: relative;
    z-index: 2;
    transition: filter 0.3s ease;
}

.logo:hover .responsive-logo {
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(26, 188, 156, 0.4));
}

/* --- Mobile Optimization (768px and below) --- */
@media (max-width: 768px) {
    .header {
        padding: 30px 0;
    }

    .header-container {
        gap: 20px;
    }

    .company-name {
        padding-left: 0.6rem;
    }

    /* Adjust Logo for Mobile */
    .responsive-logo {
        height: 90px;
        margin-bottom: 5px;
    }

    /* Center the radar glow behind the logo */
    .logo-accent-blur {
        width: 140px;
        height: 140px;
        top: 50%;
        left: 50%;
    }

    .institute-tag {
        font-size: 0.75rem;
        letter-spacing: 4px;
        margin-bottom: 8px;
    }

    .institute-tag a {
        font-size: 0.70rem;
        letter-spacing: 2px;
    }

    .company-name h1 {
        font-size: 1rem !important;
        line-height: 1 !important;
        /* max-width: 320px; */
        /* Prevents text from stretching too wide */
    }

    .company-name h1 span {
        font-size: 1.1rem !important;
        margin-top: 4px;
        display: block;
        
    }
}

/* Extra small devices (iPhone SE / small Androids) */
@media (max-width: 395px) {
    .header {
        padding: 21px 0;
    }

    .company-name h1 {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
    }

    .responsive-logo {
        height: 75px;
        margin-bottom: 0px;
    }

    /* Center the radar glow behind the logo */
    .logo-accent-blur {
        width: 140px;
        height: 140px;
        top: 50%;
        left: 50%;
    }

    /* Typography Scaling */
    .institute-tag {
        font-size: 0.65rem;
        letter-spacing: 2px;
        margin-bottom: 5px;
    }

    .institute-tag a {
        font-size: 0.60rem !important;
        letter-spacing: 1.1px !important;
    }

    .company-name h1 span {
        font-size: 1rem !important;
        margin-top: 2px;
        display: block;
    }

   
}




/* nav start ... */
nav {
    background-color: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    padding: 15px;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    display: block;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    font-family: Outfit;
    text-transform: uppercase;
}

nav a:hover {
    background-color: #1abc9c;
    border-radius: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}















/* welcome section............ */
.welcome-section {
    padding: 80px 0;
    margin: 0;
    /* This creates a sophisticated 'moving' color effect */
    background:
        radial-gradient(at 0% 0%, rgba(26, 188, 156, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 242, 255, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(52, 73, 94, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(26, 188, 156, 0.1) 0px, transparent 50%),
        #f8fafc;
    /* Base soft white */
    overflow: hidden;
}


.carousel {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    margin-top: 0.4rem;
    /* Gives the 3D depth effect */
    /* overflow: hidden; */
}

.card {
    position: absolute;
    width: 350px;
    height: 450px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* 3D Positioning Logic */
.center {
    transform: translateX(0) translateZ(100px);
    z-index: 5;
    opacity: 1;
}

.left {
    transform: translateX(-180px) translateZ(0) rotateY(20deg);
    z-index: 4;
    opacity: 0.8;
}

.right {
    transform: translateX(180px) translateZ(0) rotateY(-20deg);
    z-index: 4;
    opacity: 0.8;
}

.far-left {
    transform: translateX(-320px) translateZ(-100px) rotateY(35deg);
    z-index: 3;
    opacity: 0.4;
}

.far-right {
    transform: translateX(320px) translateZ(-100px) rotateY(-35deg);
    z-index: 3;
    opacity: 0.4;
}

/* welcome text........... */
.welcome-text {
    display: flex;
    justify-content: space-evenly;
    margin: 1rem;
}

.word-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    /* gap: 15px; */
    font-family: Georgia, 'Times New Roman', Times, serif sans-serif;
    /* font-size: 3rem; */
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: bold;
    justify-content: center;
    padding: 15px 20px;
    text-align: center;
    /* margin-top: 20%; */
}

.word {
    font-family: Oswald;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.word:nth-child(1) {
    animation-delay: 0.5s;
}

.word:nth-child(2) {
    animation-delay: 1.0s;
}

.word:nth-child(3) {
    animation-delay: 1.5s;
}

.word:nth-child(4) {
    animation-delay: 2.0s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* --- News CTA Button --- */
.welcome-text {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    /* Space between text and button */
}

.news-cta-btn {
    position: relative;
    display: inline-block;
    padding: 14px 34px;
    background: rgba(26, 188, 156, 0.05);
    /* Very light teal tint */
    color: #1abc9c;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 188, 156, 0.3);
    overflow: visible;
    /* Allows pseudo-elements to show */
    opacity: 0;
    animation: fadeIn 0.8s forwards 2.2s;
    /* Delays appearance */
}

/* Creating the technical 'Brackets' */
.news-cta-btn::before,
.news-cta-btn::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: #1abc9c;
    border-style: solid;
    transition: all 0.4s ease;
}

/* Top Left Bracket */
.news-cta-btn::before {
    top: -5px;
    left: -5px;
    border-width: 2px 0 0 2px;
}

/* Bottom Right Bracket */
.news-cta-btn::after {
    bottom: -5px;
    right: -5px;
    border-width: 0 2px 2px 0;
}

/* Hover Effects */
.news-cta-btn:hover {
    background: rgba(26, 188, 156, 0.15);
    color: #04512c;
    letter-spacing: 6px;
    /* Expands slightly on hover */
    box-shadow: 0 0 25px rgba(26, 188, 156, 0.2);
    border-color: #1abc9c;
}

/* Brackets enclose the button on hover */
.news-cta-btn:hover::before,
.news-cta-btn:hover::after {
    width: calc(100% + 8px);
    height: calc(100% + 8px);
}

/* Mobile Adjustments (< 480px) */
@media (max-width: 480px) {
    .news-cta-btn {
        padding: 12px 24px;
        font-size: 0.75rem;
        letter-spacing: 3px;
        background: rgba(15, 23, 42, 0.8);
        /* Darker for mobile contrast */
    }

    .news-cta-btn:hover {
        letter-spacing: 4px;
    }
}



@media (max-width: 480px) {
    .word-container {
        gap: 5px;
        /* Tighter gap for small screens */
    }

    .welcome-text {
        padding-top: 10px;
        /* Give it some breathing room at the top */
    }
}




/* objective start.......... */
.objective {

    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(assets/objective_background.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;


    margin: 2rem 2%;
    padding: 2rem 1rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-radius: 16px;
}

.objective-heading {
    font-size: clamp(1.8rem, 5vw, 2.7rem);
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    letter-spacing: 0.2em;
    /* color: #1abc9c; */
    font-weight: 400;
}

.objective-body {
    font-size: 1.3rem;
    font-family: sans-serif;
    margin: 20px 20px;
    padding: 20px 20px;
    color: white;
    border-radius: 15px;
    text-align: justify;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.01);
}

.objective-body p {
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: #e0e0e0;
}

/* objective end........... */




/* news section start */
.news-wrapper {
    background-color: var(--base-dark);
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;

    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 10%;

    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, #00f2ff, transparent);
}

/* The Bento Grid Layout */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(160px, auto);
    gap: 20px;
}

/* News Card Styling */
.news-card {
    background: #16161a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    /* Initial Animation State */
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.news-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
}

.news-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Making the layout non-uniform (Advanced) */
.news-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #16161a, #1e1e26);
}

.news-card:nth-child(5) {
    grid-column: span 2;
}

.news-card:nth-child(11) {
    grid-column: span 2;
}

.news-card:hover {
    border-color: #00f2ff;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
    transform: translateY(-5px);
}

.category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: block;
}

.headline {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.news-card:hover .headline {
    color: #00f2ff;
    transition: color 0.3s ease;
}

.news-card:nth-child(1) .headline {
    font-size: 2rem;
}

.time-stamp {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 20px;
}

/* Glow Effect Decor */
.news-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #00f2ff;
    filter: blur(50px);
    opacity: 0;
    transition: 0.4s;
}

.news-card:hover::before {
    opacity: 0.2;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        grid-column: span 1 !important;
    }

    .news-wrapper {
        /* padding: 0 20px; */
        padding: 20px;
    }
}




/* footer start.................... */
footer {
    background-color: #1e293b;
    /* Dark Slate */
    color: #cbd5e1;
    /* Soft Light Grey text */
    padding: 40px 20px;
    margin-top: 0;
    border-top: 3px solid;
    border-image: linear-gradient(to right, transparent, #1abc9c, transparent) 1;
    text-align: center;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: auto;

}



/* The Button Styling */
.back-to-top-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #1abc9c;
    /* Teal Border */
    color: #1abc9c;
    /* Teal Text */
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 4px;
    transition: all 0.4s ease;
}

/* Hover Effect */
.back-to-top-btn:hover {
    background: #1abc9c;
    /* Fill with Teal */
    color: #0f172a;
    /* Navy Text */
    box-shadow: 0 0 20px rgba(26, 188, 156, 0.4);
    transform: translateY(-3px);
}


/* --- Tablet & Mobile Queries --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    nav ul.active {
        display: flex;
    }

    .carousel {
        height: 350px;
    }

    .card {
        width: 200px;
        height: 300px;
    }

    .far-left,
    .far-right {
        display: none;
    }

    .left {
        transform: translateX(-100px) scale(0.8);
    }

    .right {
        transform: translateX(100px) scale(0.8);
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    nav {
        padding: 5px 0;
    }

    nav ul {
        display: flex;
        justify-content: center;
        gap: 5px;
        padding: 0 10px;
    }

    nav li {
        margin: 0;
        /* Clear previous margins */
    }

    nav a {
        padding: 12px 10px;
        font-size: 0.85rem;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }

    /* Hover effect (active state) */
    nav a:active,
    nav a:hover {
        background-color: #1abc9c;
        border-radius: 4px;
    }
}


@media (max-width: 480px) {

    .card {
        width: 160px;
        height: 240px;
    }

    .left {
        transform: translateX(-60px) scale(0.7);
    }

    .right {
        transform: translateX(60px) scale(0.7);
    }
}



/* --- UNIVERSAL MOBILE REFINEMENTS (768px and below) --- */
@media (max-width: 768px) {

    /* 1. WELCOME SECTION & CAROUSEL */
    .welcome-section {
        padding: 40px 0;
    }

    .carousel {
        height: 350px;
        /* Shorter for mobile */
        perspective: 800px;
        margin-top: 2rem;
    }

    .card {
        width: 220px;
        /* Narrower cards */
        height: 300px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    /* Adjust 3D positioning so cards don't fly off-screen */
    .left {
        transform: translateX(-100px) translateZ(-50px) rotateY(25deg);
        opacity: 0.6;
    }

    .right {
        transform: translateX(100px) translateZ(-50px) rotateY(-25deg);
        opacity: 0.6;
    }

    /* Hide far-flung cards to avoid horizontal scroll and clutter */
    .far-left,
    .far-right {
        display: none;
    }

    .word-container {
        font-size: 2.2rem;
        /* Balanced size */
        gap: 8px 15px;
        padding: 0 15px;
    }

    /* 3. LATEST NEWS (BENTO GRID) */
    .news-wrapper {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.4rem;
        letter-spacing: 0.2em;
    }

    .news-grid {
        /* Switch to 1 column for clean vertical flow */
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 15px;
    }

    .news-card {
        grid-column: span 1 !important;
        /* Force all cards to full width */
        padding: 25px;
        border-radius: 18px;
    }

    /* Special adjustment for the 'Main' news card */
    .news-card:nth-child(1) .headline {
        font-size: 1.5rem;
        /* Don't let it get too huge on mobile */
    }

    .headline {
        font-size: 1.15rem;
    }

    .time-stamp {
        font-size: 0.75rem;
        margin-top: 15px;
    }
}

/* --- EXTRA TIGHT DEVICES (480px and below) --- */
@media (max-width: 480px) {
    .card {
        width: 180px;
        height: 250px;
    }

    .carousel {
        height: 280px;
    }

    .word-container {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .objective {
        margin: 20px 12px;
        padding: 40px 15px;
        background-attachment: scroll;
        background-position: center;
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(9, 0, 0, 0.8)),
            url(assets/objective_background.jpg);
        border-radius: 24px;
        box-sizing: border-box;
        border: 1px solid rgba(26, 188, 156, 0.2);

    }

    .objective-heading {
        font-size: 1.3rem;
        letter-spacing: 0.3em;
        margin-bottom: 30px;
        color: #1abc9c;
    }

    .objective-body {
        margin: 0;
        padding: 0.2em;
        background: rgba(255, 255, 255, 0.057);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.139);
    }

    .objective-body p {
        font-size: 1.05rem;
        line-height: 1.9;
        color: #f2f6fa;
        text-align: justify;
        display: block;
        position: relative;
    }

    .objective-body::before {
        /* content: "“"; */
        font-family: serif;
        font-size: 4rem;
        color: rgba(26, 188, 156, 0.2);
        position: absolute;
        top: -20px;
        left: -10px;
    }
}

@media (max-width: 1000px) {
    .objective {
        margin: 25px 17px;
        padding: 45px 20px;
        background-attachment: scroll;
        background-position: center;
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(9, 0, 0, 0.8)),
            url(assets/objective_background.jpg);
        border-radius: 20px;
        box-sizing: border-box;
        border: 1px solid rgba(26, 188, 156, 0.2);
    }

    .objective-heading {
        font-size: 1.8rem;
        font-weight: 500;
        letter-spacing: 0.3em;
        margin-bottom: 32px;
        color: #1abc9c;
    }

    .objective-body {
        margin: 0;
        padding: 0.2em;
        background: rgba(255, 255, 255, 0.057);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.139);
    }

    .objective-body p {
        font-size: 1.10rem;
        line-height: 2;
        color: #f2f6fa;
        text-align: justify;
        display: block;
        position: relative;
    }

    .objective-body::before {
        /* content: "“"; */
        font-family: serif;
        font-size: 5rem;
        color: rgba(26, 188, 156, 0.2);
        position: absolute;
        top: -20px;
        left: -10px;
    }
}

@media (max-width: 480px) {

    .objective {
        margin: 12px 6px;
        padding: 20px 10px;
        border-radius: 12px;
        background-attachment: scroll;
        box-sizing: border-box;
        border: none;
    }

    .objective-heading {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
        margin-bottom: 20px;
        color: #1abc9c;
        text-align: center;
        width: 100%;
    }

    .objective-body {
        margin: 0;
        padding: 0.2em;
        background: rgba(255, 255, 255, 0.057);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.139);
    }

    .objective-body p {
        font-size: 0.87rem;
        line-height: 1.5;
        color: #e2e8f0;
        text-align: justify;
        letter-spacing: 0.3px;
        word-spacing: -0.5px;
        overflow-wrap: break-word;
    }
}







@media screen and (max-width: 768px) {
    footer {
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    footer p {
        font-size: 0.9rem;
        line-height: 1.6;
        max-width: 300px;
        margin: 0 auto;
        color: #cbd5e1;
    }

    footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background-color: #1a202c;
    }
}