   /* Data Science Course Page Styles */

/* Global Styles */
.ds-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ds-section-heading {
    font-size: 2.5rem;
    color: #2a3990;
    margin-bottom: 20px;
    font-weight: 700;
}

.ds-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ds-section-underline {
    width: 80px;
    height: 4px;
    background: #00c6ff;
    margin: 0 auto;
    border-radius: 2px;
}

.ds-img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Hero Section with Carousel */
.ds-hero-section {
    position: relative;
    margin-top: 80px; /* Add space for fixed header - adjust based on your header height */
    overflow: hidden;
    height: 600px;
}

.ds-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ds-carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.ds-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.ds-carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.ds-carousel-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.ds-hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: rgb(0, 15, 79);
    font-weight: 800;
    animation: ds-fadeInUp 1s ease;
}

.ds-hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    animation: ds-fadeInUp 1s ease 0.2s forwards;
}

.ds-primary-btn {
    display: inline-block;
    background: white;
    color: #2a3990;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: ds-fadeInUp 1s ease 0.4s forwards;
}

.ds-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ds-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.ds-prev-btn {
    left: 20px;
}

.ds-next-btn {
    right: 20px;
}

.ds-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.ds-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ds-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Animations */
@keyframes ds-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .ds-hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .ds-hero-section {
        height: 500px;
    }
    
    .ds-hero-title {
        font-size: 2.5rem;
    }
    
    .ds-hero-tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .ds-hero-section {
        height: 400px;
    }
    
    .ds-hero-title {
        font-size: 2rem;
    }
    
    .ds-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
/* Overview Section */
.ds-overview-section {
    background-color: white;
    padding: 100px 0;
    position: relative;
}

.ds-overview-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ds-overview-text {
    flex: 1;
}

.ds-overview-paragraph {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.ds-overview-image {
    flex: 1;
    position: relative;
}

.ds-overview-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a3990, #5643cc);
    border-radius: 10px;
    transform: rotate(-3deg);
    z-index: -1;
    top: 20px;
    left: -20px;
}

/* Skills Section */
.ds-skills-section {
    background-color: #f5f9ff;
    padding: 100px 0;
}

.ds-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ds-skill-card {
    background: linear-gradient(
    135deg,
    rgba(42, 57, 144, 0.03) 0%,
    rgba(86, 67, 204, 0.08) 25%,
    rgba(158, 68, 209, 0.1) 50%,
    rgba(234, 76, 137, 0.07) 75%,
    rgba(246, 133, 56, 0.05) 100%
), 
radial-gradient(
    circle at 20% 50%,
    rgba(92, 107, 192, 0.08) 0%,
    transparent 50%
),
radial-gradient(
    circle at 80% 70%,
    rgba(158, 68, 209, 0.06) 0%,
    transparent 50%
),
linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.9) 100%
);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ds-skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ds-skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #0056b3 0%, #0a704d 100%);
}

.ds-skill-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2a3990;
    background: linear-gradient(135deg, rgba(42, 57, 144, 0.05), rgba(86, 67, 204, 0.1));
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ds-skill-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2a3990;
}

.ds-skill-description {
    color: #666;
    line-height: 1.6;
}

/* Icon placeholders - replace with your actual icons */
.ds-icon-chart::before { content: "📊"; }
.ds-icon-ai::before { content: "🤖"; }
.ds-icon-model::before { content: "📈"; }
.ds-icon-explore::before { content: "🔍"; }
.ds-icon-experience::before { content: "💼"; }
.ds-icon-communication::before { content: "🗣️"; }
.ds-icon-support::before { content: "🔄"; }
.ds-icon-sessions::before { content: "🎓"; }
.ds-icon-projects::before { content: "💻"; }
.ds-icon-career::before { content: "🚀"; }

/* Technologies Section */
.ds-tech-section {
    background-color: white;
    padding: 100px 0;
}

.ds-tech-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    
}

.ds-tech-category {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, rgba(42, 57, 144, 0.05), rgba(86, 67, 204, 0.1));
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.216);
    transition: all 0.3s ease;
    border: 1px solid rgb(42, 57, 144);
}

.ds-tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ds-tech-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(42, 57, 144, 0.1);
    color: #2a3990;
}

.ds-tech-list {
    list-style: none;
    padding: 0;
}

.ds-tech-item {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.ds-tech-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00c6ff;
    font-weight: bold;
}

/* Benefits Section */
.ds-benefits-section {
    background: linear-gradient(135deg, #0056b3 0%, #0a704d 100%);
    color: white;
    padding: 100px 0;
    position: relative;
}

.ds-benefits-section .ds-section-heading {
    color: white;
}

.ds-benefits-section .ds-section-underline {
    background: white;
}

.ds-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ds-benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ds-benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.ds-benefit-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.ds-benefit-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.ds-benefit-description {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
}

/* CTA Section */
.ds-cta-section {
    background-color: white;
    text-align: center;
    padding: 100px 0;
}

.ds-cta-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2a3990;
}

.ds-cta-text {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.6;
}

.ds-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0056b3 0%, #0a704d 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(42, 57, 144, 0.3);
}

.ds-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(86, 86, 93);
    color: white;
}

/* Animations */
@keyframes ds-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ds-rotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Responsive Styles */

@media (max-width: 992px) {
  
    
    .ds-overview-content {
        flex-direction: column;
    }
    
    .ds-overview-image {
        width: 100%;
        margin-top: 40px;
    }
    
    .ds-section-heading {
        font-size: 2.2rem;
    }
    
   
}

@media (max-width: 768px) {
    .ds-hero-section,
    .ds-overview-section,
    .ds-skills-section,
    .ds-tech-section,
    .ds-benefits-section,
    .ds-cta-section {
        padding: 60px 0;
    }
    
 
    
    .ds-section-heading {
        font-size: 2rem;
    }
    
    .ds-cta-heading {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
  
    
    .ds-section-heading {
        font-size: 1.8rem;
    }
    
    .ds-skill-card, 
    .ds-tech-category, 
    .ds-benefit-card {
        padding: 20px;
    }
    
    .ds-skill-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Contact Section */

/* General Styling */
.support-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}
.support-section .conform {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.inquiry-form {
    max-width: 600px; /* Adjust width if needed */
    width: 100%;
}


/* Info Details & Form Container */
.info-box {
    min-height: 100%; /* Ensures both boxes are the same height */
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.info-icon {
 
    color: #610095;
    display: flex;
    align-items: center;
    justify-content: center;
  
    font-size: 18px;
}

/* Info Details */
.info-details {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-details .info-text {
    margin-left: 15px;
}

.info-text h5 {
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

/* Inquiry Form */
.inquiry-form input,
.inquiry-form textarea {
    border-radius: 10px;
    border: 1px solid #c0bfbf !important;
    padding: 12px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: #610095;
    box-shadow: 0 0 10px rgba(97, 0, 149, 0.3);
}

.inquiry-form button {
    border-radius: 10px;
    background: #610095;
    border: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.inquiry-form button:hover {
    background: #4d0077;
}


#carouselExampleSlidesOnly .carousel-item img {
    display: block !important;
    visibility: visible !important;
}


