/* Root Variables & Reset */
:root {
  --primary-color: #0d3862;
  --secondary-color: #ff9100;
  --accent-color: #2c9cdb;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #eeeeee;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --card-bg: #ffffff;
  --bubble-bg: #f0f5ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid white;
}

.primary-btn:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.secondary-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  border: 2px solid var(--secondary-color);
}

.secondary-btn:hover {
  background-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.outline-btn {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.outline-btn:hover {
  background-color: #1a5f9c;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-medium);
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.logo img {
  height: 80px;
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 25px;
  padding-right: 20px;
}

.nav-menu li a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
  gap: 10px;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  left: 0;
  bottom: -2px;
  transition: var(--transition);
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

.nav-menu li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--primary-color);
  transition: var(--transition);
  margin-right: 10px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0px 0px;
  width: 100%;
  /* min-height: 600px; */
  /* background-color: #f5f5f5; */
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/op1.jpg");
  background-size: cover;
  background-position: right top;
  
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  color: white;
}

.orange-label {
  display: inline-block;
  background-color: #e67e22;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  font-size: 18px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}

  .highlights {
            margin: 2rem 0;
        }

        .highlight-item {
            display: flex;
            /* align-items: center; */
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(0, 60, 124, 0.5);
            border-radius: 10px;
            border-left: 4px solid #f19d24;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            font-size: 18px;
            width: 80%;
            font-weight: 600px;
        }

        .highlight-item:hover {
            background: rgba(1, 105, 191, 0.15);
            transform: translateX(10px);
        }

        .highlight-item::before {
            content: "✓";
            color: #f19d24;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 1rem;
        }

.hero-form {
  flex: 1;

  min-width: 300px;
  max-width: 450px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-bottom:solid 4px #e47e23;
}

.hero-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a2f58;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #1a2f58;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #e67e22;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #d35400;
}

.admission-banner {
            /* position: fixed;
            bottom: 0;
            left: 0; */
            width: 100%;
            background: linear-gradient(45deg, #e67f21, #ff9f47);
            color: white;
            text-align: center;
            padding: 0.6rem;
            font-weight: 600;
            font-size: 1.1rem;
            z-index: 1000;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
        }

        .admission-text {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

/* Colleges Card */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.card {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(26, 47, 88, 0.12);
  overflow: visible;
  position: relative;
  padding: 30px 25px 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(26, 47, 88, 0.18);
}

.card-logo {
  position: absolute;
  top: -30px;
  left: 5px;
  width: 120px;
  height: 120px;
  background-color: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 47, 88, 0.15);
  border: 3px solid var(--primary-color);
  overflow: hidden;
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-header {
  margin-left: 125px;
  margin-bottom: 20px;
}

.card-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: left;
}

.accreditation {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.badge {
  background-color: var(--primary-color);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-block;
}

.card-body {
  margin-bottom: 20px;
}

.section-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.section-title svg {
  margin-right: 8px;
}

.specializations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.specialization-bubble {
  background-color: var(--bubble-bg);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.usp-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  font-size: 0.9rem;
}

.usp-item svg {
  flex-shrink: 0;
  margin-right: 8px;
  margin-top: 3px;
  color: var(--accent-color);
}

.card-footer {
  margin-top: auto;
}

.program-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-type {
  background-color: var(--bubble-bg);
  color: var(--primary-color);
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
}
/* Programs Section */
.programs {
  background-color: var(--light-gray);
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.program-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(13, 56, 98, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.program-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.program-card h3 {
  margin-bottom: 15px;
  text-align: center;
}

.program-card p {
  color: var(--text-medium);
  text-align: center;
}

.program-card ul {
  margin: 20px 0;
}

.program-card ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.program-card ul li::before {
  content: "✓";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.program-card .btn {
  margin-top: auto;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(to right, var(--primary-color), #1a5f9c);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.cta-banner p {
  color: var(--white);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Us */
.why-choose-us {
  background-color: var(--white);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius);
  background-color: var(--light-gray);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(13, 56, 98, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.feature h3 {
  margin-bottom: 15px;
}

.feature p {
  color: var(--text-medium);
}

/* Testimonials */
.testimonials {
  background-color: var(--light-gray);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  position: relative;
  padding: 20px 0;
}

.testimonial-content::before {
  content: '"';
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.1;
  position: absolute;
  left: -10px;
  top: -20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Statistics */
.statistics {
  background: linear-gradient(
      to right,
      rgba(13, 56, 98, 0.9),
      rgba(13, 56, 98, 0.8)
    ),
    url("/api/placeholder/1920/1080") center/cover no-repeat;
  color: var(--white);
  padding: 60px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.stat p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Admission Process */
.admission-process {
  background-color: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.process-step {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step h3 {
  margin-bottom: 15px;
}

.process-step p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Contact Section */
.contact {
  background-color: var(--light-gray);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(13, 56, 98, 0.2);
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-item i {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 15px;
  font-size: 1.2rem;
}

.info-item div h4 {
  margin-bottom: 5px;
}

.info-item div p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px 0 0;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.link-column h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.link-column ul li {
  margin-bottom: 10px;
}

.link-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.link-column ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

/* faq section */
.faq-section {
  width: 100%;
  /* max-width: 1200px; */
    background-color: #fef9ed;

}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  color: #1a2f58;
  font-size: 36px;
  font-weight: 700;
}

.faq-header p {
  color: #555;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.accordion {
  width: 100%;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  background-color: #ffffff;
  padding: 18px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 5px solid #1a2f58;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: #f8f9fa;
}

.accordion-header h3 {
  color: #1a2f58;
  font-size: 18px;
  font-weight: 600;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  background-color: #1a2f58;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.accordion-icon:before,
.accordion-icon:after {
  content: "";
  position: absolute;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-icon:before {
  width: 12px;
  height: 2px;
}

.accordion-icon:after {
  width: 2px;
  height: 12px;
  transition: all 0.3s ease;
}

.accordion-content {
  background-color: #ffffff;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-text {
  padding: 0 25px;
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

.active .accordion-header {
  background-color: #f0f4f8;
  border-left: 5px solid #e67e22;
}

.active .accordion-icon {
  background-color: #e67e22;
}

.active .accordion-icon:after {
  height: 0;
}

.active .accordion-content {
  max-height: 1000px;
  padding: 20px 0;
}
.highlight-heading {
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e47e23, #f5a623);
  color: white;
  padding: 0.7rem 1.3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
  text-align: center;
  margin: 20px 0;
  letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .highlight-heading {
    padding: 0.7rem 1.3rem;
    font-size: 14px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  html {
    font-size: 15px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .usp-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .hamburger {
    display: block;
  }

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

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 93px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    gap: 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu li {
    margin: 15px 0;
  }
  .hero-content {
    flex-direction: column;
  }
  .highlight-item {
    font-size: 14px;
                width: 100%;

  }

  .hero-text,
  .hero-form {
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }
    .admission-banner {
                font-size: 1rem;
                padding: 0.8rem;
            }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-header h2 {
    font-size: 28px;
  }

  .faq-header p {
    font-size: 16px;
    padding: 0 15px;
  }

  .accordion-header h3 {
    font-size: 16px;
    width: 85%;
  }

  .accordion-header {
    padding: 15px 20px;
  }

  .accordion-text {
    padding: 0 20px;
    font-size: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .card-header {
    
    margin-left: 110px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .card-title {
  color: var(--primary-color);
  font-size: 1.2rem;
  }

  h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .program-cards,
  .features,
  .testimonial-slider,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .stat h3 {
    font-size: 2rem;
  }
}

/* New sections  */

.industry-section {
  background-color: #fef9ed;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}





.desktop-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.mobile-image {
  display: none;
  margin: 0 auto;
  max-width: 100%;
}

.companies-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}

/* Tablet and Mobile Styles */
@media (max-width: 1024px) {
  .industry-section {
    padding: 3rem 0;
  }

  

  .heading {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .desktop-image {
    display: none;
  }

  .mobile-image {
    display: block;
  }
}

@media (max-width: 768px) {
  .industry-section {
    padding: 2rem 0;
  }



  .heading {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .companies-image {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .companies-image {
    border-radius: 6px;
  }
}

/* why us section */

.cm-mba-section {
            
            margin: 0 auto;
            padding: 60px 20px;
        }

        .cm-mba-header {
            margin-bottom: 50px;
        }

        .cm-mba-header  {
            font-size: 42px;
            font-weight: 700;
            color: #333;
            border-bottom: 4px solid #ff8c42;
            
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .cm-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .cm-reasons-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .cm-reason-item {
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }

        .cm-reason-number {
            font-size: 80px;
            font-weight: 300;
           
            line-height: 0.8;
            min-width: 70px;
             color: transparent; /* Make text transparent */
  -webkit-text-stroke: 2.5px #f18419; 
        }

        
        .cm-reason-content h3 {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
            text-align: left;
        }

        .cm-reason-content p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            text-align: left;
        }

        .cm-visual-section {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 600px;
        }

        .cm-orange-blob {
            position: absolute;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, #ffb380 0%, #ff8c42 100%); */
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            opacity: 0.5;
            z-index: 1;
        }

        .cm-image-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(3, auto);
            gap: 20px;
            max-width: 100%;
        }

        .cm-image-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
        }

        .cm-image-card.large {
            grid-column: 1 / -1;
            grid-row: 1;
            
        }

        .cm-image-card.medium {
            grid-column: 1 / -1;
            grid-row: 2;
            height: 200px;
        }

        .cm-image-card.small {
            height: 160px;
        }

        .cm-professor-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

       

       
        

        .cm-meeting-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #d5d5d5 0%, #e8e8e8 100%);
        }

        .cm-profile-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 15px;
        }

        .cm-profile-image {
            width: 100%;
            aspect-ratio: 1;
            background: linear-gradient(135deg, #c8c8c8 0%, #e0e0e0 100%);
            border-radius: 10px;
        }

        .cm-profile-image:last-child {
            grid-column: 1 / -1;
            width: 50%;
            margin: 0 auto;
        }

        .cm-mobile-app {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 250px;
        }

        .cm-phone-mockup {
            width: 140px;
            height: 280px;
            background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
            border-radius: 25px;
            border: 6px solid #333;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .cm-phone-notch {
            width: 60%;
            height: 25px;
            background: #333;
            border-radius: 0 0 15px 15px;
            margin: 0 auto;
        }

        .cm-phone-screen {
            background: white;
            margin: 10px;
            height: calc(100% - 40px);
            border-radius: 15px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-around;
        }

        .cm-app-logo {
            font-size: 14px;
            font-weight: 700;
            color: #ff8c42;
        }

        .cm-app-button {
            width: 80%;
            padding: 8px;
            background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
            color: white;
            border-radius: 8px;
            text-align: center;
            font-size: 10px;
            font-weight: 600;
        }

        @media (max-width: 1024px) {
            .cm-content-wrapper {
                grid-template-columns: 1fr;
            }

            .cm-visual-section {
                min-height: 400px;
                margin-top: 40px;
            }
        }

        @media (max-width: 768px) {
            .cm-mba-section {
                padding: 40px 15px;
            }

            .cm-mba-header h1 {
                font-size: 28px;
            }

            .cm-reason-number {
                font-size: 60px;
                min-width: 50px;
            }

            .cm-reason-content h3 {
                font-size: 20px;
            }

            .cm-reason-content p {
                font-size: 14px;
            }

            .cm-reasons-list {
                gap: 30px;
            }

            .cm-visual-section {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .cm-mba-header h1 {
                font-size: 24px;
            }

            .cm-reason-item {
                gap: 15px;
            }

            .cm-reason-number {
                font-size: 50px;
                min-width: 40px;
            }

            .cm-reason-content h3 {
                font-size: 18px;
            }

            .cm-reason-content p {
                font-size: 14px;
            }
        }
