@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800&family=Schoolbell&display=swap");
/*-- Common Style --*/
*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
      font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
  font-family: "Heebo", sans-serif;
  color: #666666;
  outline: none;
  visibility: visible;
  overflow-X: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: "";
}

/* Typography - Mobile First */
h1, h2, h3, h4, h5, h6 {
    font-family: "Heebo", sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #0e204d;
    text-transform: capitalize;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

/* Tablet and Desktop */
@media (min-width: 768px) {
    h1 { font-size: 42px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
    h4 { font-size: 22px; }
    h5 { font-size: 20px; }
    h6 { font-size: 16px; }
}

@media (min-width: 992px) {
    h1 { font-size: 52px; }
    h2 { font-size: 42px; }
    h3 { font-size: 32px; }
    h4 { font-size: 26px; }
}

p {
    line-height: 1.75;
    margin-bottom: 15px;
}

a {
    color: #ed2023;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #072f60;
}

/* Color Utility Classes */
.color-white { color: #fff !important; }
.color-primary { color: #ed2023 !important; }
.color-secondary { color: #072f60 !important; }
.color-heading { color: #0e204d !important; }
.color-body { color: #848e9f !important; }

.bg-white { background-color: #fff !important; }
.bg-gray { background-color: #f9f9f9 !important; }
.bg-primary { background-color: #ed2023 !important; }
.bg-secondary { background-color: #072f60 !important; }

/* Spacing Utilities */
.pt-60 { padding-top: 40px; }
.pt-80 { padding-top: 50px; }
.pb-60 { padding-bottom: 40px; }
.pb-80 { padding-bottom: 50px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 40px; }

@media (min-width: 768px) {
    .pt-60 { padding-top: 60px; }
    .pt-80 { padding-top: 80px; }
    .pb-60 { padding-bottom: 60px; }
    .pb-80 { padding-bottom: 80px; }
    .mt-40 { margin-top: 40px; }
    .mb-50 { margin-bottom: 50px; }
}

/* Header - Mobile First */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 12px 0;
}

@media (min-width: 768px) {
    .header {
        padding: 15px 0;
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
}

@media (min-width: 768px) {
    .logo img {
        height: 50px;
    }
}

.nav-menu {
    position: fixed;
    top: 64px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: #fff;
    padding: 30px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.nav-menu.active {
    left: 0;
}

.nav-menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-menu ul li {
    margin-bottom: 15px;
}

.nav-menu ul li a {
    color: #072f60;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
}

.nav-menu ul li a:hover {
    background: #ed2023;
    color: #fff;
}

@media (min-width: 992px) {
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        overflow: visible;
    }
    
    .nav-menu ul {
        flex-direction: row;
        gap: 20px;
    }
    
    .nav-menu ul li {
        margin-bottom: 0;
    }
    
    .nav-menu ul li a {
        font-size: 16px;
        padding: 8px 16px;
    }
}

.mobile-menu-toggle {
    display: block;
    font-size: 24px;
    color: #072f60;
    cursor: pointer;
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Hero Section - Mobile First */
.hero-section {
    position: relative;
    padding: 120px 0 60px;
    min-height: auto;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 64px;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 150px 0 100px;
        min-height: 500px;
    }
}

@media (min-width: 992px) {
    .hero-section {
        padding: 180px 0 120px;
        min-height: 600px;
    }
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 47, 96, 0.92) 0%, rgba(237, 32, 35, 0.8) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .hero-content {
        max-width: 900px;
    }
}

.heading__title {
    font-size: 28px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

@media (min-width: 768px) {
    .heading__title {
        font-size: 38px;
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .heading__title {
        font-size: 48px;
    }
}

.heading__subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    animation: fadeInUp 1.2s ease;
}

@media (min-width: 768px) {
    .heading__subtitle {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .heading__subtitle {
        font-size: 28px;
    }
}

.heading__desc {
    font-size: 15px;
    line-height: 1.7;
    animation: fadeInUp 1.4s ease;
}

@media (min-width: 768px) {
    .heading__desc {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media (min-width: 992px) {
    .heading__desc {
        font-size: 18px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Form - Mobile First */
.hero-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.6s ease;
}

@media (min-width: 768px) {
    .hero-form {
        padding: 35px;
        border-radius: 15px;
    }
}

.form-title {
    color: #0e204d;
    font-size: 18px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .form-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .form-title {
        font-size: 24px;
    }
}

.hero-form .form-control {
    padding: 12px 15px;
    font-size: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .hero-form .form-control {
        padding: 14px 18px;
        font-size: 15px;
    }
}

.hero-form .form-control:focus {
    border-color: #ed2023;
    box-shadow: 0 0 0 0.2rem rgba(237, 32, 35, 0.25);
}

/* Stats Section - Mobile First */
.stat-item {
    padding: 15px;
}

@media (min-width: 768px) {
    .stat-item {
        padding: 20px;
    }
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    font-family: "Heebo", sans-serif;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 42px;
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .stat-number {
        font-size: 48px;
    }
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .stat-label {
        font-size: 16px;
    }
}

/* Section Titles - Mobile First */
.section-title {
    font-size: 24px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .section-title {
        font-size: 42px;
    }
}

.section-subtitle {
    font-size: 14px;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 16px;
    }
}

/* Course Cards - Mobile First */
.course-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .course-card {
        margin-bottom: 0;
    }
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 45px rgba(0, 0, 0, 0.15);
}

.course-image-wrapper {
    overflow: hidden;
    width: 100%;
    height: 200px;
    position: relative;
}

@media (min-width: 768px) {
    .course-image-wrapper {
        height: 220px;
    }
}

@media (min-width: 992px) {
    .course-image-wrapper {
        height: 240px;
    }
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image {
    transform: scale(1.08);
}

.course-content {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .course-content {
        padding: 25px 20px;
    }
}

.course-title {
    font-size: 18px;
    color: #0e204d;
    margin-bottom: 12px;
    min-height: auto;
}

@media (min-width: 768px) {
    .course-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .course-title {
        font-size: 22px;
        min-height: 60px;
    }
}

.course-description {
    font-size: 13px;
    color: #848e9f;
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .course-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.7;
    }
}

/* Action Buttons - Mobile First (3 buttons in one row) */
.contact-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: auto;
}

@media (min-width: 480px) {
    .contact-buttons {
        gap: 10px;
    }
}

.btn-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    min-height: 65px;
}

@media (min-width: 480px) {
    .btn-action {
        padding: 12px 8px;
        font-size: 12px;
        min-height: 70px;
    }
}

@media (min-width: 768px) {
    .btn-action {
        padding: 14px 12px;
        font-size: 13px;
        border-radius: 10px;
    }
}

.btn-action i {
    font-size: 18px;
    margin-bottom: 5px;
}

@media (min-width: 480px) {
    .btn-action i {
        font-size: 20px;
        margin-bottom: 6px;
    }
}

@media (min-width: 768px) {
    .btn-action i {
        font-size: 22px;
        margin-bottom: 8px;
    }
}

.btn-action span {
    display: block;
    line-height: 1.2;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-call {
    background: linear-gradient(135deg, #ed2023 0%, #c41417 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(237, 32, 35, 0.3);
}

.btn-call:hover {
    background: linear-gradient(135deg, #072f60 0%, #051e3d 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(7, 47, 96, 0.4);
}

.btn-enquiry {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #072f60;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-enquiry:hover {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Regular Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

@media (min-width: 768px) {
    .btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}

.btn i {
    margin-right: 8px;
    font-size: 16px;
}

.btn__primary {
    background-color: #ffc107;
    color: #072f60;
    border-color: #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn__primary:hover {
    background-color: #072f60;
    color: #fff;
    border-color: #072f60;
    box-shadow: 0 6px 20px rgba(7, 47, 96, 0.4);
    transform: translateY(-2px);
}

.btn__secondary {
    background-color: #ed2023;
    color: #fff;
    border-color: #ed2023;
    box-shadow: 0 4px 15px rgba(237, 32, 35, 0.3);
}

.btn__secondary:hover {
    background-color: #072f60;
    color: #fff;
    border-color: #072f60;
    box-shadow: 0 6px 20px rgba(7, 47, 96, 0.4);
    transform: translateY(-2px);
}

/* Carousel Controls - Mobile Optimized */
.carousel-control-prev,
.carousel-control-next {
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

@media (min-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
    background-color: #ed2023;
    border-radius: 50%;
    padding: 15px;
}

@media (min-width: 768px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
        padding: 20px;
    }
}

/* Floating WhatsApp Button - Mobile Optimized */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0px 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@media (min-width: 768px) {
    .floating-whatsapp {
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Contact Info - Mobile First */
.contact-info {
    padding: 15px;
}

@media (min-width: 768px) {
    .contact-info {
        padding: 20px;
    }
}

.contact-info i {
    color: #ffc107;
}

.contact-info h4 {
    margin: 12px 0;
    font-size: 18px;
}

@media (min-width: 768px) {
    .contact-info h4 {
        margin: 15px 0;
        font-size: 20px;
    }
}

.contact-info p {
    margin-bottom: 5px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .contact-info p {
        font-size: 15px;
    }
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-info a:hover {
    color: #ffc107;
}

/* Internship Details */
.internship-details {
    padding: 0;
}

.duration-item {
    padding: 10px;
}

@media (min-width: 768px) {
    .duration-item {
        padding: 15px;
    }
}

.duration-item h5 {
    font-size: 20px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .duration-item h5 {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

@media (min-width: 992px) {
    .duration-item h5 {
        font-size: 28px;
    }
}

.duration-item p {
    font-size: 12px;
}

@media (min-width: 768px) {
    .duration-item p {
        font-size: 14px;
    }
}

/* Modal Styles - Mobile Optimized */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    border-bottom: 2px solid #ed2023;
    padding: 15px 20px;
}

@media (min-width: 768px) {
    .modal-header {
        padding: 20px 30px;
    }
}

.modal-body {
    padding: 20px;
}

@media (min-width: 768px) {
    .modal-body {
        padding: 30px;
    }
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    font-size: 14px;
}

@media (min-width: 768px) {
    .form-control {
        padding: 12px 18px;
        font-size: 15px;
    }
}

.form-control:focus {
    border-color: #ed2023;
    box-shadow: 0 0 0 0.2rem rgba(237, 32, 35, 0.25);
}

.form-label {
    font-weight: 600;
    color: #0e204d;
    margin-bottom: 8px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .form-label {
        font-size: 15px;
    }
}
