:root {
    --primary-color: #1a237e;
    --secondary-color: #ffd700;
    --text-color: #333;
    --light-text: #fff;
    --background-light: #f8f9fa;
    --transition: all 0.3s ease;
    --section-padding: 6rem 0;
    --container-padding: 0 2rem;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    visibility: visible !important;
    opacity: 1 !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Modern Logo Animation */
.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
}

.logo a::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    left: -15px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.logo a:hover::before {
    transform: scale(1);
}

/* Enhanced Navigation Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Modern Mobile Menu Toggle */
.menu-toggle {
    display: none;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 1002;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--primary-color);
        transition: transform 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: all 0.3s ease;
        z-index: 1002;
        padding: 2rem;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary-color);
        background: var(--background-light);
    }

    /* Stagger animation for nav items */
    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }

    /* Mobile menu overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Mobile social links */
    .mobile-social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .mobile-social-links a {
        color: var(--primary-color);
        font-size: 1.5rem;
    }

    /* Reduce hero height on mobile */
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .menu-toggle {
        z-index: 1003;
    }
}

/* Updated Hero Section Styles */
.hero-section {
    
    padding: 40px 0;
    background-image: url('https://img.freepik.com/free-vector/abstract-blue-geometric-shapes-background_1035-17545.jpg');
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4F46E5, #818CF8);
}

.shape-2 {
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #818CF8, #4F46E5);
}

.shape-3 {
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4F46E5, #818CF8);
    transform: translate(-50%, -50%);
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    padding-right: 20px;
}

.hero-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 100px;
    color: #4F46E5;
    font-size: 14px;
    font-weight: 500;
}

.tag i {
    font-size: 16px;
}

.hero-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1F2937;
}

.gradient-text {
    background: linear-gradient(135deg, #4F46E5, #818CF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: #4B5563;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #4F46E5, #818CF8);
    color: white;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
}

.btn-secondary {
    background: white;
    color: #4F46E5;
    border: 2px solid #4F46E5;
}

.achievement-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.achievement-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.achievement-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 4px;
}

.achievement-text {
    font-size: 14px;
    color: #6B7280;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 100%;
    height: auto;
    position: relative;
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* Floating Cards */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.float-card {
    position: absolute;
    background: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.placement-card {
    top: 10%;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4F46E5, #818CF8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.rating-card {
    bottom: 20%;
    right: 10%;
}

.stars {
    color: #FBC02D;
    font-size: 20px;
    margin-bottom: 8px;
}

.stats-card {
    bottom: 30%;
    left: 0;
}

/* Trusted Companies */
.trusted-companies {
    margin-top: 80px;
    text-align: center;
}

.trust-text {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.company-logos img {
    height: 32px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.company-logos img:hover {
    opacity: 1;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 40px;
    }
    
    .partner-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

    .hero-content {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .achievement-cards {
        max-width: 600px;
        margin: 0 auto;
    }

    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .achievement-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logo {
        width: 100px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .achievement-cards {
        grid-template-columns: 1fr;
    }

    .partner-grid {
        gap: 15px;
    }

    .partner-logo {
        width: 80px;
        height: 35px;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Domains Grid */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Footer Styles */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-right: 30px;
}

.footer-section:last-child {
    margin-right: 0;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

/* Testimonials */
.student-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 2rem;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.student-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.student-info h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.student-info span {
    color: #666;
    font-size: 1rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Progress indicator */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--primary-color);
    transition: width 5s linear;
}

.testimonial-card.active .progress-bar {
    width: 100%;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .testimonial-content {
        padding: 2rem;
    }

    .testimonial-content p {
        font-size: 1.1rem;
    }

    .student-info h4 {
        font-size: 1.1rem;
    }

    .student-info span {
        font-size: 0.9rem;
    }
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .testimonial-slide {
        height: 400px;
    }

    .student-image {
        height: 200px;
    }

    .success-stats {
        gap: 2rem;
    }

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

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.social-links a {
    font-size: 1.5rem;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(26, 35, 126, 0.7)),
                url('../images/page-header-bg.jpg') center/cover;
    color: var(--light-text);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image img {
    max-width: 100%;
    height: auto;
}

.service-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

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

.scenario {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.scenario i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.scenario h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.scenario p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    background: #1d4ed8;
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        gap: 2rem;
    }

    .service-item.reverse {
        flex-direction: column;
    }

    .service-scenarios {
        grid-template-columns: 1fr;
    }
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.values {
    background: var(--background-light);
    padding: 5rem 0;
}

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

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.value-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1rem;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
}

/* Industry Partners Section */
.industry-partners {
    padding: 5rem 0;
    background: var(--background-light);
}

.industry-partners h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.partners-content {
    max-width: 900px;
    margin: 0 auto;
}

.partners-content > p {
    text-align: center;
    margin-bottom: 3rem;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.sector-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sector-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sector-card ul {
    list-style: none;
}

.sector-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sector-card ul li:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .sector-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-content > p {
        padding: 0 1rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: var(--section-padding);
    background: var(--background-light);
}

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

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.section-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Enhanced Flip Cards */
.feature-card.flip-card {
    height: 320px;
    margin: 0;
    perspective: 1500px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.feature-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 15px;
}

.flip-card-front {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.flip-card-front i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.flip-card-front h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.flip-card-front p {
    color: var(--text-color);
    font-size: 1rem;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--primary-color), #2a3990);
    transform: rotateY(180deg);
}

.flip-card-back h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.flip-card-back p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media screen and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-card.flip-card {
        height: 300px;
    }

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

/* Touch Device Support */
@media (hover: none) {
    .flip-card-inner {
        transition: transform 0.5s ease;
    }
    
    .feature-card.flip-card {
        cursor: pointer;
    }
}

/* Training Domains Section */
.training-domains {
    padding: 5rem 0;
    background: white;
}

.domain-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.domain-header h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.domain-header p {
    color: var(--text-color);
    line-height: 1.8;
}

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

.domain-card {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.domain-icon {
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.domain-icon i {
    font-size: 2rem;
    color: white;
}

.domain-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.domain-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Responsive adjustments for Training Domains */
@media screen and (max-width: 768px) {
    .domain-header {
        padding: 0 1rem;
    }

    .domains-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .domain-card {
        padding: 2rem;
    }
}

/* Responsive adjustments for testimonials */
@media screen and (max-width: 768px) {
    .testimonial-slide {
        margin-bottom: 1rem;
    }
}

/* Add these premium animations and effects */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Button Hover Effect */
.cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover:before {
    left: 0;
}

/* Card Hover Animations */
.feature-card, .domain-card, .testimonial-card, .service-card, .value-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover, .domain-card:hover, .testimonial-card:hover, .service-card:hover, .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Navigation Link Hover Effect */
.nav-links a {
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Section Fade-In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header, .about-story, .mission-vision, .values, .services-detailed, 
.partner-benefits, .industry-partners {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Stats Counter Animation */
.stat-number {
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.stat-number:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}

/* Service Image Hover Effect */
.service-image {
    overflow: hidden;
    border-radius: 15px;
}

.service-image img {
    transition: transform 0.5s ease;
}

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

/* Domain Icon Pulse Effect */
@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.domain-icon:hover i {
    animation: iconPulse 1s infinite;
}

/* Social Links Hover Effect */
.social-links a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: var(--secondary-color);
}

/* Form Input Focus Effects */
.form-group input, .form-group textarea {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(26, 35, 126, 0.1);
    outline: none;
}

/* Premium Card Hover Effects */
.value-card, .benefit-card {
    position: relative;
    overflow: hidden;
}

.value-card:before, .benefit-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.value-card:hover:before, .benefit-card:hover:before {
    transform: translateX(100%);
}

/* Header Scroll Animation */
.header {
    transition: all 0.4s ease;
}

.header.scroll-down {
    transform: translateY(-100%);
}

.header.scroll-up {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section Enhancement */
.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(45deg, rgba(26, 35, 126, 0.9), rgba(26, 35, 126, 0.7)); */
    animation: gradientShift 10s infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Testimonial Card Enhancement */
.testimonial-card {
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
    border: 0;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    color: var(--primary-color);
}

@media screen and (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 20px 20px;
        transition: 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 9998;
    }

    .navbar.active {
        right: 0;
    }

    .navbar ul {
        flex-direction: column;
        gap: 20px;
    }

    .navbar ul li {
        width: 100%;
    }

    .navbar ul li a {
        display: block;
        padding: 10px 0;
        width: 100%;
        text-align: left;
    }

    /* Overlay when menu is open */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9997;
    }

    .overlay.active {
        display: block;
    }
} 