/* ===== HOME PAGE SPECIFIC STYLES ===== */

/* Hero Slider Section */
.hero-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Course Search Container */
.course-search-container {
    margin-bottom: 2rem;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 500px;
}

.search-box input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: #333;
}

.search-box input::placeholder {
    color: #999;
}

.search-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 18px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1.1rem;
}

.search-btn:hover {
    background: #5a6fd8;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: #ffd700;
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Hero Visual - Promotional Graphic */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promotional-graphic {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    max-width: 400px;
}

.graphic-content {
    position: relative;
    z-index: 2;
}

.location-announcement {
    margin-bottom: 2rem;
}

.announcement-text {
    display: block;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.city-name {
    color: #667eea;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.graphic-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: #ffd700;
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    background: #667eea;
    bottom: 30px;
    left: 20px;
    animation-delay: 2s;
}

.shape-3 {
    width: 30px;
    height: 30px;
    background: #ff6b6b;
    top: 50%;
    right: 10px;
    animation-delay: 4s;
}

.star-element {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 2rem;
    animation: rotate 8s linear infinite;
}

.location-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

.location-info i {
    font-size: 1.2rem;
}

/* Lead Generation Form Section - ONE LINE LAYOUT */
.lead-form-section {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    z-index: 999;
    margin: 0;
}

.form-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* AI Chat Widget */
.ai-chat-widget {
    position: absolute;
    top: -20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 8px 15px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.ai-chat-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.ai-chat-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.ai-chat-label {
    color: #333;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* AI Chat Modal */
.ai-chat-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.ai-chat-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

.ai-chat-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chat-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ai-chat-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ai-chat-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.ai-status {
    font-size: 0.9rem;
    opacity: 0.9;
}

.close-ai-chat {
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    transition: opacity 0.3s ease;
}

.close-ai-chat:hover {
    opacity: 0.7;
}

.ai-chat-modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.ai-welcome-message {
    margin-bottom: 1.5rem;
}

.ai-welcome-message p {
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}

.ai-welcome-message ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.ai-welcome-message li {
    margin-bottom: 0.5rem;
    color: #666;
}

.ai-chat-input {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.ai-chat-input input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 25px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.ai-chat-input input:focus {
    border-color: #667eea;
}

.ai-chat-input button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-input button:hover {
    transform: scale(1.05);
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.lead-generation-form {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Single row layout for all form fields */
.form-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
}

.form-group {
    flex: 1;
    min-width: 0;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    color: #333;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 120px;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Floating Contact Icons */
.floating-contact {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.phone-icon {
    background: #25d366;
}

.whatsapp-icon {
    background: #25d366;
}

.email-icon {
    background: #667eea;
}

.floating-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Chat Support */
.chat-support {
    position: fixed;
    bottom: 70px;
    right: 30px;
    background: white;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-support:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.chat-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #25d366;
    border-radius: 50%;
    border: 2px solid white;
}

.chat-label {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: #ff6b35;
    margin: 0 auto;
    border-radius: 2px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.program-title {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* MERN Stack Icon */
.mern-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.mern-shapes .shape {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 4px;
}

.mern-shapes .red { background: #e74c3c; top: 0; left: 0; }
.mern-shapes .green { background: #27ae60; top: 0; right: 0; }
.mern-shapes .blue { background: #3498db; bottom: 0; left: 0; }
.mern-shapes .light-blue { background: #5dade2; bottom: 0; right: 0; }

.mern-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Cybersecurity Icon */
.shield-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9b59b6, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Java Icon */
.coffee-cup {
    width: 100%;
    height: 100%;
    background: #5dade2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
}

.steam {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ecf0f1;
    border-radius: 50%;
    opacity: 0.7;
}

/* Marketing Icon */
.marketing-elements {
    width: 100%;
    height: 100%;
    background: #5dade2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
}

.marketing-elements i {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.marketing-elements i:nth-child(1) { top: 15px; left: 15px; animation-delay: 0s; }
.marketing-elements i:nth-child(2) { top: 15px; right: 15px; animation-delay: 1s; }
.marketing-elements i:nth-child(3) { bottom: 15px; left: 50%; transform: translateX(-50%); animation-delay: 2s; }

/* UI/UX Icon */
.uiux-square {
    width: 100%;
    height: 100%;
    background: #34495e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.uiux-text {
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.uiux-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

.uiux-elements i {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* .NET Icon */
.dotnet-logo {
    width: 100%;
    height: 100%;
    background: #0078d4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.microsoft {
    font-size: 0.6rem;
    opacity: 0.8;
    margin-bottom: 2px;
}

.dotnet-text {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Data Science Icon */
.atom-structure {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nucleus {
    width: 40px;
    height: 40px;
    background: #5dade2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

.orbit {
    position: absolute;
    border: 2px solid #5dade2;
    border-radius: 50%;
    opacity: 0.6;
}

.orbit-1 { width: 60px; height: 60px; }
.orbit-2 { width: 70px; height: 70px; }
.orbit-3 { width: 80px; height: 80px; }

/* Python Icon */
.python-logo {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snake {
    position: absolute;
    width: 60px;
    height: 8px;
    border-radius: 4px;
    animation: pythonMove 4s ease-in-out infinite;
}

.snake-1 {
    background: #3498db;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.snake-2 {
    background: #f1c40f;
    transform: rotate(-45deg);
    animation-delay: 2s;
}

@keyframes pythonMove {
    0%, 100% { transform: rotate(45deg) scale(1); }
    50% { transform: rotate(45deg) scale(1.1); }
}

/* Analytics Icon */
.analytics-charts {
    width: 100%;
    height: 100%;
    background: #5dade2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.bar-chart {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: end;
    gap: 3px;
    height: 30px;
}

.bar {
    width: 4px;
    background: white;
    border-radius: 2px;
}

.bar-1 { height: 20px; }
.bar-2 { height: 25px; }
.bar-3 { height: 15px; }

.analytics-charts .fa-search {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1rem;
}

.line-graph {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 20px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    border-radius: 0 0 0 10px;
}

/* AWS Icon */
.aws-logo {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.aws-text {
    color: #232f3e;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: lowercase;
    z-index: 2;
}

.aws-swoosh {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: #ff9900;
    border-radius: 0 0 8px 8px;
}

/* Testing Icon */
.testing-elements {
    width: 100%;
    height: 100%;
    background: #5dade2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.testing-elements i {
    position: absolute;
    font-size: 1.2rem;
}

.testing-elements i:nth-child(1) { top: 15px; left: 15px; }
.testing-elements i:nth-child(2) { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.testing-elements i:nth-child(3) { bottom: 15px; right: 15px; }

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #667eea;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form button {
    background: #667eea;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #5a6fd8;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design for Home Page */
@media (max-width: 1200px) {
    .form-row {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .form-group {
        min-width: 150px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .search-box {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .promotional-graphic {
        padding: 2rem;
        max-width: 100%;
    }

    .city-name {
        font-size: 2.5rem;
    }

    /* Mobile: Stack form fields vertically */
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group {
        width: 100%;
    }

    .submit-btn {
        width: 100%;
    }

    .floating-contact {
        right: 20px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .chat-support {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Programs Section Mobile */
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .program-card {
        padding: 1rem;
    }
    
    .program-icon {
        width: 60px;
        height: 60px;
    }
    
    .program-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .search-box input {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .search-btn {
        padding: 15px 20px;
    }

    .cta-button.primary,
    .cta-button.secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .promotional-graphic {
        padding: 1.5rem;
    }

    .city-name {
        font-size: 2rem;
    }

    .floating-contact {
        right: 15px;
    }

    .chat-support {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
    }

    .chat-label {
        display: none;
    }
}

/* Client Companies Section */
.client-companies {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.client-companies .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.client-companies .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-companies .title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.client-companies .section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.companies-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-btn {
    background: #007bff;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    z-index: 10;
}

.carousel-btn:hover {
    background: #0056b3;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn i {
    font-size: 1.2rem;
}

.companies-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.companies-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.company-logo {
    flex: 0 0 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.company-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
















.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ff6b35;
    transform: scale(1.2);
}

.indicator:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

/* Responsive Design for Client Companies */
@media (max-width: 768px) {
    .client-companies {
        padding: 3rem 0;
    }
    
    .client-companies .section-title {
        font-size: 2rem;
    }
    
    .companies-carousel {
        max-width: 100%;
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 1rem;
    }
    
    .company-logo {
        flex: 0 0 120px;
        height: 60px;
        padding: 0.8rem;
    }
    
    .companies-track {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .client-companies .section-title {
        font-size: 1.5rem;
    }
    
    .client-companies .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .companies-carousel {
        gap: 0.5rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .company-logo {
        flex: 0 0 100px;
        height: 50px;
        padding: 0.6rem;
    }
    
    .companies-track {
        gap: 0.8rem;
    }
}

/* Top Courses Section */
.top-courses {
    padding: 4rem 0;
    background: #ffffff;
}

.top-courses .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.course-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    background: #fff;
    color: #0d3b66;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 10px;
    border: 2px solid rgba(13, 59, 102, 0.15);
    box-shadow: 0 6px 16px rgba(13, 59, 102, 0.08);
    transition: all 0.2s ease;
}

.course-link:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 59, 102, 0.35);
    box-shadow: 0 10px 22px rgba(13, 59, 102, 0.15);
}

/* Accent underline below title (already styled but ensure spacing) */
.top-courses .title-underline {
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-link {
        font-size: 1rem;
        padding: 0.85rem 1rem;
    }
}

@media (max-width: 480px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section (static grid) */
.testimonials-section { padding: 4rem 0; background: #fff; }
.testimonials-section .section-header { text-align: left; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* Card styles retained */
.testimonial-card {
	background: linear-gradient(180deg, #e9f2ff 0%, #d9ecff 100%);
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(0,0,0,.08);
	padding: 2rem;
	position: relative;
	min-height: 360px;
	display: flex; flex-direction: column;
}

.testimonial-quote-icon { position: absolute; top: 1.25rem; left: 1.5rem; font-size: 5rem; color: rgba(255,166,0,.35); font-family: serif; line-height: .6; }

.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testimonial-avatar { width: 90px; height: 90px; border-radius: 50%; overflow: hidden; border: 6px solid #ff914d; display: flex; align-items: center; justify-content: center; background: #fff; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 1.75rem; margin: 0; color: #0d3b66; font-weight: 800; }
.testimonial-stars span { color: #1bbd50; letter-spacing: 2px; font-size: 1.1rem; }

.testimonial-text { font-size: 1.15rem; line-height: 1.9; color: #2e3a59; margin-top: .25rem; flex: 1; }
.testimonial-link { align-self: flex-end; margin-top: 1rem; color: #ff7a00; font-weight: 800; text-decoration: none; font-size: 1.25rem; }

@media (max-width: 1024px){ .testimonials-grid{ grid-template-columns: repeat(2, 1fr);} .testimonial-card{ padding: 1.5rem; } }
@media (max-width: 768px){ .testimonials-grid{ grid-template-columns: 1fr;} .testimonial-avatar{ width: 72px; height:72px; border-width:5px;} .testimonial-name{ font-size:1.4rem;} .testimonial-text{ font-size:1.05rem;} }