/*
/*
Theme Name: Trimurti Academy
Theme URI: https://rosanthapa.com.np/
Author: Roshan Kumar Thapa
Author URI: https://rosanthapa.com.np/
Description: Trimurti Academy is a fully responsive, creative, and SEO-friendly custom WordPress theme designed specifically for educational institutions. It features dynamic header and navigation menus, and includes dedicated sections for Home, About, News & Events, Our Team, Gallery, Videos, Events, and Notices to effectively showcase school activities and information.
Version: 1.0.1
Text Domain: trimurti-academy
Tags: responsive, education, school, seo-friendly, creative, custom, news, events, gallery, team, video, notices

Requires at least: 5.5
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/


/* ==================================== */
/*     SLIDERS CSS CODE  GOES HERE      */
/* ==================================== */


    

/* ==================================== */
/*     WHY US CSS CODE  GOES HERE      */
/* ==================================== */
/* Facilities Section */
    .facility-icon {
      font-size: 2.2rem;
      transition: transform 0.3s ease;
    }

    .facility-icon:hover {
      transform: scale(1.25) rotate(8deg);
    }

    .facility-img {
      max-width: 100%;
      height: 420px;
      object-fit: contain;
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.03);
      }
    }

    .section-bg {
      background-color: #f9f9ff;
    }

    h2 {
      font-size: 2.4rem;
    }

    h6 {
      font-size: 1.3rem;
    }

    .highlight-line {
      height: 4px;
      width: 50px;
      background-color: #f15a29;
      margin: 0 auto;
    }


/* ==================================== */
/*     COURSES CSS CODE  GOES HERE      */
/* ==================================== */

    /* Courses Section */
.course-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-top: 5px solid #f23276;
  border-radius: 15px;
}
.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.course-icon {
  width: 60px;
  height: 60px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transform: scale(1);
  transition: transform 0.3s;
}

.course-card:hover .course-icon {
  transform: scale(1.2) rotate(5deg);
}



/* ==================================== */
/*     CONTACT FORM GOES HERE      */
/* ==================================== */

.contact-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.contact-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.contact-section .form-control {
  border-radius: 4px;
  padding: 12px;
}

.contact-section .btn {
  background-color: #007bff;
  border: none;
  padding: 12px 30px;
  font-weight: bold;
}


/* ==================================== */
/*     NOtices GOES HERE            */
/* ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.notice-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.notice-card {
    flex: 1 1 calc(25% - 15px); /* 4 cards in a row with gap */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

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

.notice-card-thumb {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.notice-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.notice-card-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    text-align: center;
}

.notice-card-button {
    background-color: rgba(0, 123, 255, 0.85);
    color: #fff;
    padding: 8px 12px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.notice-card-button:hover {
    background-color: rgba(0, 123, 255, 1);
}

.no-image {
    background: #ddd;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
}


/* ==================================== */
/*     GALLARY FORM GOES HERE      */
/* ==================================== */

/* Fix gallery image size */
.gallery-section img {
  width: 100%;
  height: 250px; /* or any fixed height you want */
  object-fit: cover; /* crop nicely instead of stretch */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
  padding: auto;
}



/* ==================================== */
/*     FOOTER GOES HERE      */
/* ==================================== */
.site-footer {
    background-size: cover;
    background-position: center;
    color: #198754;
    padding-top: 60px;
    position: relative;
}

.footer-overlay {
    background-color: rgba(181, 206, 123, 0.6);
    padding: 60px 0;
}

.footer-widgets {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-widget {
    flex: 1;
    min-width: 250px;
}

.site-info {
    background-color: #4564c7;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

.site-info a {
    color: #ccc;
    text-decoration: none;
}
.site-info a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-widgets {
        flex-direction: column;
        text-align: center;
    }
}



/* ==================================== */
/*     About US page */
/* ==================================== */
.about-hero {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.digital-container {
  max-width: 1200px;
  margin: auto;
}

.ehr-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.ehr-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.ehr-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.ehr-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #444;
  max-width: 600px;
}

.demo-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #002244;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.demo-btn:hover {
  background-color: #003366;
}

.ehr-video {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}
/* ==================================== */
/*     About us section */
/* ==================================== */
/* About us section goes here  */
.mission-section .bg-white h3 {
  color: #1e467f;
}

