  /* ===== RESET & BASE STYLES ===== */
        :root {
            --primary: #f69522;
            --secondary: #1472b7;
            --tertiary: #0a9949;
            --dark: #111827;
            --darker: #0a0e1a;
            --light: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
            
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-2xl: 24px;
            
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--gray-800);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--light);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 60px 0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        p {
            margin-bottom: 1rem;
            font-size: medium;
        }

        a {
            text-decoration: none;
            color: inherit;
            font-size: medium;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .highlight {
            color: var(--primary);
        }

        .text-center {
            text-align: center;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 32px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            border: 2px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--light);
        }

        .btn-primary:hover {
            background-color: #e0851e;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--light);
        }

        .btn-secondary:hover {
            background-color: #115c94;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: transparent;
            box-shadow: none;
            z-index: 1000;
            transition: var(--transition);
            height: 120px;
            display: flex;
            align-items: center;
        }

        .navbar.scrolled {
            box-shadow: var(--shadow-md);
            height: 120px;
            background-color: white;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            height: 110px;
            width: auto;
        }
        .navbar .logo-img{
            filter: brightness(100);
        }
        .navbar.scrolled .logo-img{
            filter: none;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.2;
        }

        .logo-sub {
            font-size: 0.75rem;
            color: var(--gray-600);
            line-height: 1.2;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .navbar .nav-link{
            color: white;
        }
        .nav-link {
            font-weight: 600;
            color: var(--gray-700);
            position: relative;
            padding: 8px 0;
            transition: var(--transition);
            font-size: 1rem;
        }
        .navbar.scrolled .nav-link{
            color: black;
        }
        .nav-link:hover{
            color: white;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--gray-800);
            transition: var(--transition);
        }
        .navbar .hamburger span{
            background-color: white;
        }
        .navbar.scrolled .hamburger span{
            background-color: var(--gray-800);
        }

        /* ===== MOBILE MENU ===== */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background-color: var(--light);
            z-index: 1000;
            transition: right 0.4s ease;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            padding: 100px 20px 40px;
            height: 100%;
        }

        .mobile-nav-link {
            padding: 16px 0;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--gray-800);
            border-bottom: 1px solid var(--gray-200);
            transition: var(--transition);
        }

        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            color: var(--primary);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 160px 0 60px;
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-color: var(--gray-50);
            z-index: 0;
        }

        .hero .container {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            flex: 1;
        }

        .hero-badge {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            padding: 8px 20px;
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 3.125rem;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            margin-bottom: 40px;
            font-weight: 400;
            line-height: 1.5;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .hero-tagline {
            margin-top: 40px;
            padding: 20px;
            background-color: var(--gray-50);
            border-radius: var(--radius-lg);
            border-left: 4px solid var(--primary);
        }

        .hero-tagline h3 {
            color: var(--dark);
            font-size: 1.25rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .hero-image {
            flex: 1;
            position: relative;
        }

        .image-container {
            position: relative;
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            height: 500px;
        }

        .main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .floating-card {
            position: absolute;
            background-color: var(--light);
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 2;
            animation: float 3s ease-in-out infinite;
            border: 1px solid var(--gray-200);
        }

        .floating-card i {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .floating-card h4 {
            font-size: 0.875rem;
            margin: 0;
            color: var(--gray-800);
            font-weight: 600;
        }

        .card1 {
            top: 20px;
            left: 20px;
            animation-delay: 0s;
        }

        .card2 {
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            animation-delay: 0.5s;
        }

        .card3 {
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* ===== SECTION STYLES ===== */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 50px;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: medium;
            color: var(--gray-600);
            margin-bottom: 30px;
            font-weight: 400;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .dark-section {
            background-color: var(--dark);
            color: var(--light);
        }

        .dark-section .section-title {
            color: var(--light);
        }

        .dark-section .section-subtitle {
            color: var(--gray-300);
        }

        /* ===== ABOUT SECTION ===== */
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-image {
            flex: 1;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            object-fit: contain;
        }

        .about-text {
            flex: 1;
        }

        .about-title {
            font-size: 35px;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .about-subtitle {
            font-size: 1.125rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .about-highlight {
            background-color: var(--gray-50);
            padding: 25px;
            border-radius: var(--radius-lg);
            border-left: 4px solid var(--primary);
            margin-top: 30px;
        }

        .about-highlight h4 {
            color: var(--dark);
            margin-bottom: 10px;
        }
        #home-about-btn{
            height: fit-content;
            width: fit-content;
            padding: 10px 20px ;
            background-color: var(--primary);
            color: white;
            border-radius: var(--radius-md);
        }

        /* ===== VISION MISSION SECTION ===== */
        .vision-mission-section {
            padding: 0;
        }

        .vision-mission-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }

        .vision-box {
            background-color: var(--tertiary);
            color: var(--light);
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .mission-box {
            background-color: var(--secondary);
            color: var(--light);
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .vision-icon, .mission-icon {
            font-size: 3rem;
            margin-bottom: 30px;
            color: var(--light);
            opacity: 0.9;
        }

        .vision-box h2, .mission-box h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--light);
        }

        .vision-box p, .mission-box p {
            font-size: medium;
            line-height: 1.8;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.95);
        }

        .mission-list {
            margin-top: 20px;
        }

        .mission-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.95);
        }

        .mission-list li i {
            color: var(--light);
            margin-top: 5px;
            flex-shrink: 0;
        }

        .transformation-statement {
            text-align: center;
            padding: 40px;
            background-color: var(--primary);
            color: var(--light);
        }

        .transformation-statement h3 {
            font-size: 1.75rem;
            margin-bottom: 10px;
        }

        /* ===== FOCUS AREAS SECTION ===== */
        .focus-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .focus-card {
            background-color: var(--light);
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: 1px 1px 10px gray;
            text-decoration: none;
            border: 2px solid var(--gray-200);
            transition: var(--transition);
            cursor: pointer;
            text-align: center;
            height: 100%;
        }
        .focus-card button{
            height: fit-content;
            width: fit-content;
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: var(--radius-md);
            border: none;
        }

        .focus-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .focus-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(246, 149, 34, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 1.75rem;
        }

        .focus-card h3 {
            font-size: 1.125rem;
            color: var(--dark);
            margin-bottom: 15px;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .focus-card p{
            height: 90px;
        }

        /* ===== ROADMAP SECTION ===== */
       /* Roadmap Section */
.roadmap-section {
    background-color: var(--dark); /* Dark background */
    color: #fff;
    padding: 60px 20px;
}
.roadmap-section .container{
    padding: 0 !important;
}
.roadmap-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.roadmap-section .section-title {
    font-size: 50px;
    color: #fff;
    margin-bottom: 10px;
    margin-bottom: 20px;
}

.roadmap-section .section-subtitle {
    font-size: medium;
    color: #fff;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #f69522;
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-marker {
    background-color: #f69522;
    color: #000;
    text-align: center;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: medium;
    position: relative;
    margin-bottom: 20px;
}

.timeline-marker .years {
    display: inline;
    font-size: medium;
    color: #000;
    padding-left: 30px;
}

.timeline-content {
    background-color: #1f2937;
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 5px solid #1472b7;
    position: relative;
}

.timeline-content h3 {
    color: #f69522;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.timeline-content h4 {
    color: #0a9749;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.timeline-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.timeline-content ul li {
    margin-bottom: 8px;
    position: relative;
    color: #ccc;
}

.timeline-content ul li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: #f69522;
}

.impact {
    background-color: rgba(10, 151, 115, 0.2);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #0a9749;
    font-weight: 500;
}

/* SDG Section */
.sdg-alignment {
    background-color: #1f2937;
    border-radius: 15px;
    padding: 50px 30px;
    margin-top: 60px;
    text-align: center;
    border: 1px solid #333;
}

.sdg-alignment h3 {
    color: #f69522;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.sdg-alignment h3 i {
    color: #1472b7;
    margin-right: 10px;
}

.sdg-alignment p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .timeline::after {
        display:none;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        margin-bottom: 40px;
    }
    .timeline-item:nth-child(even){
        left: 0;
    }
}

@media (max-width: 768px) {
    .roadmap-section .section-header {
    margin-bottom: 30px;
}
    .timeline-item {
        padding: 0;
    }

    .timeline-marker {
        padding: 10px 15px;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 20px 25px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}


        /* ===== DIGITAL TRANSFORMATION ===== */
        .digital-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .digital-text {
            flex: 1;
        }

        .digital-text h3 {
            font-size: 35px;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .digital-text h3 i {
            color: var(--primary);
        }

        .ecommerce-features {
            margin: 30px 0;
            font-size: medium;
        }

        .ecommerce-features li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--gray-700);
            font-weight: 500;
        }

        .ecommerce-features li i {
            color: var(--primary);
            margin-top: 3px;
            flex-shrink: 0;
        }

        .highlight-box {
            background-color: rgba(246, 149, 34, 0.1);
            padding: 25px;
            border-radius: var(--radius-lg);
            border-left: 4px solid var(--primary);
            margin-top: 30px;
        }

        .highlight-box p {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0;
        }

        .digital-image {
            flex: 1;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        /* ===== CHAIRMAN SECTION ===== */
        .chairman-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .chairman-image {
            flex: 1;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .chairman-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .chairman-message {
            flex: 1;
            background-color: var(--light);
            border-radius: var(--radius-xl);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .quote-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .message-text {
            font-size: medium;
            line-height: 1.8;
            margin-bottom: 25px;
            color: var(--gray-700);
            font-style: italic;
            border-bottom: 1px solid var(--gray-200);
            padding-bottom: 25px;
        }

        .message-text:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }

        .signature {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--gray-200);
        }

        .name {
            font-size: 1.25rem;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .designation {
            color: var(--gray-600);
            font-style: italic;
            margin-bottom: 20px;
        }

        /* ===== COMMITMENT SECTION ===== */
        .commitment-statement {
            text-align: center;
            margin-bottom: 60px;
            padding: 40px;
            background-color: var(--gray-800);
            border-radius: var(--radius-xl);
            border: 1px solid var(--gray-700);
        }

        .commitment-statement h3 {
            color: var(--light);
            font-size: 1.75rem;
        }

        .commitment-statement i {
            color: var(--primary);
            margin-right: 10px;
        }

        .commitment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .commitment-item {
            background-color: var(--gray-800);
            border-radius: var(--radius-lg);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--gray-700);
            height: 100%;
        }

        .commitment-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .commitment-item i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .commitment-item h4 {
            color: var(--light);
            margin-bottom: 15px;
            font-size: 1.125rem;
        }

        .final-statement {
            text-align: center;
            padding: 50px;
            background-color: var(--gray-800);
            border-radius: var(--radius-xl);
            border: 1px solid var(--gray-700);
        }

        .final-statement h2 {
            color: var(--light);
            font-size: 1.75rem;
            margin-bottom: 20px;
        }

        .slogan {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0;
        }

        /* ===== CTA SECTION ===== */
        .cta {
            background-color: var(--primary);
            color: var(--light);
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 50px;
            color: var(--light);
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            font-size: medium;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .cta .btn-primary {
            background-color: var(--light);
            color: var(--primary);
        }

        .cta .btn-primary:hover {
            background-color: var(--gray-100);
        }

        .cta .btn-outline {
            background-color: transparent;
            color: var(--light);
            border-color: var(--light);
        }

        .cta .btn-outline:hover {
            background-color: var(--light);
            color: var(--primary);
        }

        /* ===== FOOTER ===== */
        .footer {
            background-color: var(--darker);
            color: var(--light);
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-logo .logo-img {
            height: 250px;
            width: auto;
            filter: brightness(100);
            margin-bottom: 20px;
        }

        .footer-description {
            color: var(--gray-400);
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--gray-800);
            border-radius: 50%;
            color: var(--gray-300);
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary);
            color: var(--light);
            transform: translateY(-3px);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-links h3,
        .footer-contact h3 {
            font-size: 1.25rem;
            color: var(--light);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after,
        .footer-contact h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
        }

        .footer-links a {
            color: var(--gray-400);
            transition: var(--transition);
            padding: 5px 0;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            color: var(--gray-400);
            align-items: flex-start;
        }

        .contact-item i {
            color: var(--primary);
            margin-top: 5px;
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-800);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: var(--gray-500);
            margin-bottom: 0;
        }

        .footer-legal {
            display: flex;
            gap: 20px;
        }

        .footer-legal a {
            color: var(--gray-500);
            font-size: 0.875rem;
            transition: var(--transition);
        }

        .footer-legal a:hover {
            color: var(--primary);
        }

        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .focus-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .commitment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 2fr 1fr 1fr;
                gap: 40px;
            }
            
            .vision-mission-container {
                grid-template-columns: 1fr;
            }
            
            
        }

        @media (max-width: 768px) {
            .hero {
                padding: 140px 0 80px;
            }
            
            .hero .container {
                flex-direction: column;
                gap: 40px;
            }
            
            .hero::before {
                width: 100%;
                height: 50%;
                top: auto;
                bottom: 0;
            }
            
            .hero-title {
                font-size: 2.1875rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .about-content,
            .digital-content,
            .chairman-content {
                flex-direction: column;
                gap: 40px;
            }
            
            .vision-mission-container {
                grid-template-columns: 1fr;
            }
            
            .vision-box, .mission-box {
                padding:  30px;
            }
            
            .focus-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta-buttons {
                flex-direction: row;
                align-items: center;
            }
            
            .footer-content {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            .footer-logo{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;
            }
            .footer-links ,.footer-contact{
                display: flex;
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }
            
            .floating-card {
                display: none;
            }
            
        }

        @media (max-width: 576px) {
                .hero-title {
        font-size: 35px;
    }
            
            .hero-subtitle {
                font-size: small;
            }
            
            .hero-buttons {
                width: 100%;
            }
            
            .btn {
                width: 50%;
                padding: 5px 10px;
                font-size: small;
            }
            .image-container {
    height: 400px;
}
            .section-title {
                font-size: 35px;
            }
            
            .focus-grid,
            .commitment-grid {
                grid-template-columns: 1fr;
            }
            
            .vision-box h2, .mission-box h2 {
                font-size: 35px;
            }
            
            .vision-icon, .mission-icon {
                font-size: 2.5rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .hero-badge {
    font-size: x-small;
}
.section-subtitle{
    font-size: small;
}
p,a{
    font-size: small;
}
.about-title {
    font-size: 25px;
    text-align: center;
}
.about-subtitle {
    font-size: medium;
    text-align: center;
}
.about-text{
    text-align: center;
}
.about-highlight {
    padding: 10px;
}
.vision-box p, .mission-box p ,.mission-list li{
            font-size: small;
}
.transformation-statement h3 {
    font-size: 25px;
    text-align: left;
}
.digital-text h3 {
    font-size: 25px;
    text-align: center;
}
.digital-text{
    text-align: center;
    font-size: small;
}
.ecommerce-features{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    font-size: small;
    flex-direction: column;
    width: 85%;
    margin: 0 auto;
}
.highlight-box {
    padding: 15px;
    margin-top: 20px;
}
.message-text {
            font-size: small;
}
.commitment-statement h3 {
    font-size: 22px;
}
.commitment-statement {
    padding: 20px;
}
.final-statement h2 {
    font-size: 22px;
}
.slogan {
    font-size: 20px;
}
.final-statement {
    padding: 20px;
}
.cta-text{
    font-size: small;
}
.cta-title{
    font-size: 35px;
}
.chairman-image img {
            height: 300px;
        }
}
/* Transformation  */
    /* Transformation Agenda Section Styles */
    .transformation-section {
        background-color: #ffffff;
        padding: 80px 0;
        position: relative;
    }
    
    .transformation-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .transformation-title {
        font-size: 50px;
        color: #111827;
        margin-bottom: 15px;
        position: relative;
    }
    
    .transformation-subtitle {
        font-size: 1.25rem;
        color: #6b7280;
        margin-bottom: 25px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .transformation-divider {
        width: 80px;
        height: 4px;
        background-color: #f69522;
        margin: 0 auto;
        border-radius: 2px;
    }
    
    .transformation-intro {
        text-align: center;
        margin-bottom: 60px;
        padding: 20px;
        background-color: #f1f1f1;
        border-radius: 12px;
        border-left: 4px solid #f69522;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .transformation-intro h3 {
        color: #111827;
        font-size: 22px;
        line-height: 1.6;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .transformation-intro i {
        color: #f69522;
    }
    
    /* Transformation Process Layout */
    .transformation-process {
        display: grid;
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 30px;
        margin-bottom: 60px;
        align-items: stretch;
    }
    
    /* Traditional and Knowledge Boxes */
    .transformation-traditional,
    .transformation-knowledge {
        background-color: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        border: 1px solid gainsboro;
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .transformation-traditional:hover,
    .transformation-knowledge:hover {
        transform: translateY(-5px);
    }
    
    .transformation-traditional {
        border-top: 4px solid #1472b7;
    }
    
    .transformation-knowledge {
        border-top: 4px solid #0a9949;
    }
    
    .transformation-box-header {
        padding: 25px;
        text-align: center;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .transformation-traditional .transformation-box-header {
        background-color: #f0f7ff;
    }
    
    .transformation-knowledge .transformation-box-header {
        background-color: #f0f9f4;
    }
    
    .transformation-box-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-size: 1.8rem;
    }
    
    .transformation-traditional .transformation-box-icon {
        background-color: #dbeafe;
        color: #1472b7;
    }
    
    .transformation-knowledge .transformation-box-icon {
        background-color: #dcfce7;
        color: #0a9949;
    }
    
    .transformation-box-header h3 {
        color: #111827;
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .transformation-box-subtitle {
        color: #6b7280;
        font-size: 0.9rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .transformation-box-content {
        padding: 25px;
    }
    
    .transformation-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .transformation-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid #f3f4f6;
        color: #374151;
        font-weight: 500;
    }
    
    .transformation-features li:last-child {
        border-bottom: none;
    }
    
    .transformation-traditional .transformation-features li i {
        color: #1472b7;
        font-size: 0.9rem;
    }
    
    .transformation-knowledge .transformation-features li i {
        color: #0a9949;
        font-size: 0.9rem;
    }
    
    /* Center Column */
    .transformation-center {
        position: relative;
    }
    
    .transformation-path {
        position: relative;
        height: 70px;
        margin-bottom: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .transformation-path-text {
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #f69522;
        color: white;
        padding: 6px 20px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        white-space: nowrap;
    }
    
    .transformation-initiatives {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .transformation-initiative {
        background-color: #dd7b04;
        border-radius: 10px;
        padding: 20px;
        cursor: pointer;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    .transformation-initiative:hover {
        transform: translateY(-5px);
        background-color: #f69522;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .transformation-initiative-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        z-index: 1;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        color: #fff;
        font-size: 1.5rem;
    }
    
    .transformation-initiative h4 {
        color: white;
        z-index: 1;
        font-size: medium;
        text-align: center;
        margin: 0;
        line-height: 1.3;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Goal Section */
    .transformation-goal {
        background-color: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border: 1px solid #e5e7eb;
        max-width: 900px;
        margin: 0 auto;
        border-top: 4px solid #f69522;
    }
    
    .transformation-goal-content {
        text-align: center;
    }
    
    .transformation-goal-content h3 {
        color: #111827;
        font-size: 1.5rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .transformation-goal-content i {
        color: #f69522;
    }
    
    .transformation-goal-content p {
        color: #374151;
        font-size: medium;
        line-height: 1.7;
        margin: 0;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .transformation-process {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .transformation-center {
            order: -1;
        }
        
        .transformation-traditional,
        .transformation-knowledge {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .transformation-initiatives {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .transformation-section {
            padding: 60px 0;
        }
        
        .transformation-title {
            font-size: 2rem;
        }
        
        .transformation-subtitle {
            font-size: 1.1rem;
        }
        
        .transformation-intro h3 {
            font-size: 1.2rem;
            flex-direction: column;
            gap: 10px;
        }
        
        .transformation-initiatives {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .transformation-initiative h4 {
            height: auto;
            min-height: 40px;
        }
        
        .transformation-goal {
            padding: 30px;
        }
        
        .transformation-goal-content h3 {
            font-size: 1.3rem;
            flex-direction: column;
            gap: 10px;
        }
    }
    
    @media (max-width: 576px) {
        .transformation-title {
            font-size: 35px;
        }
        
        .transformation-intro {
            padding: 20px;
        }
        
        .transformation-initiatives {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
        .transformation-initiative {
            padding: 15px;
        }
        
        .transformation-initiative-icon {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }
        
        .transformation-box-header {
            padding: 0 20px;
        }
        
            .transformation-box-content {
        padding: 0 20px;
    }
        .transformation-intro h3 {
        font-size: small;
        flex-direction: column;
        gap: 10px;
    }
    .transformation-intro i {
    font-size: large;
    }
    .transformation-path {
    height: fit-content;
    }
    .transformation-initiative h4 {
        font-size: small;
    }
    .transformation-traditional,
        .transformation-knowledge {
            max-width: 100%;
            width: 100%;
            padding: 20px 0;
        }
    .transformation-features li {
    font-size: small;
    padding: 8px 0;}
    .transformation-goal-content p{
        font-size: small;
    }
        .transformation-goal {
        padding: 15px;
    }
    }


/* Ultimate Objective */
    .objective-section {
        padding: 60px 0;
        position: relative;
    }
    
    .objective-header {
        text-align: center;
        /* margin-bottom: 50px; */
    }
    
    .objective-title {
        font-size: 50px;
        color: #111827;
        margin-bottom: 15px;
        position: relative;
    }
    
    .objective-divider {
        width: 80px;
        height: 4px;
        background-color: #f69522;
        margin: 0 auto;
        border-radius: 2px;
    }
    
    /* Main Objective Box */
    .objective-main {
        border-radius: 20px;
        padding: 40px;
        margin-bottom: 60px;
        display: flex;
        align-items: center;
        gap: 40px;
    }
    
    .objective-year {
        flex-shrink: 0;
        text-align: center;
    }
    
    .objective-year-number {
        display: block;
        font-size: 4rem;
        font-weight: 800;
        color: #1472b7;
        line-height: 1;
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }
    
    .objective-year-text {
        display: block;
        font-size: medium;
        color: #6b7280;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .objective-statement {
        flex: 1;
    }
    
    .objective-statement h3 {
        color: #111827;
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .objective-highlight {
        color: #f69522;
        font-weight: 800;
        text-decoration: underline;
        text-underline-offset: 5px;
    }
    
    .objective-statement p {
        color: #374151;
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0;
    }
    
    /* Five Pillars */
    .objective-pillars {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-bottom: 60px;
    }
    
    .objective-pillar {
        background-color: white;
        border-radius: 15px;
        padding: 30px;
        position: relative;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        border: 1px solid #e5e7eb;
        transition: all 0.3s ease;
        height: 400px;
        display: flex;
        width: 320px;
        flex-direction: column;
    }
    
    .objective-pillar:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .objective-pillar:nth-child(1) {
        border-top: 4px solid #1472b7;
    }
    
    .objective-pillar:nth-child(2) {
        border-top: 4px solid #f69522;
    }
    
    .objective-pillar:nth-child(3) {
        border-top: 4px solid #0a9949;
    }
    
    .objective-pillar:nth-child(4) {
        border-top: 4px solid #8b5cf6;
    }
    
    .objective-pillar:nth-child(5) {
        border-top: 4px solid #ec4899;
    }
    
    .objective-pillar-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }
    
    .objective-pillar:nth-child(1) .objective-pillar-icon {
        background-color: #dbeafe;
        color: #1472b7;
    }
    
    .objective-pillar:nth-child(2) .objective-pillar-icon {
        background-color: #fef3c7;
        color: #f69522;
    }
    
    .objective-pillar:nth-child(3) .objective-pillar-icon {
        background-color: #dcfce7;
        color: #0a9949;
    }
    
    .objective-pillar:nth-child(4) .objective-pillar-icon {
        background-color: #f3e8ff;
        color: #8b5cf6;
    }
    
    .objective-pillar:nth-child(5) .objective-pillar-icon {
        background-color: #fce7f3;
        color: #ec4899;
    }
    
    .objective-pillar h4 {
        color: #111827;
        font-size: 1.2rem;
        margin-bottom: 15px;
        min-height: 60px;
        line-height: 1.3;
    }
    
    .objective-pillar p {
        color: #4b5563;
        font-size: 0.95rem;
        line-height: 1.6;
        flex: 1;
        margin-bottom: 20px;
    }
    
    .objective-pillar-number {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        font-weight: 800;
        color: #e5e7eb;
        z-index: 1;
        user-select: none;
    }
    .objective-pillar {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 400px;
    display: flex;
    width: 320px;
    flex-direction: column;
    color: #111827; /* Default text color */
}

.objective-pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    color: white; /* Text color on hover */
}

/* Background color on hover for each pillar */
.objective-pillar:nth-child(1):hover {
    background-color: #1472b7; 
    border: transparent;
}

.objective-pillar:nth-child(2):hover {
    border: transparent;
    background-color: #f69522; /* Orange */
}

.objective-pillar:nth-child(3):hover {
    border: transparent;
    background-color: #0a9949; /* Green */
}

.objective-pillar:nth-child(4):hover {
    border: transparent;
    background-color: #8b5cf6; /* Purple */
}

.objective-pillar:nth-child(5):hover {
    border: transparent;
    background-color: #ec4899; /* Pink */
}

/* Keep icon visible and contrast it */
.objective-pillar-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

/* Optional: Invert icon colors on hover */
.objective-pillar:hover .objective-pillar-icon {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

.objective-pillar h4,
.objective-pillar p {
    transition: all 0.3s ease;
}

.objective-pillar:hover h4,
.objective-pillar:hover p {
    color: white;
}

/* Pillar Numbers remain subtle */
.objective-pillar-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: 800;
    color: #e5e7eb;
    z-index: 1;
    user-select: none;
}

    /* Impact Statement */
    .objective-impact {
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        border-radius: 20px;
        padding: 40px;
        display: flex;
        align-items: center;
        gap: 30px;
        border-right: 6px solid #f69522;
        box-shadow: 0 10px 30px rgba(246, 149, 34, 0.15);
    }
    
    .objective-impact-icon {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        background-color: rgba(246, 149, 34, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #f69522;
        font-size: 2rem;
    }
    
    .objective-impact-content {
        flex: 1;
    }
    
    .objective-impact-content h3 {
        color: #111827;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .objective-impact-content p {
        color: #374151;
        font-size: 1.05rem;
        line-height: 1.7;
        margin: 0;
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .objective-pillars {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 992px) {
        .objective-pillars {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .objective-main {
            flex-direction: column;
            text-align: center;
            gap: 30px;
        }
        
        .objective-year-number {
            font-size: 3.5rem;
        }
    }
    
    @media (max-width: 768px) {
        .objective-section {
            padding: 60px 0;
        }
        .objective-header{
            margin-bottom: 60px;
        }
        .objective-title {
            font-size: 35px;
        }
        .objective-main {
        display: none;}
        
        .objective-statement h3 {
            font-size: 1.5rem;
        }
        
        .objective-pillar h4 {
            min-height: auto;
            font-size: 1.1rem;
        }
        
        .objective-impact {
            flex-direction: column;
            text-align: center;
            gap: 20px;
            padding: 30px;
        }
    }
    
    @media (max-width: 576px) {
        .objective-pillars {
            grid-template-columns: 1fr;
        }
        
        .objective-title {
            font-size: 1.75rem;
        }
        
        .objective-main {
            padding: 30px 20px;
        }
        
        .objective-year-number {
            font-size: 3rem;
        }
        
        .objective-pillar {
            padding: 25px;
        }
        
        .objective-pillar-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }
    }

/* Our Promise */
 /* Our Promise Section Styles */
    .promise-section {
        background-color: #0f172a;
        padding: 80px 0;
        position: relative;
        color: white;
    }
    
    .promise-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .promise-title {
        font-size: 50px;
        color: white;
        margin-bottom: 15px;
        position: relative;
    }
    .promise-divider {
        width: 80px;
        height: 4px;
        background-color: #f69522;
        margin: 0 auto;
        border-radius: 2px;
    }
    
    /* Main Promise Statement */
    .promise-statement {
        background: linear-gradient(135deg, rgba(246, 149, 34, 0.1) 0%, rgba(20, 114, 183, 0.1) 100%);
        border-radius: 20px;
        padding: 50px;
        margin-bottom: 60px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .promise-main {
        display: flex;
        align-items: center;
        gap: 40px;
    }
    
    .promise-icon-main {
        flex-shrink: 0;
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #f69522 0%, #e0851e 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: white;
        box-shadow: 0 10px 25px rgba(246, 149, 34, 0.3);
    }
    
    .promise-content-main {
        flex: 1;
    }
    
    .promise-content-main h3 {
        color: white;
        font-size: 1.8rem;
        line-height: 1.4;
        margin: 0 0 15px 0;
        font-weight: 600;
    }
    
    .promise-content-main h3:last-child {
        margin-bottom: 0;
        color: #f69522;
        font-weight: 700;
    }
    
    /* Four Commitments */
    .promise-commitments {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .promise-commitment {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 35px;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
        overflow: hidden;
    }
    
    .promise-commitment:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(246, 149, 34, 0.3);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .promise-commitment:nth-child(1) {
        border-top: 4px solid #f69522;
    }
    
    .promise-commitment:nth-child(2) {
        border-top: 4px solid #1472b7;
    }
    
    .promise-commitment:nth-child(3) {
        border-top: 4px solid #0a9949;
    }
    
    .promise-commitment:nth-child(4) {
        border-top: 4px solid #8b5cf6;
    }
    
    .promise-commitment-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        font-size: 1.8rem;
    }
    
    .promise-commitment:nth-child(1) .promise-commitment-icon {
        background: rgba(246, 149, 34, 0.15);
        color: #f69522;
    }
    
    .promise-commitment:nth-child(2) .promise-commitment-icon {
        background: rgba(20, 114, 183, 0.15);
        color: #1472b7;
    }
    
    .promise-commitment:nth-child(3) .promise-commitment-icon {
        background: rgba(10, 153, 73, 0.15);
        color: #0a9949;
    }
    
    .promise-commitment:nth-child(4) .promise-commitment-icon {
        background: rgba(139, 92, 246, 0.15);
        color: #8b5cf6;
    }
    
    .promise-commitment-content h4 {
        color: white;
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .promise-commitment-content p {
        color: #d1d5db;
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
    }
    
    .promise-commitment-number {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.05);
        z-index: 1;
        user-select: none;
    }
    
    /* Final Promise */
    .promise-final {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 50px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
    }
    
    .promise-final-content {
        margin-bottom: 30px;
    }
    
    .promise-final-content h3 {
        color: white;
        font-size: 1.8rem;
        line-height: 1.5;
        margin: 0;
        font-weight: 600;
    }
    
    .promise-final-content i {
        color: #f69522;
        margin-right: 15px;
        font-size: 1.5rem;
    }
    
    .promise-final-break {
        display: block;
        margin-top: 15px;
        font-size: 1.6rem;
        color: #f69522;
        font-weight: 700;
    }
    
    .promise-slogan {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .promise-slogan-text {
        font-size: 1.8rem;
        color: white;
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    .promise-flag {
        font-size: 2rem;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .promise-commitments {
            grid-template-columns: 1fr;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .promise-main {
            flex-direction: column;
            text-align: center;
            gap: 30px;
        }
    }
    
    @media (max-width: 768px) {
        .promise-section {
            padding: 60px 0;
        }
        
        .promise-title {
            font-size: 2rem;
        }
        
        .promise-subtitle {
            font-size: 1.1rem;
        }
        
        .promise-statement {
            padding: 30px;
        }
        
        .promise-content-main h3 {
            font-size: 1.5rem;
        }
        
        .promise-final {
            padding: 30px;
        }
        
        .promise-final-content h3 {
            font-size: 1.4rem;
        }
        
        .promise-slogan-text {
            font-size: 1.5rem;
        }
        
        .promise-icon-main {
            width: 80px;
            height: 80px;
            font-size: 2.5rem;
        }
    }
    
    @media (max-width: 576px) {
        .promise-title {
            font-size: 35px;
        }
        
        .promise-commitment {
            padding: 25px;
        }
        
        .promise-commitment-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .promise-commitment-content h4 {
            font-size: 1.1rem;
        }
        
        .promise-final-content h3 {
            font-size: 1.2rem;
        }
        
        .promise-final-break {
            font-size: 1.3rem;
        }
        
        .promise-slogan-text {
            font-size: 1.3rem;
        }
        
        .promise-slogan {
            flex-direction: column;
            gap: 10px;
        }
    }

/* About Page hero */
.about-page-hero{
    height: fit-content;
    width: 100%;
    display: flex;
    border-bottom: 1px solid white;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 300px 10px 100px;
    background-color: var(--primary);
}
.about-page-hero h1{
    font-size: 50px ;
    color: white;
    text-align: center;
}
@media(max-width:600px){
 .about-page-hero h1{
    font-size: 35px ;
}
.about-page-hero {
    padding: 200px 10px 70px;
}   
}


    /* Contact Section Styles */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .contact-title {
        font-size: 2.5rem;
        color: #111827;
        margin-bottom: 15px;
        position: relative;
    }
    
    .contact-subtitle {
        font-size: 1.25rem;
        color: #6b7280;
        margin-bottom: 25px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-divider {
        width: 80px;
        height: 4px;
        background-color: #f69522;
        margin: 0 auto;
        border-radius: 2px;
    }
    
    /* Contact Content Layout */
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* Contact Information Side */
    .contact-info {
        background: linear-gradient(135deg, #fff9f0 0%, #fff9ee 100%);
        border-radius: 20px;
        padding: 40px;
        border-left: 6px solid var(--primary);
        box-shadow: 0 10px 30px rgba(20, 114, 183, 0.1);
    }
    
    .contact-info-header {
        margin-bottom: 40px;
    }
    
    .contact-info-header h3 {
        color: #111827;
        font-size: 1.5rem;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .contact-info-header h3 i {
        color: var(--primary);
    }
    
    .contact-info-header p {
        color: #6b7280;
        margin: 0;
    }
    
    .contact-info-items {
        margin-bottom: 40px;
    }
    
    .contact-info-item {
        display: flex;
        gap: 20px;
        padding: 25px 0;
        border-bottom: 1px solid rgba(20, 114, 183, 0.1);
    }
    
    .contact-info-item:last-child {
        border-bottom: none;
    }
    
    .contact-info-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background-color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    
    .contact-info-details h4 {
        color: #111827;
        font-size: 1.1rem;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .contact-info-details p {
        color: #4b5563;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }
    
    .contact-social {
        padding-top: 30px;
        border-top: 1px solid rgba(20, 114, 183, 0.1);
    }
    
    .contact-social h4 {
        color: #111827;
        font-size: 1.1rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .contact-social h4 i {
        color: var(--primary);
    }
    
    .contact-social-icons {
        display: flex;
        gap: 15px;
    }
    
    .contact-social-icon {
        width: 45px;
        height: 45px;
        background-color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.1rem;
        transition: all 0.3s ease;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .contact-social-icon:hover {
        background-color: var(--primary);
        color: white;
        transform: translateY(-3px);
    }
    
    /* Contact Form Side */
    .contact-form-container {
        background-color: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border: 1px solid #e5e7eb;
    }
    
    .contact-form-header {
        margin-bottom: 30px;
    }
    
    .contact-form-header h3 {
        color: #111827;
        font-size: 1.5rem;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .contact-form-header h3 i {
        color: #f69522;
    }
    
    .contact-form-header p {
        color: #6b7280;
        margin: 0;
    }
    
    /* Form Styles */
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .form-group {
        position: relative;
    }
    
    .form-group label {
        display: block;
        color: #111827;
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    .form-group label::after {
        content: ' *';
        color: #ef4444;
        display: none;
    }
    
    .form-group label[for]:after {
        display: inline;
    }
    
    .form-group label[for="phone"]::after,
    .form-group label[for="organization"]::after {
        display: none;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        color: #111827;
        background-color: white;
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #f69522;
        box-shadow: 0 0 0 3px rgba(246, 149, 34, 0.1);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #9ca3af;
    }
    
    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 20px;
        padding-right: 50px;
    }
    
    .form-error {
        color: #ef4444;
        font-size: 0.85rem;
        margin-top: 5px;
        min-height: 20px;
        display: none;
    }
    
    .form-group.error .form-error {
        display: block;
    }
    
    .form-group.error input,
    .form-group.error select,
    .form-group.error textarea {
        border-color: #ef4444;
    }
    
    .form-submit {
        margin-top: 10px;
    }
    
    .form-submit .btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
    
    .form-success {
        display: none;
        color: #0a9949;
        font-size: 1rem;
        margin-top: 15px;
        padding: 12px 20px;
        background-color: #f0f9f4;
        border-radius: 8px;
        border-left: 4px solid #0a9949;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .contact-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .contact-info,
        .contact-form-container {
            max-width: 600px;
            margin: 0 auto;
        }
    }
    
    @media (max-width: 768px) {
        .contact-section {
            padding: 60px 0;
        }
        
        .contact-title {
            font-size: 2rem;
        }
        
        .contact-subtitle {
            font-size: 1.1rem;
        }
        
        .form-row {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .contact-info,
        .contact-form-container {
            padding: 30px;
        }
        
        .contact-info-item {
            padding: 20px 0;
        }
    }
    
    @media (max-width: 576px) {
        .contact-title {
            font-size: 1.75rem;
        }
        
        .contact-info,
        .contact-form-container {
            padding: 25px 20px;
        }
        
        .contact-info-item {
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-info-icon {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }
        
        .contact-social-icons {
            justify-content: center;
        }
        
        .form-submit .btn {
            width: 100%;
        }
    }

/* new hero */

.new-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    padding-top: 120px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    background: url('images/home-hero-bg.webp') no-repeat center center/cover;
}

.new-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 1;
}

.new-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.new-hero-content h1 {
    font-size: 50px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}
.new-hero-content h1 span{
    color: var(--primary);
}

.new-hero-content p {
    font-size: medium;
    margin-bottom: 40px;
    color: var(--light);
}

.new-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.new-hero-button {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.new-hero-button-roadmap {
    border: 2px solid var(--light);
    background-color: var(--primary);
    color: var(--light);
}
.new-hero-button-contact {
    background-color: var(--secondary);
    color: var(--light);
    border: 2px solid var(--light);
}
@media (max-width: 768px) {
    .new-hero-content h1 {
        font-size: 35px;
    }

    .new-hero-content p {
        font-size: small;
    }
}
/* Home Key focus Area */
/* Section & Container */
.home-key-focus-area {
    padding: 60px 20px;
}

.home-key-focus-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Image */
.home-key-focus-left {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.home-key-focus-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}
/* Right Content */
.home-key-focus-right {
    flex: 1;
    min-width: 300px;
}

.home-key-focus-heading {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: var(--darker);
}
.home-key-focus-heading::after{
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--primary);
    position: absolute;
    left: 50%;
    bottom: -10px;
}
.home-key-focus-text {
    font-size: medium;
    line-height: 1.9;
    color: #555;
}

/* Orange Button */
.home-key-focus-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #ff6600; /* bright orange */
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255,102,0,0.4);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.home-key-focus-btn:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,102,0,0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .home-key-focus-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .home-key-focus-container {
        flex-direction: column;
        text-align: center;
    }

    .home-key-focus-right {
        margin-top: 25px;
    }

    .home-key-focus-heading {
        font-size: 35px;
    }

    .home-key-focus-text {
        font-size: small;
    }
}
/* Home Roadmap */
.home-roadmap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: var(--dark);
    color: #fff;
}

.home-roadmap-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
}

/* Left Content */
.home-roadmap-left {
    flex: 1;
    min-width: 300px;
}

.home-roadmap-heading {
    font-size: 50px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}
.home-roadmap-heading::after{
    content: '';
    height: 4px;
    width: 100px;
    position: absolute;
    left: 40%;
    bottom: -10px;
    background-color: var(--primary);
}

.home-roadmap-text {
    font-size: medium;
    line-height: 1.8;
    color: #ddd;
}

.home-roadmap-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
}

/* Right Image */
.home-roadmap-right {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.home-roadmap-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media (max-width: 992px) {
    .home-roadmap-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .home-roadmap-container {
        flex-direction: column;
        text-align: center;
    }
    .home-roadmap-left {
        margin-bottom: 20px;
    }

    .home-roadmap-heading {
        font-size: 35px;
    }

    .home-roadmap-text {
        font-size: small;
    }
}


/* Account Page */

.account-page-container {
    padding: 60px 30px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
}

.account-page-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.account-page-btn {
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    color: #888;
    transition: all 0.3s ease;
}

.account-page-btn.active {
    color: #fff;
    background: orange;
    border-radius: 30px;
}

.account-page-form {
    display: none;
    max-width: 600px;
    width: 100%;
    padding: 20px;
    box-shadow: 1px 1px 10px gray;
    border-radius: 20px;
    flex-direction: column;
}

.account-page-form.active {
    display: flex;
}

.account-page-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 35px;
    text-align: center;
}

.account-page-form input ,#account-page-signupProvince,.account-page-form select{
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.account-page-form input:focus ,#account-page-signupProvince:focus,.account-page-form select:focus{
    border-color: orange;
}
#signupProvince,#signupSchoolName,#signupSchoolAddress{
    width: 100%;
}
.account-page-btn-submit {
    padding: 12px;
    margin-top: 10px;
    background: orange;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.account-page-btn-submit:hover {
    background: #ff7f00;
}

.account-page-toggle-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.account-page-toggle-text span {
    color: orange;
    cursor: pointer;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 500px) {
    .account-page-container {
        padding: 30px 20px;
    }
}

/* Article Page */
.article-card-container{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    flex-wrap: wrap;
    padding: 60px 20px;
    gap: 20px;
}
.article-card {
    width: 320px;
    text-decoration: none;
    height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 8px 20px gray;
    border: 2px solid var(--primary);
    cursor: pointer;
}
.article-card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.article-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8); 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: background 0.3s ease;
}

.article-card:hover .article-card-overlay {
    background: rgba(0,0,0,0.5);
}

.article-card-text-container {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.article-card-text-container h2 {
    font-size: 30px;
    color: white;
    font-weight: bold;
}
.article-card-text-container button {
    background-color: var(--primary);
    color: white;
    font-size: medium;
    padding: 8px 20px;
    border-radius: var(--radius-md);
    border: 2px solid white;
}

.article-card-text-container span {
    font-size: large;
    font-weight: 600;
    color: #f0f0f0;
}


.article-text-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333;
}

/* Featured image with date overlay */
.article-featured-image {
    position: relative;
    width: 100%;
    max-height: 450px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.article-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: orange;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

/* Author info */
.article-author {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

.article-author strong {
    font-size: 18px;
    color: #222;
}

/* Sections */
.article-section {
    margin-bottom: 30px;
}

.article-section h3 {
    font-size: 22px;
    color: orange;
    margin-bottom: 15px;
    border-left: 5px solid orange;
    padding-left: 10px;
}

.article-section p {
    margin-bottom: 15px;
}

.article-section ul {
    padding-left: 20px;
}

.article-section ul li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .article-section h3 {
        font-size: 20px;
    }

    .article-author {
        font-size: 15px;
    }

    .article-date {
        font-size: 12px;
        padding: 5px 10px;
    }
}
.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.author-avatar img {
    width: 60px;
    box-shadow: 1px 1px 10px;

    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    line-height: 1.4;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.author-designation {
    font-size: 15px;
    color: #666;
    margin: 4px 0 0;
}

/* Responsive */
@media (max-width: 600px) {
    
    .author-avatar img {
        width: 50px;
        height: 50px;
    }
    .author-name {
    font-size: medium;}
    .author-designation {
    font-size: small;
}
.author-details {
    line-height: normal;
    width: 90%;
}
}

.terms-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.8;
}

.terms-section {
    margin-bottom: 30px;
}

.terms-section h2 {
    font-size: 25px;
    color: #222;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary);
    padding-left: 12px;
}

.terms-section p {
    font-size: medium;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-container h1 {
        font-size: 28px;
    }
    .terms-section h2 {
        font-size: 25px;
    }
    .terms-section p {
        font-size: medium;
    }
}

@media (max-width: 480px) {
    .terms-container h1 {
        font-size: 24px;
    }
    .terms-section h2 {
        font-size: 20px;
    }
    .terms-section p {
        font-size: small;
    }
}


.privacy-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.8;
}
.privacy-section {
    margin-bottom: 30px;
}

.privacy-section h2 {
    font-size: 25px;
    color: #222;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary);
    padding-left: 12px;
}

.privacy-section p {
    font-size: medium;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-container h1 {
        font-size: 28px;
    }
    .privacy-section h2 {
        font-size: 22px;
    }
    .privacy-section p {
        font-size: medium;
    }
}

@media (max-width: 480px) {
    .privacy-container h1 {
        font-size: 24px;
    }
    .privacy-section h2 {
        font-size: 20px;
    }
    .privacy-section p {
        font-size: small;
    }
}
.collabration-main{
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    justify-content: center;
    align-items: center;
}
.collabration-main h2{
    font-size: 50px;
    text-align: center;
    color: var(--dark);
    position: relative;
}
.collabration-main h2::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    height: 4px;
    width: 100px;
    background-color: var(--primary);
}
.collabration-image{
    height: fit-content;
    width: 100%;
    display: flex;
    padding: 60px 0;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
}
.collabration-image img{
    height: 100px;
    width: auto;
    object-fit: contain;
}
@media(max-width:768px){
    .collabration-image img {
        height: auto;
        width: 150px;
    }   
.collabration-main h2{
    font-size: 35px;
}
}

/* Ecomonic and Policy Research Page */
/* GENERAL */
.economic-policy-section {
  padding: 60px 20px;
}

.economic-policy-container {
  max-width: 1150px;
  margin: auto;
}

/* THEMES */
.economic-policy-white {
  background: var(--light);
  color: var(--gray-800);
}

.economic-policy-dark {
  background: var(--dark);
  color: var(--gray-100);
}

.economic-policy-soft {
  background: var(--gray-50);
  color: var(--gray-800);
}

/* HEADINGS */
.economic-policy-section h2 {
  font-size: 2.4rem;
  margin-bottom: 35px;
  color: black;
  position: relative;
}
.economic-policy-section h2::after{
    content: '';
    height: 4px;
    width: 100px;
    background-color: var(--primary);
    position: absolute;
    bottom: -10px;
    left: 20%;

}
.economic-policy-dark h2 {
  color: white;
}

.economic-policy-section p {
  font-size: medium;
  margin-bottom: 22px;
}

/* SECTION 1 */
.economic-policy-intro-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: center;
}

.economic-policy-intro-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* SECTION 2 */
.economic-policy-analysis-layout {
  max-width: 900px;
}

.economic-policy-analysis-image {
  margin: 50px 0;
}

.economic-policy-analysis-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* SECTION 3 */
.economic-policy-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.economic-policy-feature {
  background: rgba(255, 136, 0, 0.2);
  padding: 35px;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
}

/* SECTION 4 */
.economic-policy-impact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.economic-policy-impact-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .economic-policy-intro-layout,
  .economic-policy-impact-layout,
  .economic-policy-feature-grid {
    grid-template-columns: 1fr;
  }

      .economic-policy-section h2 {
        font-size: 35px;
        text-align: center;
    }
  .economic-policy-section p {
  font-size: small;
  margin-bottom: 22px;
  text-align: center;
}
.economic-policy-feature{
    text-align: center;
    padding: 10px;
}
.economic-policy-feature p{
    margin: 0;
}
}



/* SITE MAP GRID */
.sitemap-section {
  width: 100%;
  padding: 60px 20px;
  background: #fff;
  color: #000;
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.sitemap-column h4 {
  color: black;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.sitemap-column h4::after{
    content: '';
    position: absolute;
    left: 10%;
    bottom: -10px;
    height: 4px;
    width: 50px;
    background-color: var(--primary);
}

.sitemap-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-column ul li {
  margin-bottom: 8px;
}

.sitemap-column ul li a {
  text-decoration: none;
  color: #000;
  font-size: medium;
  transition: color 0.3s ease;
}

.sitemap-column ul li a:hover {
  color: var(--primary);
}



.news-view{
    padding:60px 20px;
    display:flex;
    /* margin-top: 100px; */
    justify-content:center;
}

.news-container{
    /* max-width:900px; */
    width:100%;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.news-title{
    font-size:50px;
    background-color: #f8b909;
    font-weight:700;
    width: 100%;
    text-align: center;
    line-height:1.3;
    color:#111;
}

.news-image img{
    width:100%;
    height:auto;
    border-radius:12px;
    object-fit:cover;
}

/* Responsive */

@media(max-width:768px){

.news-title{
    font-size:28px;
}

}

@media(max-width:480px){

.news-title{
    font-size:24px;
}

.news-view{
    padding:40px 15px;
}

}

.pertc-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(135deg,#000000c9,#001f3fbd);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
visibility:hidden;
transition:.4s;
z-index:9999;
}

.pertc-overlay.show{
opacity:1;
visibility:visible;
}

/* modal */

.pertc-modal{
width:90%;
max-width:880px;
display:flex;
background:rgba(255,255,255,0.15);
backdrop-filter:blur(12px);
border-radius:16px;
overflow:hidden;
box-shadow:0 30px 70px rgba(0,0,0,.5);
transform:translateY(80px) scale(.9);
transition:.5s;
}

.pertc-overlay.show .pertc-modal{
transform:translateY(0) scale(1);
}

/* image */

.pertc-left{
flex:1;
}

.pertc-img{
width:100%;
height:100%;
object-fit:cover;
animation:pertcZoom 14s infinite alternate;
}

@keyframes pertcZoom{
from{transform:scale(1)}
to{transform:scale(1.12)}
}

/* content */

.pertc-right{
flex:1;
padding:45px;
color:#fff;
animation:pertcSlide .9s ease;
}

@keyframes pertcSlide{
from{
opacity:0;
transform:translateX(50px);
}
to{
opacity:1;
transform:translateX(0);
}
}

/* label */

.pertc-label{
background:#ff7f00;
padding:6px 14px;
border-radius:20px;
font-size:13px;
display:inline-block;
margin-bottom:14px;
}

/* heading */

.pertc-right h2{
font-size:26px;
margin-bottom:15px;
}

/* paragraph */

.pertc-right p{
font-size:15px;
line-height:1.6;
margin-bottom:20px;
}

/* features */

.pertc-features{
list-style:none;
padding:0;
margin-bottom:25px;
}

.pertc-features li{
margin-bottom:8px;
font-size:14px;
}

/* button */

.pertc-btn{
display:inline-block;
padding:12px 28px;
background:#00b4ff;
color:#fff;
text-decoration:none;
border-radius:30px;
font-weight:600;
transition:.3s;
}

.pertc-btn:hover{
background:#ff7f00;
transform:translateY(-2px);
}

/* close */

.pertc-close{
position:absolute;
top:20px;
right:30px;
font-size:30px;
background:none;
border:none;
color:#fff;
cursor:pointer;
}

/* mobile */

@media(max-width:768px){

.pertc-modal{
flex-direction:column;
}

.pertc-left{
height:220px;
display: none;
}

.pertc-right{
padding:30px;
text-align:center;
}

}
