/* styles.css */
:root {
    --primary: #d3d7ef;
    --secondary: #c8c7e8;
    --accent: #1B1A55;
    --dark: #070F2B;
    --light: #f5f5f5;
    --gray: #333333;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    background: rgba(7, 15, 43, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.company-name {
    background: linear-gradient(135deg, #ae643b 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -text-fill-color: transparent;
    transition: all 0.3s ease;
    font-size: 2rem;
    font-weight: 600;
    font-family: "Lucida Console", "Courier New", monospace;
    letter-spacing: 0.5px;
}

.company-name:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ae643b 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: var(--light);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(7, 15, 43, 0.95);
    backdrop-filter: blur(10px);
    min-width: 250px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    padding: 1rem 1.5rem;
    color: var(--light);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(83, 92, 145, 0.3);
    color: var(--secondary);
}

.dropdown-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(146, 144, 195, 0.1);
}

.nav-item a {
    color: var(--light);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
}

/* Remove triangle styling */

@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        min-width: 100%;
    }

    .dropdown:hover .dropdown-content {
        display: block;
        transform: none;
    }
}

.get-secured {
    background: var(--secondary);
    color: var(--dark);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.get-secured:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(146, 144, 195, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(90deg, #070F2B 70%, #0D1543 100%);
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2rem;
    padding-top: 100px;
}

.hero-content {
    padding-top: 5px;
}

.badge {
    background: rgba(146, 144, 195, 0.1);
    border: 1px solid rgba(194, 193, 218, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4rem;
}

.badge i {
    color: #c4c3e0;
}

.hero h1 {
    font-size: 3.1rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ae643b 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -text-fill-color: transparent;
    transition: all 0.3s ease;
}

.hero h1:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ae643b 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: #dadae5;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #9290C3;
    color: #070F2B;
    border: none;
}

.btn-secondary {
    background: transparent;
    color: #9290C3;
    border: 2px solid #9290C3;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 550px;
    filter: drop-shadow(0 0 20px rgba(146, 144, 195, 0.2));
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: linear-gradient(rgba(7, 15, 43, 0.95), rgba(7, 15, 43, 0.9));
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(83, 92, 145, 0.2);
    border: 1px solid rgba(146, 144, 195, 0.2);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    text-decoration: none;
    margin-top: 1.5rem;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 1rem;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: linear-gradient(rgba(7, 15, 43, 0.9), rgba(7, 15, 43, 0.95));
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Swapped the order of columns to put text on left, image on right */
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    text-align: center;
}

.about-text p {
    margin-bottom: 10px;
}

.about-link {
    display: inline-flex;
    margin: 1.5rem 0;
    color: var(--secondary);
    text-decoration: none;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.about-link:hover {
    gap: 1rem;
}

.about-image {
    /* Removed float: left */
    width: 100%;
    height: 100%;
    /* Added to maintain aspect ratio */
    object-fit: contain;
    /* Ensures image is vertically centered */
    display: flex;
    align-items: center;
}


/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(rgba(7, 15, 43, 0.95), rgba(7, 15, 43, 0.9));
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-form {
    background: rgba(83, 92, 145, 0.2);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(146, 144, 195, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 5px;
    color: var(--light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(146, 144, 195, 0.3);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--secondary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-section h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--secondary);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 5px;
    color: var(--light);
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(146, 144, 195, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 80%;
        background: var(--dark);
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animated {
    animation: fadeIn 0.6s ease forwards;
}

/* Additional Responsive Styles */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-card {
        padding: 1.5rem;
    }

    .company-name {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        padding: 0.8rem;
    }
}

/* Textarea Specific Styles */
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Focus States */
.form-group input:focus,
.form-group textarea:focus,
.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(211, 215, 239, 0.1);
}

/* Hover Effects Enhancement */
.service-card:hover .card-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.footer-section ul a:hover {
    padding-left: 5px;
}

/* Active States */
.btn:active,
.get-secured:active,
.submit-btn:active {
    transform: translateY(1px);
}

/* Scroll Behavior */
html {
    scroll-padding-top: 80px;
    /* Height of fixed navbar */
}

/* Print Styles */
@media print {

    .navbar,
    .hero-buttons,
    .contact-form,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero,
    .services,
    .about,
    .contact {
        padding: 20px;
        background: none;
    }
}


/* MDR Hero Section Modifications */
.mdr-hero {
    min-height: 60vh;
    background: linear-gradient(90deg, #070F2B 60%, #0D1543 100%);
    position: relative;
    overflow: hidden;
    padding: 0 5%;
    margin-top: 6rem;
}

.mdr-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    margin-top: 6rem;


}

.mdr-hero-badge {
    margin-top: 6rem;

}

/* Core Components Section */
.core-components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.component-card {
    background: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.component-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.component-card:hover::before {
    transform: scaleX(1);
}

.component-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Stats Section */
.stats-showcase {
    text-align: center;
    padding: 2rem;
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    margin: 2rem 0;
}

.stat-number {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Framework Section */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.framework-card {
    background: rgba(83, 92, 145, 0.2);
    padding: 2rem;

    border-radius: 10px;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.framework-card:hover {
    transform: translateX(5px);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2);
}

/* AI/ML Section */
.ai-ml-section {
    background: linear-gradient(rgba(7, 15, 43, 0.95), rgba(7, 15, 43, 0.9));
    padding: 80px 20px;
}

.ai-ml-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ai-ml-card {
    background: rgba(83, 92, 145, 0.15);
    border: 1px solid rgba(146, 144, 195, 0.2);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ai-ml-card:hover {
    background: rgba(83, 92, 145, 0.25);
    transform: translateY(-5px);
}

/* Integration Section */
.integration-timeline {
    position: relative;
    padding: 2rem 0;
}

.integration-item {
    position: relative;
    padding: 2rem;
    margin-left: 3rem;
    border-left: 2px solid var(--secondary);
}

.integration-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--secondary);
    border-radius: 50%;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(83, 92, 145, 0.1);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

/* Feature Highlights */
.feature-highlight {
    position: relative;
    padding: 2rem;
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(83, 92, 145, 0.2);
}

.highlight-icon {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--dark);
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--secondary);
}

/* Enhanced Contact Form */
.mdr-contact-form {
    background: rgba(83, 92, 145, 0.15);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(146, 144, 195, 0.2);
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 5px;
    color: var(--light);
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(200, 199, 232, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .component-card,
    .framework-card,
    .ai-ml-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .integration-item {
        margin-left: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .mdr-hero {
        background: none;
        color: black;
    }

    .component-card,
    .framework-card,
    .ai-ml-card,
    .benefit-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        background: none;
    }

    .contact-section {
        display: none;
    }
}



/* Compliance Platform Specific Styles */

/* Hero Section Modifications */
.compliance-hero {
    min-height: 60vh;
    background: linear-gradient(90deg, var(--dark) 70%, #0D1543 100%);
    position: relative;
    overflow: hidden;
}

.stats-badge {
    background: rgba(146, 144, 195, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stats-badge .number {
    font-size: 2rem;
    color: var(--secondary);
    font-weight: bold;
}

/* Feature Cards */
.feature-card {
    background: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(83, 92, 145, 0.2);
    border-color: var(--secondary);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Standards Grid */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.standard-item {
    background: rgba(83, 92, 145, 0.15);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.standard-item:hover {
    transform: translateX(5px);
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    margin-left: 3rem;
    border-left: 2px solid var(--secondary);
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--secondary);
    border-radius: 50%;
}

/* Dashboard Preview */
.dashboard-preview {
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.chart-container {
    background: rgba(27, 26, 85, 0.5);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-number {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(83, 92, 145, 0.1);
    border-radius: 8px;
}

.feature-item i {
    color: var(--secondary);
    font-size: 1.5rem;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: rgba(83, 92, 145, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    background: rgba(83, 92, 145, 0.2);
}

.support-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-item {
        margin-left: 1.5rem;
    }

    .stats-badge {
        flex-direction: column;
        text-align: center;
    }

    .feature-card,
    .standard-item,
    .benefit-card {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease forwards;
}

/* Interactive Elements */
.feature-card.active {
    border-color: var(--secondary);
    background: rgba(83, 92, 145, 0.3);
}

.timeline-item.active {
    border-left-width: 4px;
}

/* Print Styles */
@media print {

    .feature-card,
    .standard-item,
    .benefit-card,
    .support-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        background: none;
    }

    .timeline-item::before {
        display: none;
    }
}

/* Training Factory Specific Styles */
.training-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, var(--dark) 0%, #0D1543 100%);
}

/* Training Cards */
.training-card {
    background: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.training-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(146, 144, 195, 0.1));
    transition: width 0.3s ease;
}

.training-card:hover::after {
    width: 100%;
}

/* Timeline */
.career-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 2px solid var(--secondary);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
}

/* Infrastructure Grid */
.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.infra-card {
    background: rgba(83, 92, 145, 0.15);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.infra-card:hover {
    transform: translateY(-5px);
    background: rgba(83, 92, 145, 0.25);
}

/* Research Grid */
.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.research-card {
    background: rgba(83, 92, 145, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 1rem;
}

.plus {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Program Selection */
.program-select {
    background: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    color: var(--light);
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(83, 92, 145, 0.1);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.benefit-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-item {
        padding-left: 1.5rem;
    }

    .stats-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .infra-card,
    .research-card,
    .benefit-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-showcase {
        grid-template-columns: 1fr;
    }
}

/* Custom Dropdown Styles */
.custom-select {
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    background: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 8px;
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select:after {
    content: '▼';
    font-size: 0.8em;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.custom-select:hover:after {
    transform: translateY(-50%) scale(1.2);
}

.custom-select select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(146, 144, 195, 0.1);
}

.custom-select select option {
    background-color: #1B1A55;
    color: var(--light);
    padding: 1rem;
}

/* Hover effect for options */
.custom-select select option:hover {
    background-color: var(--secondary);
}

/* Active/Selected state */
.custom-select select:active,
.custom-select select:focus {
    background: rgba(83, 92, 145, 0.2);
}

/* About Page Specific Styles */
.about-hero {
    
    background: linear-gradient(135deg, var(--dark) 0%, #1B1A55 100%);
    position: relative;
    overflow: hidden;
}
.about-hero-container{
    margin-top: 20px;
    margin-bottom: 20px;
}

about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(146, 144, 195, 0.1)" x="0" y="0" width="100" height="100"/></svg>');
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
    
}

.advisory-hero{
    margin-top: 5rem;
}

/* Vision Section */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vision-card {
    background: rgba(83, 92, 145, 0.1);
    border: 1px solid rgba(146, 144, 195, 0.2);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.vision-card:hover::before {
    transform: scaleX(1);
}

.vision-card:hover {
    transform: translateY(-5px);
}

/* Advisory Board */
.advisory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advisory-card {
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.advisor-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 2rem auto;
    overflow: hidden;
    border: 4px solid var(--secondary);
}

.advisor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    position: relative;
    height: 400px;
    perspective: 1000px;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    padding: 2rem;
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
}

.card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.team-card:hover .card-front {
    transform: rotateY(180deg);
}

.team-card:hover .card-back {
    transform: rotateY(360deg);
}

/* Partners Section */
.partner-carousel {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    padding: 2rem 0;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: var(--secondary);

    text-align: center;
}

.partner-logo {
    align-items: center;
}

/* Blog Specific Styles */
.featured-post {
    min-height: 70vh;
    background: linear-gradient(135deg, var(--dark) 0%, rgba(27, 26, 85, 0.9) 100%);
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    position: relative;
}

.featured-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.post-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-post h1 {
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    color: var(--secondary);
    margin: 1rem 0;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(146, 144, 195, 0.3);
}

/* Categories Section */
.categories {
    padding: 4rem 2rem;
    background: var(--dark);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: rgba(83, 92, 145, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
}

.category-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.category-card:hover {
    transform: translateY(-5px);
    background: rgba(83, 92, 145, 0.2);
}

/* Latest Posts */
.latest-posts {
    padding: 4rem 2rem;
    background: linear-gradient(var(--dark), rgba(27, 26, 85, 0.9));
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.post-card {
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    margin: 1rem 0;
    color: var(--light);
}

.post-content p {
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 2rem;
    background: rgba(83, 92, 145, 0.1);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: rgba(27, 26, 85, 0.5);
    border: 1px solid rgba(146, 144, 195, 0.2);
    border-radius: 8px;
    color: var(--light);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    padding: 1rem 2rem;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(146, 144, 195, 0.3);
}

@media (max-width: 768px) {
    .featured-post h1 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* About Page Styles */
.about-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--dark) 0%, #1B1A55 100%);
}

.about-hero h1 {
    color: var(--light);
    font-size: 3rem;
    margin-bottom: 1.5rem;

}

.about-hero p {
    color: var(--light);
    font-size: 1.2rem;
    max-width: 800px;
}

.team-section,
.advisory-section {
    padding: 80px 20px;
    background: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--light);
    font-size: 2.5rem;
}

.member {
    display: flex;
    margin-bottom: 80px;
    gap: 40px;
    background: rgba(83, 92, 145, 0.1);
    border-radius: 10px;
    padding: 30px;
}

.member-left {
    flex: 0 0 300px;
}

.member-image {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;

}

.member:hover .member-image img {
    transform: scale(1.05);
}

.member-title {
    text-align: center;
}

.member-title h3 {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.position {
    color: var(--secondary);
    font-size: 1rem;
}

.member-right {
    flex: 1;
}

.member-info {
    color: var(--light);
    line-height: 1.8;
}

.member-info p {
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .member-left {
        flex: none;
        margin-bottom: 30px;
    }

    .member-image {
        width: 250px;
        height: 250px;
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .member {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .member-image {
        width: 200px;
        height: 200px;
    }
}

.alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    animation: fadeIn 0.5s;
}

.alert-success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}