* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
   
}

body {
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
   
}

h3 {
    font-size: 28px;
    font-weight: 700;
    color: #EE3422;
    margin-bottom: 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    height: 40px;
}

.logo img {
    height: 100%;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    /*color: #0e3b6c;*/
    color:#EE3422;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    /*color: #b33232;*/
    color:#EE3422;
}

.apply-button {
    /*background-color: #b33232;*/
    background-color: #EE3422;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-button:hover {
    background-color: #972a2a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    display: flex;
    min-height: 55vh;
    padding: 1rem 5%;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: auto;
}

.hero-content {
    flex: 1;
    padding-right: 1rem;
    position: relative;
    z-index: 2;
}

.admission-box {
    /*background-color: #b33232;*/
    background-color: #EE3422;
    color: white;
    padding: 1.5rem;
    max-width: 600px;
}

.admission-box h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.session-box {
    /*background-color: #0C2D4F;*/
    background-color: #0C2D4F;
    color: white;
    padding: 1rem 1.5rem;
    margin-top: 0.5rem;
    width: fit-content;
}

.session-box h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.discount-box {
    color: #333;
    margin-top: 1.5rem;
    width: fit-content;
    font-size: 1.2rem;
    font-weight: 500;
}

.tc-box {
    color: #333;
    margin-top: 0.3rem;
    width: fit-content;
    font-size: 0.9rem;
}

.courses-box {
    color: #0C2D4F;
    margin-top: 0.5rem;
    width: fit-content;
    font-size: 0.9rem;
}

.courses-box span {
    margin: 0 0.5rem;
}

.hero-right {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 3;
}

.hero-form h3 {
    /*color: #b33232;*/
    color: #EE3422;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #333;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-submit {
    /*background-color: #b33232;*/
    background-color: #EE3422;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: #972a2a;
}

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

.shape1 {
    position: absolute;
    width: 150px;
    height: 150px;
    left: -50px;
    bottom: -50px;
    background-color: #56ccc7;
    border-radius: 50%;
    opacity: 0.5;
}

.shape2 {
    position: absolute;
    width: 80px;
    height: 80px;
    right: 20%;
    top: 10%;
    background-color: #f0c9f0;
    opacity: 0.7;
}

.shape3 {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 15%;
    top: 30%;
    border: 2px solid #57a2e6;
    transform: rotate(45deg);
    opacity: 0.7;
}

.shape4 {
    position: absolute;
    width: 600px;
    height: 300px;
    bottom: -150px;
    right: -150px;
    background-color: #1c4c9e;
    border-radius: 50%;
    transform: rotate(-30deg);
    opacity: 0.7;
}

.shape5 {
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -100px;
    background-color: #b33232;
    border-radius: 50%;
    transform: rotate(-30deg);
    opacity: 0.7;
}

.student-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 450px;
    height: auto;
    z-index: 2;
}

.desc-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.leftmain {
    flex: 1;
    max-width: 500px;
}

.leftmain img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.rightmain {
    flex: 1;
    max-width: 600px;
}

.rightmain h3 {
    font-size: 28px;
    font-weight: 700;
    color: #EE3422;
    margin-bottom: 15px;
}

.rightmain p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

/* Placement Partners */

.partners-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
 
  
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 120px;
  }
  
  .partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
  }
/* Placement Partners */
/* Acc */
.acc-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Text content styling */
.acc-text {
    text-align: left;

}

.acc-text h3 {
    font-size: 26px;
    font-weight: 600;
    color: #B32424;
}

.acc-text p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
}

/* Image grid container */
.imagebox-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}

/* Individual image box */
.imagebox {
    background: #F4F7FB;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease-in-out;
}

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

.imagebox img {
    width: 50%;
    height: auto;
    border-radius: 8px;
}

.imagebox p {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-top: 10px;
}
/* Acc */

/* Faqs */
.faq-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 40px 20px;
    
    overflow: hidden;
}

.faq-header {
    background-color: #EE3422;
    color: white ;
    padding: 25px 30px;
    text-align: center;
}

.faq-header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.faq-header p {
    font-size: 1.0rem;
    opacity: 0.9;
    color: #fff;
}

.faq-items {
    padding: 20px 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin: 0 30px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px 0px;
    font-size: 1.0rem;
    font-weight: 600;
    color: #333;
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #EE3422;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    padding: 0px 10px;
    color: #B43232;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    line-height: 1.6;
    font-size: 1rem;
    color: #666;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-question span {
    margin-right: 10px;
    /*color: #B43232;*/
    color: #EE3422;
}
/* Faqs */

/* Course */

 /* Container */
 .edu-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section Header */
.edu-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.edu-section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.edu-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
}

.edu-section-subtitle {
    color: #7f8c8d;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

/* Courses Grid */
.edu-courses-grid-wrapper {
    width: 100%;
}

.edu-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 30px;
}

/* Course Card - Image Only */
.edu-course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    height: auto;
    
}

.edu-course-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.edu-course-image-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.edu-course-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

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

.edu-course-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.edu-course-card:hover .edu-course-overlay {
    opacity: 1;
}

/* course */
        .footer-container {
            background-color: #0C2D4F;
            padding: 15px 20px;
            width: 100%;
            box-sizing: border-box;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            color: #fff;
            font-family: Arial, sans-serif;
            font-size: 14px;
        }
        
        .copyright-text {
            margin: 0;
        }
        
        .footer-links {
            display: flex;
        }
        
        .footer-link {
            color: #fff;
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: #3498db;
        }

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 2rem 5%;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .admission-box h1 {
        font-size: 2.5rem;
    }
    
    .session-box h2 {
        font-size: 2rem;
    }
    
    .student-image {
        position: relative;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .imagebox-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
    .edu-courses-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablet */
    }
    
    .edu-section-title {
        font-size: 2rem;
    }
    
    /*.edu-course-card {*/
    /*    height: 280px;*/
    /*}*/
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 0.8rem 5%;
        width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .admission-box h1 {
        font-size: 2rem;
    }
    
    .session-box h2 {
        font-size: 1.5rem;
    }
    
    .discount-box, .tc-box, .courses-box {
        font-size: 0.8rem;
    }

    .desc-container {
        flex-direction: column;
        text-align: center;
    }

    .leftmain,
    .rightmain {
        max-width: 100%;
    }

    .rightmain h3 {
        font-size: 24px;
    }

    h3{
        font-size: 24px;
        text-align: center;
    }

    .rightmain p {
        font-size: 15px;
    }
    .acc-text {
        text-align: center;
    }

    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-links {
        margin-top: 5px;
    }
    
    .footer-link {
        margin: 0 10px;
    }
    
}

/* Mobile View */
@media (max-width: 576px) {
    .partners-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    
    .partner-logo {
      padding: 15px;
      height: 100px;
    }
    
    .partner-logo img {
      max-height: 60px;
    }

    .edu-courses-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
    }
    
    .edu-section-title {
        font-size: 1.75rem;
    }
    
    .edu-section-subtitle {
        font-size: 1rem;
    }
    
    /*.edu-course-card {*/
    /*    height: 250px;*/
    /*}*/
  }

    /* Animation Classes */
    .edu-fade-in {
        animation: fadeIn 0.8s ease forwards;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }