 
    :root {
      --primary-red: #B60004;
      --header-bg: #B60004;
      --hero-btn-bg: #024556;
      --counter-bg: #294680; /* Omkar Pharmacy reference uses a rich navy blue banner */
      --admissions-bg: #223767;
      --banner-btn-red: #B60004;
      --text-dark: #222222;
      --text-muted: #555555;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
      color: #333333;
      background-color: #ffffff;
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px !important;
    }

    section[id] {
      scroll-margin-top: 90px;
    }

    /* Top Navbar */
    .site-header {
      background-color: #0b3479; /* Pharmacy primary blue theme */
      background: linear-gradient(90deg, #092c68 0%, #0e4194 100%);
      position: sticky;
      top: 0;
      z-index: 1030;
      box-shadow: 0 3px 10px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }

    .navbar-brand img {
      max-height: 48px;
      width: auto;
      filter: brightness(0) invert(1);
    }

    .nav-link {
      color: #ffffff !important;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 10px 14px !important;
      transition: opacity 0.2s ease, color 0.2s;
    }

    .nav-link:hover, .nav-link.active {
      color: #ffd277 !important;
      opacity: 1;
    }

    .btn-brochure {
      border: 1.5px solid #ffffff;
      color: #ffffff;
      background: transparent;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.8px;
      padding: 8px 20px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-brochure:hover {
      background: #ffffff;
      color: #092c68;
    }

    /* Hero Section */
    .hero-section {
      /*background:linear-gradient(rgb(240 245 255 / 40%), rgb(240 245 255 / 36%)), url(https://lh3.googleusercontent.com/aida-public/AB6AXuCMM2-9heTl83zJ59pPhNC6HhmCGeW8Qve2Zb7Z24dMuO-xIe9Gi7tWlXw8UyWK4XV3kZwvhUXVjiEN9Vt0mbewaFNWIFNQk1UZBbmKB8NJq0pQcFDyTnWNbDDKcPtT0DvnxqbpS5d0KLSp7X02FLYpCa_0z0JD-nLNa_HfUE7eSExEu3pXiQ9XPpO-g8KzKPYZ4MDU0P7ueupWiaZhP29vSKxRr9maXcYimy67WDgqX_BhtAT92gHH);*/
       background-image: url('../images/bg-image.webp');
      background-size: cover;
      background-position: center;
      padding: 70px 0 80px 0;
      position: relative;
    }

    .hero-title {
      font-size: 48px;
      font-weight: 900;
      line-height: 1.15;
      color: #111111;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }

    .hero-subtitle {
      font-size: 16px;
      color: white;
      font-weight: 500;
      margin-bottom: 26px;
    }

    .hero-subtitle strong {
      color:white;  
    }

    .btn-read-more {
      background-color: #B60004;
      color: #ffffff;
      border: none;
      border-radius: 50px;
      padding: 10px 28px;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      display: inline-block;
      text-decoration: none;
      transition: background 0.2s;
    }

    .btn-read-more:hover {
      background-color: #920003;
      color: #fff;
    }

    /* Form Card */
    .hero-form-card {
      background: #B60004;
      border-radius: 12px;
      padding: 32px 28px;
      color: #ffffff;
      box-shadow: 0 12px 30px rgba(182, 0, 4, 0.28);
    }

    .form-header-icon {
      font-size: 28px;
      margin-bottom: 6px;
    }

    .hero-form-card h3 {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 22px;
      text-align: center;
    }

    .hero-form-card label {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 6px;
      display: block;
      color: #ffffff;
    }

    .hero-form-card .form-control,
    .hero-form-card .form-select {
      border-radius: 6px;
      border: none;
      padding: 10px 14px;
      font-size: 14px;
      margin-bottom: 18px;
    }

    .btn-form-submit {
      background-color: #024556;
      color: #ffffff;
      border: none;
      border-radius: 6px;
      width: 100%;
      padding: 12px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 14px;
      transition: background 0.2s ease;
    }

    .btn-form-submit:hover {
      background-color: #012d38;
      color: #ffffff;
    }

    /* Section Headings */
    .sub-heading-bar {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 800;
      color: #B60004;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 10px;
    }

    .sub-heading-bar::before {
      content: "";
      display: inline-block;
      width: 24px;
      height: 3px;
      background-color: #B60004;
      border-radius: 2px;
    }

    .main-section-heading {
      font-size: 34px;
      font-weight: 900;
      color: #111111;
      margin-bottom: 18px;
      letter-spacing: -0.3px;
    }

    .section-p {
      color: #555555;
      font-size: 14.5px;
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .btn-view-more {
      background-color: #B60004;
      color: #ffffff;
      border-radius: 50px;
      padding: 9px 26px;
      font-size: 12.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s;
    }

    .btn-view-more:hover {
      background-color: #8c0003;
      color: #ffffff;
    }

    /* Admission Flyer Card */
    .admission-banner-card {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.08);
      overflow: hidden;
      border: 1px solid #eaeaea;
    }

    .banner-header-strip {
      background-color: #0b3479;
      color: #ffffff;
      text-align: center;
      padding: 12px 16px;
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 0.8px;
      text-transform: uppercase;
    }

    .banner-body {
      padding: 24px 20px;
      position: relative;
    }

    .banner-tag {
      background-color: #111111;
      color: #ffffff;
      font-size: 10px;
      font-weight: 800;
      padding: 4px 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      display: inline-block;
    }

    .banner-avatar-wrap {
      width: 170px;
      height: 170px;
      margin: 10px auto 16px auto;
      border-radius: 50%;
      border: 4px solid #B60004;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    }

    .banner-avatar-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }

    .banner-call-action {
      background-color: #B60004;
      color: #ffffff;
      padding: 10px 14px;
      border-radius: 6px;
      text-align: center;
    }

    .banner-call-action .call-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      opacity: 0.9;
    }

    .banner-call-action .phone-numbers {
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 0.5px;
    }

    .banner-location-text {
      font-size: 11.5px;
      color: #666;
      text-align: center;
      margin-top: 10px;
      font-weight: 500;
    }

    /* Program Card */
    .program-showcase-card {
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
      border: 1px solid #efefef;
    }

    .program-showcase-img {
      height: 220px;
      width: 100%;
      object-fit: cover;
    }

    .program-showcase-title {
      padding: 16px 20px;
      font-size: 16px;
      font-weight: 900;
      color: #111;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      background: #ffffff;
    }

    /* Statistics / Counter Section */
    .stats-section {
      background-color: #0b3479;
      background: linear-gradient(135deg, #092c68 0%, #154593 100%);
      color: #ffffff;
      padding: 55px 0;
    }

    .stat-item {
      text-align: center;
    }

    .stat-icon-wrap {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.25);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 12px;
      color: #ffffff;
    }

    .stat-number {
      font-size: 34px;
      font-weight: 900;
      margin-bottom: 4px;
      letter-spacing: -0.5px;
    }

    .stat-label {
      font-size: 13.5px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      margin: 0;
    }

    /* Why Omkar Section */
    .feature-check-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .feature-check-list li {
      font-size: 14.5px;
      font-weight: 700;
      color: #222222;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .feature-check-list li i {
      color: #B60004;
      font-size: 16px;
    }

    .feature-box {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
    }

    .feature-icon-circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #B60004;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .feature-box h5 {
      font-size: 16px;
      font-weight: 800;
      color: #111;
      margin-bottom: 4px;
    }

    .feature-box p {
      font-size: 13.5px;
      color: #666;
      margin: 0;
      line-height: 1.5;
    }

    /* Admissions Banner CTA */
    .admissions-cta-bar {
      background-color: #092c68;
      background: linear-gradient(90deg, #092c68 0%, #174288 100%);
      color: #ffffff;
      padding: 42px 0;
    }

    .admissions-cta-text {
      font-size: 24px;
      font-weight: 800;
      margin: 0;
      line-height: 1.35;
    }

    .btn-enquiry {
      border: 2px solid #ffffff;
      color: #ffffff;
      border-radius: 50px;
      padding: 10px 30px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
      transition: all 0.25s ease;
    }

    .btn-enquiry:hover {
      background-color: #ffffff;
      color: #092c68;
    }

    /* Testimonial Section */
    .testimonials-section {
      padding: 75px 0 60px 0;
      background-color: #fafbfc;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: 10px;
      padding: 36px 32px;
      border: 1px solid #f0f0f0;
      box-shadow: 0 5px 22px rgba(0,0,0,0.05);
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
      position: relative;
    }

    .stars-rating {
      color: #B60004;
      font-size: 15px;
      margin-bottom: 16px;
      letter-spacing: 3px;
    }

    .testimonial-text {
      font-size: 14.5px;
      line-height: 1.75;
      color: #444;
      margin-bottom: 20px;
      font-style: normal;
    }

    .testimonial-author {
      font-size: 16px;
      font-weight: 800;
      color: #B60004;
      margin-bottom: 0;
    }

    .slider-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      margin-top: 24px;
    }

    .slider-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid #ddd;
      color: #444;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
    }

    .slider-btn:hover {
      background: #B60004;
      color: #ffffff;
      border-color: #B60004;
    }

    .slider-dots {
      display: flex;
      gap: 8px;
    }

    .slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #d0d0d0;
      cursor: pointer;
      transition: background 0.2s;
    }

    .slider-dot.active {
      background-color: #B60004;
      width: 24px;
      border-radius: 10px;
    }

    /* Gallery Section */
    .gallery-section {
      padding: 70px 0;
      background-color: #ffffff;
    }

    .gallery-card {
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 24px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
      position: relative;
    }

    .gallery-image {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }

    .gallery-card:hover .gallery-image {
      transform: scale(1.04);
    }

    /* Contact Us Section */
    .contact-section {
      padding: 70px 0 80px 0;
      background-color: #f7f9fc;
    }

    .contact-info-card {
      background: #ffffff;
      border-radius: 10px;
      padding: 32px 28px;
      box-shadow: 0 4px 18px rgba(0,0,0,0.06);
      height: 100%;
      border: 1px solid #eceff4;
    }

    .contact-info-card h4 {
      font-size: 20px;
      font-weight: 800;
      color: #111;
      margin-bottom: 12px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-top: 20px;
    }

    .contact-icon-box {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #B60004;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .contact-item h6 {
      font-size: 13px;
      font-weight: 800;
      color: #111;
      margin-bottom: 3px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .contact-item p {
      font-size: 13.5px;
      color: #555;
      margin: 0;
      line-height: 1.4;
    }

    .contact-form-card {
      background: #ffffff;
      border-radius: 10px;
      padding: 32px 30px;
      box-shadow: 0 4px 18px rgba(0,0,0,0.06);
      border: 1px solid #eceff4;
    }

    .contact-form-card h4 {
      font-size: 20px;
      font-weight: 800;
      color: #111;
      margin-bottom: 22px;
    }

    .contact-form-card label {
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin-bottom: 6px;
    }

    .contact-form-card .form-control,
    .contact-form-card .form-select {
      border: 1px solid #dcdfe6;
      border-radius: 6px;
      padding: 10px 14px;
      font-size: 14px;
      margin-bottom: 16px;
    }

    .contact-form-card textarea.form-control {
      min-height: 110px;
    }

    .btn-contact-submit {
      background-color: #024556;
      color: #ffffff;
      border: none;
      border-radius: 6px;
      padding: 10px 28px;
      font-weight: 800;
      font-size: 13.5px;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      transition: background 0.2s ease;
    }

    .btn-contact-submit:hover {
      background-color: #012a35;
      color: #ffffff;
    }

    /* Footer */
    .site-footer {
      background-color: #092c68;
      color: #ffffff;
      padding: 60px 0 30px 0;
    }

    .footer-logo img {
      max-height: 48px;
      width: auto;
      filter: brightness(0) invert(1);
      margin-bottom: 16px;
    }

    .footer-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.75);
      line-height: 1.6;
      margin-bottom: 18px;
    }

    .footer-title {
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 18px;
      color: #ffffff;
    }

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

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: #ffd277;
    }

    .footer-contact-item {
      font-size: 13px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 12px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .footer-contact-item i {
      color: #ffffff;
      margin-top: 3px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }

    .social-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      text-decoration: none;
      transition: background 0.2s;
    }

    .social-btn:hover {
      background: #B60004;
      color: #ffffff;
    }

    .footer-map-card {
      background: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      padding: 4px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }

    .footer-map-card img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      display: block;
      border-radius: 4px;
    }

    .copyright-bar {
      border-top: 1px solid rgba(255,255,255,0.12);
      margin-top: 40px;
      padding-top: 24px;
      text-align: center;
      font-size: 12px;
      color: rgba(255,255,255,0.6);
    }

    .copyright-bar a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
    }

    @media (max-width: 991.98px) {
      .hero-title {
        font-size: 36px;
      }
      .main-section-heading {
        font-size: 28px;
      }
      .hero-form-card {
        margin-top: 40px;
      }
      .stat-item {
        margin-bottom: 24px;
      }
    }
 