/* Luxury Variables - Light Theme */
:root {
    --bg-color: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --accent-gold: #cc0000;
    /* Deep Red for Professional Look */
    --accent-gold-light: #ff3333;
    --accent-dark: #f0f0f0;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 4px;
    /* Slight roundness for modern feel */
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background-color: #b30000;
    border-color: #b30000;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: #ffffff;
}

/* Header & Navbar */
/* =========================================
   HEADER & NAVIGATION 
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 0;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: padding 0.3s ease;
}

.header.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 60px;
    /* Logo Size 60px */
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Desktop Navigation */
.navbar {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    /* Center the nav items if desired, or flex-end */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Header Actions (Button & Hamburger) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-btn.btn-primary {
    background-color: #cc0000;
    color: #fff !important;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-btn.btn-primary:hover {
    background-color: #a30000;
    transform: translateY(-2px);
}

/* Hamburger Menu (Hidden on Desktop) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
    /* Above mobile menu */
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Dropdown Menus (Desktop) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent-gold);
    padding: 1rem 0;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: var(--accent-gold);
    padding-left: 2rem;
}

/* Mega Menu (Desktop) */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 900px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2.5rem;
    z-index: 1001;
    border-top: 3px solid var(--accent-gold);
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.mega-col-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.mega-list li {
    margin-bottom: 0.8rem;
}

.mega-list a {
    color: #555;
    font-size: 0.95rem;
    transition: 0.2s;
}

.mega-list a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

/* =========================================
   MOBILE RESPONSIVE STYLES 
   ========================================= */
@media (max-width: 992px) {

    /* Hide Navbar normally */
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 0 2rem;
        box-shadow: none !important;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 10000;
        overflow-y: auto;
    }

    .navbar.active {
        right: 0;
    }

    /* Mobile Close "X" Button (Pseudo-element) */
    .navbar::before {

        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 3rem;
        color: #333;
        cursor: pointer;
        line-height: 1;
    }

    /* Stack Links Vertically */
    .nav-links {
        display: flex !important;
        position: static !important;
        box-shadow: none !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        gap: 0 !important;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-link {
        padding: 1.2rem 2rem;
        font-size: 1.05rem;
        justify-content: space-between;
        width: 100%;
    }

    /* Show Mobile Menu Button */
    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Collapsible Submenus */
    .mega-menu,
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        /* Hidden by default, toggled via JS class */
        padding: 0;
        border: none;
        background: #f9f9f9;
    }

    .nav-item.active .mega-menu,
    .nav-item.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mega-column {
        padding: 1.5rem 2rem;
        border-bottom: 1px solid #eee;
    }

    .mega-list a,
    .dropdown-menu li a {
        padding: 0.8rem 0;
    }

    /* Hide Desktop Button in Header Actions if desired, or keep it */
    .header-actions .nav-btn {
        display: none;
        /* Often hidden on mobile to save space */
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Carousel Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #f0f0f0;
}

.carousel-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    /* Centering content */
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    /* Very Light overlay for modern feel */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 1rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #000;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    /* subtle white glow to stand out */
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gold-text {
    color: var(--accent-gold);
    font-style: normal;
}

/* Carousel Controls */
.carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.carousel-dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    color: white;
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Page Headers */
.page-header {
    padding-top: 10rem;
    padding-bottom: 4rem;
    text-align: center;
    background: #f8f9fa;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    border: 1px solid rgba(204, 0, 0, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #111;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service-card {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align for cleaner look */
    justify-content: flex-start;
    text-align: left;
    background: #ffffff;
    border: 1px solid #eee;
    padding: 2.5rem;
    transition: var(--transition-fast);
    position: relative;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
    /* Clean shadow only */
}

.card-icon {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    background: rgba(204, 0, 0, 0.05);
    /* Light red tint bg */
    padding: 1rem;
    border-radius: 50%;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #000;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: 10rem 0;
    background: #fff;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.image-wrapper {
    box-shadow: 20px 20px 0px #eee;
    /* Modern shadow effect */
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    /* Removed grayscale */
    transition: var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.feature-list li {
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: #f8f9fa;
    /* Light grey bg */
    border-top: 1px solid #eee;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-line {
    background: linear-gradient(90deg, var(--accent-gold) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.process-number {
    color: #ddd;
    /* Light grey */
}

.process-item:hover .process-number {
    color: var(--accent-gold);
}

.process-item h3 {
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    /* Dark footer provides good anchor */
    color: #aaa;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer h4 {
    color: #fff;
}

.footer-col a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations - Updated to transition-based system */
.fade-up {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    animation: none !important;
}

.fade-up.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.2s;
}

/* same delay? fixing */
.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        /* Hide for mobile default, toggle via JS */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 1rem;
    }

    .next-btn {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* =========================================
   New Footer Design
   ========================================= */
.footer-new {
    background-color: #000000;
    color: #cccccc;
    padding: 5rem 0 2rem 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Column 1: Brand */
.footer-logo {
    max-width: 100px;
    margin-bottom: 1.5rem;
}

.address-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #bbb;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.contact-info i {
    color: #fff;
    /* Icons are white */
}

/* Headings */
.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    /* "Support", "Company" */
}

/* Links Lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 15px;
}

/* Custom Bullet */
.footer-links li::before {
    content: '•';
    color: #666;
    /* Grey bullet */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Newsletter */
.newsletter-col p {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.newsletter-form .form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    background: #f4f4f4;
    border: none;
    outline: none;
    font-size: 0.9rem;
    color: #333;
    border-radius: 2px;
}

.newsletter-btn {
    width: 100%;
    background-color: #cc0000;
    color: #fff;
    font-weight: 700;
    padding: 12px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: background 0.3s;
    border-radius: 2px;
}

.newsletter-btn:hover {
    background-color: #a30000;
}

/* Social Row */
.footer-social-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #222;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Bottom Row */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #888;
}

.policy-links a {
    color: #888;
    margin-left: 2rem;
    transition: 0.3s;
}

.policy-links a:hover {
    color: #fff;
}

/* Designer Text */
.designer-text {
    font-size: 0.85rem;
    color: #888;
}

.designer-text a:hover {
    text-decoration: underline !important;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}


@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .policy-links a {
        margin: 0 10px;
    }
}

.course-card {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    /* Stronger shadow on hover */
    border-color: transparent;
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(204, 0, 0, 0.05);
    /* Light red accent bg */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.course-card:hover .course-icon-wrapper {
    background: var(--accent-gold);
    color: #ffffff;
    transform: rotateY(180deg);
    /* Playful interaction */
}

.course-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.course-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    /* Push the link to bottom if card height is fixed */
}

.course-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    /* Push to bottom */
}

.course-link i {
    transition: transform 0.3s ease;
}

.course-card:hover .course-link i {
    transform: translateX(5px);
}

/* Improved Process/Roadmap Section */
.process-section {
    padding: 10rem 0;
    background: #ffffff;
    border-top: none;
    position: relative;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-top: 6rem;
    position: relative;
    z-index: 1;
}

.process-item {
    position: relative;
    text-align: left;
    padding-top: 3rem;
}

/* Connecting Line at the top - Desktop only */
.process-line {
    display: none;
}

@media (min-width: 993px) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: #e0e0e0;
        z-index: 0;
    }
}

.process-icon-box {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: absolute;
    top: -25px;
    left: 0;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-item:hover .process-icon-box {
    background: var(--accent-gold);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2);
}

.process-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
}

.process-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}


/* Success Stories (Testimonials) - Grid Version */
.testimonials-section {
    background: #ffffff;
    padding: 8rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Enhancing existing service-card to look like testimonial card if class not changed, or adding new class */
.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 2.5rem;
    border-radius: 8px;
    /* Clean radius */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
    /* Push author down */
}

/* Reuse existing h4 styles but specific */
.testimonial-card h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
    margin-top: auto;
    /* Push to bottom */
}

.testimonial-card span {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* Lift effect */
}


/* Training Advantage Section - Clean Grid */
.advantage-section {
    padding: 8rem 0;
    background: #f8f9fa;
    /* Light background to separate sections */
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: left;
    margin-top: 4rem;
}

.advantage-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.advantage-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.cta-title {
    font-size: 3rem;
    /* Bold and big */
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: none;
    /* Sentence case 'Stop Searching...' */
}

.cta-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.large-btn {
    padding: 1.2rem 3.5rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    border-radius: 4px;
}

/* Footer Improvements */
.footer {
    background-color: #111;
    /* Dark footer */
    color: #999;
    padding-top: 6rem;
    border-top: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    /* 4 columns */
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-col a {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: block;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-brand p {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links a {
    border-color: #333;
    /* Darker border for social */
    color: #999;
}

.social-links a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Responsive adjustments */
@media (max-width: 992px) {

    .testimonial-grid,
    .process-grid,
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {

    .testimonial-grid,
    .process-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2.2rem;
    }

}

/* Internship Benefits / Advantage Section Styles (Added) */
.advantage-item {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(204, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #fff5f5;
    /* Light red bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.advantage-item:hover .benefit-icon {
    background: var(--accent-gold);
    color: #fff;
    transform: rotateY(360deg);
}

.advantage-item h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.advantage-item p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Course Grid Layout */
.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Ensure course cards stretch to fill grid cell height */
.course-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card p {
    flex-grow: 1;
    /* Pushes the button to the bottom */
}

/* Responsive adjustments for Course Grid */
@media (max-width: 992px) {
    .course-grid {
        grid-template-columns: 1fr;
        /* Stack on smaller screens */
        gap: 2rem;
    }
}

/* Internship Program Structure (New) */
.structure-section {
    padding: 8rem 0;
    text-align: center;
    background: #fff;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 5rem;
    position: relative;
    text-align: left;
}

/* Horizontal Line */
.timeline-grid::before {
    content: '';
    position: absolute;
    top: 5px;
    /* Adjust to align with top of items or numbers */
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    z-index: 0;
}

.timeline-item {
    position: relative;
    padding: 2rem 2rem 0 0;
    /* The item sits below the line effectively */
}

/* The Number Styling */
.timeline-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #cc0000;
    /* Red as requested */
    display: inline-block;
    margin-bottom: 1.5rem;
    line-height: 1;
    background: #fff;
    /* Mask the line behind number */
    padding-right: 15px;
    position: relative;
    z-index: 1;
    margin-top: -30px;
    /* Pull up to sit on line */
}

.timeline-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.8rem;
}

.timeline-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Updated Internship Benefits Section (List Style) */
.internship-benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: left;
    margin-top: 4rem;
}

.benefit-list-item h3 {
    font-size: 1.8rem;
    font-weight: 400;
    /* Lighter weight as seen in image */
    color: wheat;
    margin-bottom: 0.2rem;
}

.benefit-list-item p {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Responsive adjustments for Internship Page */
@media (max-width: 992px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .timeline-grid::before {
        display: none;
        /* Hide line on tablet/mobile */
    }

    .internship-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .internship-benefits-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* New Hero Slide Classes replacing inline styles */
.hero-slide-1 {
    background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-slide-2 {
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1471&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-slide-3 {
    background-image: url('https://images.unsplash.com/photo-1531482615713-2afd69097998?q=80&w=1470&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-cta-wrap {
    flex-wrap: wrap;
}


/* Internship Page Cleanups */
.about-description {
    max-width: 1000px;
    margin: 0 auto 5rem auto;
}

.description-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.description-text {
    margin-bottom: 1.5rem;
}

.value-section {
    background: #fdfdfd;
    padding: 6rem 0;
}

.cta-padded {
    padding: 5rem 0;
}

/* =========================================
   IMPROVED FOOTER DESIGN (RESPONSIVE)
   ========================================= */

.footer-new {
    background-color: #000000;
    /* Deep black as requested */
    color: #ffffff;
    padding: 5rem 0 2rem;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Column */
.footer-logo {
    /* height: 80px; Bigger logo */
    margin-bottom: 1.5rem;
    display: block;
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.address-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: #fff;
    font-size: 1rem;
}

.contact-info i {
    color: #fff;
    /* White icons */
    font-size: 1.1rem;
}

/* Links Columns */
.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: capitalize;
    /* 'Support' not 'SUPPORT' */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '�';
    color: #666;
    /* Bullet color */
    margin-right: 8px;
    font-size: 1.2rem;
    line-height: 0;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Newsletter */
.newsletter-col p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    background: #f4f4f4;
    /* Light gray input */
    border: none;
    border-radius: 4px;
    color: #333;
    font-size: 0.9rem;
    width: 100%;
}

.newsletter-btn {
    padding: 1rem;
    background: #fff;
    color: #000;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

.newsletter-btn:hover {
    background: #e0e0e0;
}

/* Mobile Responsive Layout */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 Columns initially */
        gap: 2rem;
    }

    .brand-col {
        grid-column: 1 / -1;
        /* Brand takes full width */
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1.5rem auto;
    }

    .newsletter-col {
        grid-column: 1 / -1;
        /* Newsletter takes full width */
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* Still 2 columns for Support/Company */
        gap: 1.5rem;
    }

    .brand-col,
    .newsletter-col {
        grid-column: 1 / -1;
    }

    /* Ensure Brand and Newsletter are centered */
    .brand-col {
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        height: 70px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center contact items */
    }

    /* Support and Company align left in their columns, but centered relative to screen? 
       Actually 2 column grid works well. */
}


/* Newsletter Form Fixes */
.newsletter-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
}

.newsletter-form input {
    width: 100%;
    border: 1px solid #333;
}

.newsletter-form input:focus {
    border-color: #fff;
    outline: none;
}


/* Improved Navbar Design (Overrides) */
.nav-link {
    font-weight: 500 !important;
    gap: 0.5rem !important;
    letter-spacing: 0.02em !important;
}

.nav-btn.btn-primary {
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 10px rgba(204, 0, 0, 0.2) !important;
}

.nav-btn.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(204, 0, 0, 0.3) !important;
}


/* =========================================
   FINAL PREMIUM NAVBAR POLISH
   ========================================= */

/* Glassmorphism Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    /* Softer shadow */
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Sophisticated Link Hover (Underline Animation) */
.nav-link {
    position: relative;
    padding-bottom: 5px;
    /* Space for underline */
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #000;
    /* Darker text on hover */
}

/* Premium Button Styling */
.nav-btn.btn-primary {
    background: linear-gradient(135deg, #cc0000 0%, #a30000 100%);
    /* Gradient depth */
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.25) !important;
    border: none;
    padding: 0.7rem 1.8rem !important;
    /* Balanced padding */
    letter-spacing: 0.5px !important;
}

.nav-btn.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.35) !important;
    transform: translateY(-2px) !important;
}

/* Dropdown Animation Polish */
.dropdown-menu,
.mega-menu {
    border-top: none;
    /* Remove harsh top border */
    border-radius: 8px;
    /* Rounded corners */
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    /* Clean shadow */
    margin-top: 15px;
    /* More space */
}

.dropdown-menu::before,
.mega-menu::before {
    /* Little arrow pointing up if desired, or just space */
    content: '';
    position: absolute;
    top: -5px;
    left: 2rem;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.04);
}

.dropdown-menu li a {
    border-radius: 6px;
    /* Rounded hover items */
}

.dropdown-menu li a:hover {
    background-color: #fff5f5;
    /* Light red/pink tint */
    color: #cc0000;
    padding-left: 1.5rem;
    /* Less movement */
}

/* =========================================
   TEAM PAGE STYLES
   ========================================= */

.team-section {
    padding: 8rem 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.team-image-wrapper {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-gold);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.team-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Optional Social Links Overlay */
.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    opacity: 0.8;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: 0.3s;
}

.team-social a:hover {
    background: var(--accent-gold);
    color: #fff;
}


/* =========================================
   TESTIMONIALS PAGE PREMIUM STYLES
   ========================================= */

.testimonials-page-section {
    padding: 8rem 0;
    background: #fdfdfd;
}

.testimonials-masonry {
    column-count: 3;
    column-gap: 2rem;
}

.testimonial-premium-card {
    background: #fff;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    margin-bottom: 2rem;
    break-inside: avoid;
    /* Prevent breaking across columns */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f5f5f5;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-premium-card::before {
    content: '\201C';
    /* Quote mark */
    font-family: 'Georgia', serif;
    font-size: 5rem;
    color: rgba(204, 0, 0, 0.05);
    /* Very light red */
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.tc-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
}

.tc-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.tc-info span {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Responsive Masonry */
@media (max-width: 992px) {
    .testimonials-masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .testimonials-masonry {
        column-count: 1;
    }
}


/* =========================================
   IT SERVICES PAGE STYLES
   ========================================= */

.it-services-section {
    padding: 8rem 0;
    background: #fdfdfd;
}

.it-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.it-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.it-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #fff5f5;
    /* Light red */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--accent-gold);
    transition: 0.3s;
}

.it-service-card:hover .it-icon-wrapper {
    background: var(--accent-gold);
    color: #fff;
    transform: rotateY(180deg);
}

.it-service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.it-service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.it-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.it-service-list li {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.it-service-list li::before {
    content: '\2022';
    color: var(--accent-gold);
    font-size: 1.2rem;
    line-height: 0;
}

/* =========================================
   CONTACT PAGE PREMIUM STYLES
   ========================================= */

.contact-premium-section {
    padding: 6rem 0 8rem;
    background: #f8f9fa;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-panel {
    background: #1a1a1a;
    /* Dark panel */
    color: #fff;
    padding: 3rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gold);
}

.contact-details-list {
    margin-top: 3rem;
}

.info-item {
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.info-content p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.info-content a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.info-content a:hover {
    color: var(--accent-gold);
}

.contact-form-premium {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-floating label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.form-input-premium {
    width: 100%;
    padding: 1rem 1.2rem;
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    transition: 0.3s;
}

.form-input-premium:focus {
    border-color: var(--accent-gold);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


/* 2-Column Grid for IT Services */
.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .services-grid-2 {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   IT SERVICES PREMIUM ENHANCEMENTS
   ========================================= */

.it-services-section {
    background: linear-gradient(180deg, #fdfdfd 0%, #f4f4f4 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.it-services-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.it-service-card {
    border: none;
    /* Remove standard border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    background: #fff;
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.it-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.it-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.it-service-card:hover::after {
    transform: scaleX(1);
}

/* Icon Polish */
.it-icon-wrapper {
    width: 70px;
    /* Larger */
    height: 70px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
}

.it-service-card:hover .it-icon-wrapper {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
    transform: rotateY(0) scale(1.1);
    /* Scale up instead of rotate */
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.2);
}

/* List Polish */
.it-service-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.it-service-list li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-gold);
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 3px;
}


/* =========================================
   IMPROVED IMPACT SECTION
   ========================================= */

.value-section {
    background: #1a1a1a !important;
    /* Dark background override */
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.value-section .section-title {
    color: #fff !important;
    /* Force title white */
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-icon-wrapper {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.value-number {
    display: block;
    font-size: 3.5rem;
    /* Larger font */
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1;
}

.value-label {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   MISSION & VISION PREMIUM STYLES
   ========================================= */

.mission-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mission-card {
    background: #fdfdfd;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    position: relative;
    z-index: 2;
}

/* Watermark Icons */
.mission-card::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    bottom: -1rem;
    right: 1rem;
    z-index: 1;
    transform: rotate(-15deg);
    transition: all 0.4s ease;
}

.mission-card.mission::after {
    content: '\f140';
    /* Bullseye */
}

.mission-card.vision::after {
    content: '\f06e';
    /* Eye */
}

.mission-card:hover::after {
    color: rgba(204, 0, 0, 0.08);
    /* Light accent color on hover */
    transform: rotate(0deg) scale(1.1);
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* Google Logo Testimonial Avatar Adjustment */
.tc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 8px !important;
    /* Square with rounded corners instead of circle */
    object-fit: contain !important;
    /* Contain instead of cover for logo */
    background: #fff;
    padding: 8px;
    border: 1px solid #eee;
}


/* =========================================
   CONTACT PAGE ENHANCEMENTS
   ========================================= */

.contact-premium-section {
    padding: 8rem 0 10rem;
    /* More bottom padding since map is removed */
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-info-panel {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    /* Gradient dark */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-info-panel h3 {
    font-size: 2rem;
    font-weight: 700;
}

.info-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.info-icon {
    background: var(--accent-gold);
    color: #1a1a1a;
}

.contact-form-premium {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-premium h3 {
    font-size: 2rem;
    font-weight: 700;
}

.form-input-premium:focus {
    box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.08);
}

/* Submit Button Enhancement */
.contact-form-premium .btn-primary {
    background: linear-gradient(135deg, #cc0000 0%, #a30000 100%);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-form-premium .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
}

/* =========================================
   INTERNSHIP DOMAINS PREMIUM ENHANCEMENT
   ========================================= */

.internship-domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.domain-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid #f5f5f5;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, #ff6b6b 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.domain-card:hover::before {
    transform: scaleX(1);
}

.domain-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.domain-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-gold);
    transition: all 0.4s ease;
}

.domain-card:hover .domain-icon {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #a30000 100%);
    color: #fff;
    transform: rotateY(360deg);
}

.domain-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.domain-card:hover h3 {
    color: var(--accent-gold);
}


/* =========================================
   LEGAL PAGES STYLING
   ========================================= */

.legal-content-section {
    padding: 6rem 0 8rem;
    background: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.legal-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin: 1.5rem 0 1rem;
}

.legal-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.legal-block ul {
    margin: 1rem 0 1rem 2rem;
    list-style: disc;
}

.legal-block li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-block a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-block a:hover {
    color: #a30000;
}

.legal-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}


/* =========================================
   ABOUT PAGE FEATURE CARDS ENHANCEMENT
   ========================================= */

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    border: 2px solid #f5f5f5;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold) 0%, #ff6b6b 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.about-feature-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: all 0.4s ease;
}

.about-feature-card:hover .feature-icon-box {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #a30000 100%);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.about-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.about-feature-card:hover h3 {
    color: var(--accent-gold);
}

.about-feature-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 1400px) {
    .about-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure cta-container has animation properties if it's missing them */
.cta-container {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-container.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Service Card Animation */
.service-card {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-card.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Course Card Animation */
.course-card {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.course-card.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Process Item Animation */
.process-item {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.process-item.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Advantage Item Animation */
.advantage-item {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.advantage-item.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Testimonial Card Animation */
.testimonial-card {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.testimonial-card.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
/* Side Slide Animations */
.fade-in-left,
.about-content {
    opacity: 0 !important;
    transform: translateX(-60px) !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.fade-in-left.visible,
.about-content.visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.fade-in-right,
.about-image {
    opacity: 0 !important;
    transform: translateX(60px) !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.fade-in-right.visible,
.about-image.visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Background Images for Testimonials and CTA Sections */
.testimonials-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.testimonials-section .section-title,
.testimonials-section .testimonial-card {
    color: #fff;
}

.testimonials-section .testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-section .testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-section .testimonial-author h4,
.testimonials-section .testimonial-author span {
    color: #fff;
}

.cta-section {
    background-image: linear-gradient(rgba(204, 0, 0, 0.85), rgba(163, 0, 0, 0.85)), 
                      url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.cta-section .cta-title,
.cta-section .cta-text {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Bigger Logo */
.logo img {
    height: 60px !important;
    width: auto;
}

/* Value Item Animation */
.value-item {
    opacity: 0 !important;
    transform: translateY(40px) scale(0.9) !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.value-item.visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Center align last 2 domain cards */
.internship-domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.internship-domains-grid .domain-card:nth-last-child(-n+2) {
    grid-column: span 1;
}

/* If there are exactly 5 or 6 cards, center the last row */
@media (min-width: 768px) {
    .internship-domains-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Center last 2 cards when there are 5 total */
    .internship-domains-grid .domain-card:nth-child(4) {
        grid-column: 1 / 2;
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .internship-domains-grid .domain-card:nth-child(5) {
        grid-column: 2 / 3;
    }
    
    .internship-domains-grid .domain-card:nth-child(6) {
        grid-column: 3 / 4;
        margin-left: 1rem;
        margin-right: auto;
    }
}

/* Page Header Background Images */
.page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 8rem 0 4rem;
    color: #fff;
}

.page-header .page-title,
.page-header .page-subtitle {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Specific page header backgrounds */
body[class*='about'] .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1600&auto=format&fit=crop');
}

body[class*='services'] .page-header,
body[class*='it-services'] .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1600&auto=format&fit=crop');
}

body[class*='internship'] .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop');
}

body[class*='contact'] .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=1600&auto=format&fit=crop');
}

body[class*='testimonial'] .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1531482615713-2afd69097998?q=80&w=1600&auto=format&fit=crop');
}

body[class*='team'] .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1600&auto=format&fit=crop');
}

/* Updated Page-Specific Header Backgrounds */
body.page-about .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1600&auto=format&fit=crop') !important;
}

body.page-services .page-header,
body.page-it-services .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1600&auto=format&fit=crop') !important;
}

body.page-internship .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop') !important;
}

body.page-contact .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=1600&auto=format&fit=crop') !important;
}

body.page-testimonials .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1531482615713-2afd69097998?q=80&w=1600&auto=format&fit=crop') !important;
}

body.page-team .page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1600&auto=format&fit=crop') !important;
}

/* Domain Card Animation */
.domain-card {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.domain-card.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Course Card with Images */
.course-card {
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.course-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

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

.course-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.3) 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
}

.course-content h3 {
    color: #fff !important;
    margin-bottom: 0.8rem;
}

.course-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 1.5rem;
}

.course-content .course-icon-wrapper {
    background: rgba(204, 0, 0, 0.9);
    margin-bottom: 1rem;
}

.course-content .course-link {
    color: #fff;
    font-weight: 600;
}

/* Training Roadmap Section Background */
.process-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                      url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 5rem 0;
}

.process-section .section-title,
.process-section .section-badge {
    color: #fff;
}

.process-section .process-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.process-section .process-item h3 {
    color: #000;
}

.process-section .process-item p {
    color: #666;
}

/* Fix Domain Card Alignment and Size */
.internship-domains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.domain-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    height: 100%;
    padding: 2rem 1.5rem;
}

.domain-card h3 {
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .internship-domains-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .internship-domains-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix Training Roadmap Card Text Alignment */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    min-height: 250px;
    height: 100%;
}

.process-item h3 {
    text-align: center;
    margin: 1rem 0;
    min-height: 30px;
}

.process-item p {
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.process-icon-box {
    margin: 0 auto 1rem;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Domain Card Sizing - Override Previous */
.internship-domains-grid .domain-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 220px !important;
    height: 100% !important;
    padding: 2.5rem 2rem !important;
}

.internship-domains-grid .domain-card .domain-icon {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.internship-domains-grid .domain-card h3 {
    text-align: center !important;
    min-height: 65px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    font-size: 1.1rem !important;
}

/* Prevent Horizontal Scroll on Mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    
    html {
        overflow-x: hidden !important;
    }
    
    .container {
        overflow-x: hidden !important;
    }
}

/* Modern Internship Domains Section */
.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.modern-domain-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.modern-domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff4444);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.modern-domain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(204, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.domain-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.domain-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #ff4444);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.modern-domain-card:hover .domain-icon-modern {
    transform: rotate(5deg) scale(1.1);
}

.domain-card-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #000;
    font-weight: 700;
}

.domain-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.domain-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-tag {
    background: rgba(204, 0, 0, 0.08);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.feature-tag i {
    font-size: 0.7rem;
}

.modern-domain-card:hover .feature-tag {
    background: var(--primary-color);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-domains-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .modern-domains-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-domain-card {
        padding: 2rem;
    }
    
    .domain-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .domain-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* Training Model & Tools Section Background - Services Page */
body.page-services .process-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)), 
                      url('https://images.unsplash.com/photo-1531482615713-2afd69097998?q=80&w=1600&auto=format&fit=crop') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    position: relative;
    padding: 5rem 0 !important;
}

body.page-services .process-section .section-title,
body.page-services .process-section .section-badge {
    color: #fff !important;
}

body.page-services .process-section .process-item {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

body.page-services .process-section .process-item h3 {
    color: var(--primary-color) !important;
    font-weight: 700;
}

body.page-services .process-section .process-item p {
    color: #333 !important;
}

body.page-services .process-section .process-line {
    background: linear-gradient(90deg, var(--primary-color), #ff4444);
}

/* Fix Text Alignment in Modern Domain Cards */
.modern-domain-card {
    text-align: left;
}

.domain-card-header {
    align-items: flex-start !important;
}

.domain-card-header h3 {
    text-align: left !important;
    line-height: 1.3 !important;
    word-wrap: break-word;
    hyphens: none;
    min-height: auto !important;
}

.domain-description {
    text-align: left !important;
    line-height: 1.8 !important;
}

.domain-features {
    justify-content: flex-start !important;
}

/* Ensure consistent card heights */
.modern-domains-grid .modern-domain-card {
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.domain-card-header {
    margin-bottom: 1.2rem !important;
}

.domain-description {
    flex-grow: 1;
    margin-bottom: 1.2rem !important;
}

/* Better spacing for mobile */
@media (max-width: 768px) {
    .domain-card-header {
        align-items: center !important;
    }
    
    .domain-card-header h3 {
        text-align: center !important;
    }
    
    .domain-description {
        text-align: center !important;
    }
    
    .domain-features {
        justify-content: center !important;
    }
}

/* Fix Domain Icons Visibility */
.domain-icon-modern {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(135deg, var(--primary-color), #ff4444) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 2rem !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.domain-icon-modern i {
    color: #fff !important;
    font-size: 2rem !important;
    display: block !important;
    line-height: 1 !important;
}

/* Ensure Font Awesome is loaded */
.domain-icon-modern .fab,
.domain-icon-modern .fas {
    font-family: 'Font Awesome 5 Brands', 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
}

.domain-card-header {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
}


/* Force Icon Visibility - Override All Conflicts */
.modern-domain-card .domain-icon-modern {
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
}

.modern-domain-card .domain-icon-modern::before {
    content: '' !important;
    display: none !important;
}

.modern-domain-card .domain-icon-modern i::before {
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
    font-size: 2rem !important;
}

/* Specific icon fixes */
.modern-domain-card .fa-python::before { content: '\f3e2' !important; }
.modern-domain-card .fa-java::before { content: '\f4e4' !important; }
.modern-domain-card .fa-code::before { content: '\f121' !important; }
.modern-domain-card .fa-node-js::before { content: '\f3d3' !important; }
.modern-domain-card .fa-php::before { content: '\f457' !important; }
.modern-domain-card .fa-android::before { content: '\f17b' !important; }


/* Updated Hover Effects - Highlight Specializations */
.modern-domain-card:hover .feature-tag {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}

/* Remove icon rotation since icons are removed */
.modern-domain-card:hover .domain-icon-modern {
    transform: none !important;
}

/* Update header without icon */
.domain-card-header {
    display: block !important;
    margin-bottom: 1.5rem !important;
}

.domain-card-header h3 {
    font-size: 1.5rem !important;
    color: var(--primary-color) !important;
    margin: 0 !important;
    font-weight: 700 !important;
}

/* Enhanced card hover */
.modern-domain-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 48px rgba(204, 0, 0, 0.2) !important;
}

/* Feature tag default state */
.feature-tag {
    background: rgba(204, 0, 0, 0.1) !important;
    color: var(--primary-color) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}


/* Fix Feature Tag Text Visibility on Hover */
.modern-domain-card .feature-tag {
    background: rgba(204, 0, 0, 0.1) !important;
    color: var(--primary-color) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 25px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.modern-domain-card .feature-tag i {
    color: var(--primary-color) !important;
    font-size: 0.75rem !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.modern-domain-card:hover .feature-tag {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 16px rgba(204, 0, 0, 0.35) !important;
    border-color: var(--primary-color) !important;
}

.modern-domain-card:hover .feature-tag i {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure text doesn't disappear */
.modern-domain-card:hover .feature-tag * {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}


/* Remove All Hover Effects from Domain Cards */
.modern-domain-card:hover {
    transform: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border-color: transparent !important;
}

.modern-domain-card:hover::before {
    transform: scaleX(0) !important;
}

.modern-domain-card:hover .feature-tag {
    background: rgba(204, 0, 0, 0.1) !important;
    color: var(--primary-color) !important;
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.modern-domain-card:hover .feature-tag i {
    color: var(--primary-color) !important;
}

.modern-domain-card:hover .feature-tag * {
    color: var(--primary-color) !important;
}

/* Keep cards static */
.modern-domain-card {
    transition: none !important;
}


/* Add Animations and Simple Zoom Hover Effect */
.modern-domain-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    opacity: 0;
    transform: translateY(30px);
}

.modern-domain-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Simple Zoom In Hover Effect */
.modern-domain-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: transparent !important;
    z-index: 10;
}

/* Remove previous hover overrides */
.modern-domain-card:hover::before {
    transform: scaleX(0) !important;
}

/* Keep feature tags static on hover */
.modern-domain-card:hover .feature-tag {
    background: rgba(204, 0, 0, 0.1) !important;
    color: var(--primary-color) !important;
    transform: none !important;
    box-shadow: none !important;
}

.modern-domain-card:hover .feature-tag i,
.modern-domain-card:hover .feature-tag * {
    color: var(--primary-color) !important;
}

/* Stagger animation delays */
.modern-domain-card {
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.modern-domain-card:hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

