.internship-hero{
    background:#13293d;
    padding:100px 20px;
}

.hero-content{
    animation: heroFadeUp 1s ease forwards;
}
@keyframes heroFadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-content{
    max-width:1200px;
    margin:0 auto;
}
.hero-top{
    display:flex;
    justify-content:flex-end;
    margin-bottom:40px;
}

.lms-btn{
    background:#f8fafc;
    color:#1e293b;
    border:1px solid #cbd5e1;
    padding:12px 22px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.lms-btn:hover{
    background:#e2e8f0;
}

.breadcrumb{
    color:#dbe4ee;
    font-size:14px;
    margin-bottom:20px;
}

.internship-hero h1{
    color:#ffffff !important;
    font: size 48px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
}

.internship-hero p{
    color:#dbe4ee !important;
    font-size:18px;
    max-width:850px;
    line-height:1.7;
}


.internship-container{
    padding:80px 20px;
}
.internship-quote{
    max-width:900px;
    margin:80px auto;
    text-align:center;
    padding:0 20px;
}

.internship-quote h2{
    font-size:36px;
    color:#1e293b;
    margin-bottom:20px;
}

.internship-quote p{
    font-size:18px;
    line-height:1.9;
    color:#64748b;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:38px;
    font-weight:800;
    color:#1f2937;
    margin-bottom:15px;
}

.section-heading p{
    font-size:18px;
    color:#64748b;
}

.track-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:40px;
    max-width:1300px;
    margin:0 auto;
}

.track-card{
    width:380px;
    background:#ffffff;
    border-radius:24px;
    padding:32px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.3s;
}

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

.track-card h3{
    font-size:28px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:15px;
}

.track-description{
    color:#64748b;
    font-size:17px;
    line-height:1.8;
    margin-bottom:25px;
}

.module-section h4{
    font-size:22px;
    margin-bottom:15px;
    color:#1e293b;
}

.module-list{
    list-style:none;
    padding:0;
    margin:0;
}

.module-list li{
    padding:8px 0;
    font-size:16px;
    color:#334155;
}
.enroll-btn{
    display:block;
    text-align:center;
    margin-top:25px;
    padding:14px;
    background:#1e4e79;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:0.3s;
}

.enroll-btn:hover{
    background:#163b5c;
    color:#fff;
}

.contact-section{
    text-align:center;
    padding:80px 20px;
    background:#f8fafc;
}

.contact-section h2{
    font-size:32px;
    margin-bottom:20px;
}

.contact-section p{
    font-size:18px;
    color:#64748b;
    margin-bottom:30px;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.contact-btn{
    padding:14px 24px;
    background:#2563eb;
    color:white;
    text-decoration:none;
    border-radius:12px;
}

.contact-btn:hover{
    background:#1d4ed8;
    color:white;
}
.lms-section{
    text-align:center;
    margin-bottom:60px;
}

.lms-text{
    max-width:700px;
    margin:0 auto 20px;
    color:#64748b;
    line-height:1.8;
}

.lms-btn{
    display:inline-block;
    padding:14px 28px;
    background:#13293d;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
}

.lms-btn:hover{
    background:#1e3a5f;
    color:white;
}

.internship-message{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
}

.internship-message h2{
    font-size:36px;
    margin-bottom:20px;
}

.internship-message p{
    color:#64748b;
    line-height:1.9;
    font-size:18px;
}

.contact-box{
    max-width:800px;
    margin:0 auto;
    text-align:center;
}
/* ===== HAMBURGER MENU STYLES ===== */

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 41, 61, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.mobile-nav-link:hover {
    color: #64b5f6;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }
    
    .mobile-nav {
        display: none !important;
    }
}
.contact-buttons {
  display: flex;
  gap: 12px;
}

/* company-style blue button */
.btn {
  padding: 8px 14px;
  border: none;
  border-radius: 8px;

  font-size: 13px;
  color: white;

  cursor: pointer;

  background: #1f4fff;
  box-shadow: 0 3px 8px rgba(31,79,255,0.25);

  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #163dcc;
}

.whatsapp {
  background: #1f4fff;
}

.gmail {
  background: #2d5bff;
}
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.enroll-btn-half {
    flex: 1;
    max-width: 150px;
    display: block;
    text-align: center;
    padding: 12px 24px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.enroll-btn-half:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
}

.enroll-btn-half.disabled {
    background: #ccc;
    }