* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  --primary-color: #1A1C5C;
  --secondary-color: #d6d6d6;
  --accent-color: #ffffff;
}

body {
  border-top: 8px #1A1C5C solid;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}


.breadcrumb {
  background: #f2f2f2;
  color: black;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.academicsh6 {
  font-size: 10px;
  color: #666;
}

.video-hero-bg {
  background-image: url('../assets/images/cmc.jpg');
  background-size: cover;
  background-position: center;
  min-height: 200px;
}


.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: white !important;
    font-size: 1.8rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(rgba(20, 30, 52, 0.8), rgba(20, 30, 52, 0.8)), 
                url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.section-title {
    color: var(--primary-color);
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
    background-color: white;
}

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

.service-card .card-body {
    padding: 30px;
}

.service-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.card-title{
  font-size: 1.5rem;
}
.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.img-fluid {
  width: 80%;
  height: auto;
  object-fit: cover;
}

.corporate-wing {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.wing-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s;
}

.wing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wing-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.specialization-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.specialization-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.specialization-item h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}