    /* 
     * Initial styles to prevent FOUC (Flash of Unstyled Content).
     */
        html {
            visibility: hidden;
            opacity: 0;
        }

        /* NEW STYLES BASED ON DPS LEH DESIGN */
        :root {
            --dps-top-bar-bg: #4D305C;
            --dps-brand-color: #4D305C;
            --dps-button-bg: #df0c03;
            --dps-text-color: #333;
        }

        /* Top Bar Styles */
        .dps-top-bar {
            background-color: var(--dps-top-bar-bg);
            padding: 4px 0;
            font-size: 14px;
        }

        .dps-top-bar .container {
            display: flex;
            justify-content: end;
            align-items: center;
        }

        .dps-top-bar-left,
        .dps-top-bar-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .dps-enroll-btn {
            background-color: var(--dps-button-bg);
            color: white !important;
            padding: 8px 18px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .dps-enroll-btn:hover {
            background-color: #4a786a;
            color: white !important;
        }

        .dps-contact-info a,
        .dps-contact-info span {
            color: var(--dps-text-color);
            text-decoration: none;
        }

        .dps-social-icons a {
            color: var(--dps-text-color);
            text-decoration: none;
            font-size: 1.1rem;
        }

        /* Main Header & Navigation Bar Styles */
        .site-header {
            z-index: 999;
        }
        
        .main-bar {
            background-color: #ffffff !important;
            height: auto !important;
          	padding:8px 0px;
        }
        
        .main-bar .container.clearfix {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-section {
            display: flex;
            align-items: end;
        }

        .logo-section img {
            height: 85px;
            width: auto;
            margin-right: 10px;
        }
        
        .logo-title h1 {
            font-family: 'Montserrat', sans-serif;
            color: var(--dps-brand-color);
            font-size: 24px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .logo-title p {
            font-size: 16px;
            color: #555;
            font-weight: 700;
            text-transform: uppercase;
            padding: 0;
            margin: 0;
        }
          
        .logo-title span{
          font-size: 12px;
        }

        /* Navigation Menu Styles */
        .header-nav .nav>li>a {
            color: var(--dps-text-color) !important;
            font-weight: 600;
            font-size: 14px;
            padding: 12px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .header-nav .nav>li>a:hover {
            color: var(--dps-button-bg) !important;
        }

        .header-nav .nav>li .sub-menu {
            border-top: 2px solid var(--dps-button-bg);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .header-nav .nav>li .sub-menu li a {
            font-size: 15px;
        }

        /* Hide original header elements not present in the new design */
        .page-wraper > .container, 
        .page-wraper > div[style*="background:#D50E0E"] {
            display: none;
        }

          .header-nav .nav>li .sub-menu li a:hover {
    color: #df0c03;
    text-decoration: none;
}
          .clearfix:after, .clearfix:before{
            display:none !important;
          }
          
          
          
        /* === RESPONSIVE STYLES === */
        @media (max-width: 991px) {
            .header-nav {
                /* On mobile, menu takes full width */
                width: 100%;
                margin-top: 15px;
            }

            .logo-title h1 {
                font-size: 0.9rem; /* Smaller font on mobile */
            }
             .logo-title p {
                font-size: 0.7rem;
                line-height: 18px;
            }
          
                    
        .logo-title span{
          font-size: 10px;
        }
          
            .logo-section img {
                height: 65px;
            }
            
            .dps-top-bar .container {
                gap: 10px;
              justify-content:space-between;
            }
          
          
                    .header-nav .nav>li .sub-menu {
            border: 2px solid #fff !important;
          }
          
          

            /* --- STYLING THE HAMBURGER TOGGLER --- */
            .navbar-toggler {
                display: flex !important;
                justify-content: center;
                align-items: center;
                background-color: var(--dps-brand-color) !important; /* Blue background */
                border: none !important;
                border-radius: 8px !important;
                width: 50px;
                height: 50px;
                padding: 0 !important;
            }

            /* Hide the default hamburger lines */
            .navbar-toggler span {
                display: none;
            }

            /* Create the three vertical dots icon */
            .navbar-toggler::before {
                font-family: "Font Awesome 6 Free";
                content: "\f142"; /* Unicode for vertical ellipsis icon */
                font-weight: 900;
                color: white;
                font-size: 1.5rem;
            }
        }
        
         @media (max-width: 576px) {
            .logo-section {
                /* Center the logo and text when screen is very small */
                flex-direction: column;
                text-align: center;
                width: 100%; /* Take up space to allow toggler to be pushed right */
            }
            .logo-section img {
                margin-right: 0;
            }
            .main-bar .container.clearfix {
                position: relative;
            }
            .navbar-toggler {
                right: 0px;
            }
           
           .main-bar{
             padding:0px;
           }
           
         }
          
          
          
          
          .header .header-nav .nav>li.active>a, .header .header-nav .nav>li:hover>a{
            background:white !important;
          }
          .header-nav .nav>li .sub-menu {
            background-color: #fff;
            border: 2px solid #df0c03 !important;
            border-radius:8px !important;
          }
          
          
          
          @media (max-width: 576px) {
    .logo-section {
        display: flex;
        align-items: center;
        flex-direction: row; /* makes items stack vertically */
        text-align: left;      /* centers text */
        width: 100%;             /* full width */
    }
}
@media (max-width: 576px) {
    .logo-section img {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}
          









/* Global and Hero Section */
   .content-inner {
   padding-top: 100px;
   padding-bottom: 100px;
   }
  .principal-message p{
    text-align:justify;
  }

   .library-corner {
     color: #df0c03;
   font-weight: 600;
   font-size: 16px;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 0px;
   }
   .library-corner::after {
   content: '';
   display: block;
   width: 80px;
   height: 3px;
   background-color: #df0c03;
   margin-top: 5px;
   }
   .main-heading {
   display: flex;
   align-items: start;
   justify-content: space-between;
   margin: 30px 0 50px 0;
   }
   .heading-text {
     background-image: linear-gradient(45deg, #000000 33%, #4D305C 51%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
   font-size: 36px;
   font-weight: bold;
   color: #000;
   line-height: 1.1;
   text-transform: uppercase;
   }
   .hero-section-container-fluid {
   overflow: hidden;
   }

   .text-content{
   display:flex;
   flex-direction:column;
   gap:12px;
   }
   /* Add these styles to your existing CSS file */
   .banner-content .text-content h2 {
   color: #fff;
   font-size: 3.5rem; /* Increased font size for impact */
   font-weight: bold;
   margin-top: 0;
   margin-bottom: 25px; /* Added more space below the heading */
   line-height: 1.2;
   }
   .banner-content .text-content p {
   font-size: 1.5rem; /* Larger font for the "Welcome" message */
   margin-bottom: 15px; /* Space between welcome message and main heading */
   }
   /* Styling for the "Book a Meeting" button */
   .book-meeting-btn {
   width:fit-content;
   background-color: transparent;
   border: 1px solid #fff;
   color: #fff;
   padding: 12px 24px;
   text-decoration: none;
   border-radius: 5px;
   font-weight: bold;
   transition: background-color 0.3s, color 0.3s;
   display: inline-block; /* Needed for padding and margins to apply correctly */
   }
   .book-meeting-btn:hover {
   background-color: #fff;
   color: #000 !important;
   }
   /* Owl Carousel Styles */
   .homepage-tall-banner.owl-carousel {
   width: 100%;
   height: 90vh; /* Changed height to 90vh */
   position: relative;
   z-index: 1;
   }
   .homepage-tall-banner .item {
   height: 100% ;
   position: relative; /* Added for content positioning */
   display: flex; /* Added for content alignment */
   align-items: center; /* Vertically center the content */
   }
   .homepage-tall-banner .item img.banner-background {
   width: 100%;
   height: 100%;
   object-fit: cover;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 1;
   }
   /* Black Overlay on the image */
  /** .homepage-tall-banner .item::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: rgba(0, 0, 0, 0.3); 
   z-index: 2;
   }**/
   /* Content on top of the overlay */
   .banner-content {
   position: relative;
   z-index: 3; /* Content should be above the overlay */
   padding: 20px 50px; /* Added some padding */
   display: flex;
   align-items: flex-start; /* Align items to the top */
   gap: 20px; /* Space between image and text */
   max-width: 50%; /* Adjust the width of the content area */
   flex-direction:column;
   }
   .banner-content .left-image img {
   width: 80px; /* Adjust the size of the left image */
   height: auto;
   border-radius: 8px; /* Optional: adds rounded corners */
   }
   .banner-content .text-content {
   color: #fff; /* Set text color to white */
   }
   .banner-content .text-content h2 {
   color:#fff;
   font-size: 2.5rem;
   font-weight: bold;
   margin-top: 0;
   margin-bottom: 10px;
   }
   .banner-content .text-content p {
   font-size: 1rem;
   margin-bottom: 0;
   }
   /* Owl Dots and Nav Styles (unchanged) */
   .owl-dots {
   display: flex;
   justify-content: center;
   align-items: center;
   }
   .homepage-tall-banner.owl-carousel .owl-dots {
   position: absolute;
   bottom: 15px;
   left: 0;
   right: 0;
   text-align: center;
   z-index: 10;
   }
   .homepage-tall-banner.owl-carousel .owl-dot span {
   width: 10px;
   height: 10px;
   margin: 5px 7px;
   background: #fff; /* Changed to white for better visibility on dark overlay */
   display: block;
   -webkit-backface-visibility: visible;
   transition: opacity 200ms ease;
   border-radius: 30px;
   opacity: 0.7;
   }
   .homepage-tall-banner.owl-carousel .owl-dot.active span {
   background: #007bff;
   opacity: 1;
   }
   .owl-nav {
   display: none !important;
   }
   .changing-text{
   padding:10px 0 !important;
   } 
   /* News Widget Styles */
   .hero-widget-column {
   background-color: #fff;
   padding: 0;
   display: flex;
   flex-direction: column;
   height: 100%;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
   }
   .notices-widget {
   background-color: #fff;
   height: 100%;
   display: flex;
   flex-direction: column;
   }
   .notices-widget-header {
   background-color: #4D305C;
   color: #fff;
   padding: 5px 20px;
   font-size: 1em;
   font-weight: bold;
   border-bottom: 1px solid #4D305C;
   }
   .notices-widget-header h2 {
   margin: 0;
   font-size: 1em;
   color: #ffffff;
   }
   .notices-scroller {
   flex-grow: 1;
   overflow: hidden;
   padding: 15px 20px;
   position: relative;
   }
   .notices-scroller-inner {
   position: relative;
   padding-bottom: 1px;
   }
   .notice-item {
   margin-bottom: 15px;
   border-bottom: 1px dashed #eee;
   padding-bottom: 15px;
   }
   .notice-item:last-child {
   border-bottom: none;
   margin-bottom: 0;
   padding-bottom: 0;
   }
   .notice-item-link {
   display: flex;
   text-decoration: none;
   color: #333;
   transition: color 0.3s ease;
   }
   .notice-item-link:hover {
   color: #007bff;
   }
   .notice-date-box {
   background-color: #f0f2f5;
   color: #333;
   padding: 8px 12px;
   text-align: center;
   border-radius: 5px;
   margin-right: 15px;
   min-width: 60px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   line-height: 1.2;
   flex-shrink: 0;
   }
   .notice-date-box .day {
   font-size: 1.6em;
   font-weight: bold;
   }
   .notice-date-box .month {
   font-size: 0.8em;
   text-transform: uppercase;
   }
   .notice-content {
   display: flex;
   flex-direction: column;
   justify-content: center;
   }
   .notice-tag {
   background-color: #e0e6f7;
   color: #0b4585;
   padding: 3px 8px;
   border-radius: 3px;
   font-size: 0.75em;
   font-weight: bold;
   align-self: flex-start;
   margin-bottom: 5px;
   }
   .notice-title {
   margin: 0;
   font-size: 0.95em;
   line-height: 1.4;
   font-weight: 500;
   }
   .notices-widget-footer {
   padding: 15px 20px;
   border-top: 1px solid #eee;
   text-align: right;
   background-color: #fcfcfc;
   }
   .view-all-btn {
   background-color: #005ca9;
   color: #fff;
   padding: 8px 15px;
   border-radius: 5px;
   text-decoration: none;
   font-size: 0.8em;
   transition: background-color 0.3s ease, transform 0.2s ease;
   display: inline-flex;
   align-items: center;
   gap: 5px;
   }
   .view-all-btn:hover{
   color:#fff !important
   }
   /* Latest Event Section */
   .latest-event-section {
   background: #e3e3e3;
   }
   .achievements-title {
   background-color: #005ca9;
   }
   /* Messages/Client Carousel Section */
   .section-head {
   margin-bottom: 40px;
   text-align: center;
   }
   .title {
   font-size: 2.5em;
   margin-bottom: 10px;
   }
   .client-box.style-2 {
   background: #fff;
   border: 1px solid rgba(0, 0, 0, .15);
   box-shadow: 5px 5px 20px -10px rgba(0, 0, 0, .2);
   border-radius: 6px;
   padding: 20px;
   height: 220px;
   margin: 0px;
   display: flex;
   flex-direction: column;
   text-align: center;
   }
   .client-box.style-2:after {
   color: #4D305C !important;
   content: "\f10e";
   font-family: "FontAwesome";
   font-size: 40px;
   position: absolute;
   right: 20px;
   bottom: 15px;
   opacity: 0.2;
   }

   .testimonial-pic1 {
   text-align: center;
   margin-bottom: 15px;
   }
   .testimonial-pic1 img {
   border-radius: 5px !important;
   width: 100%;
   height: 200px;
   object-fit: cover;
   display: inline-block;
   }
   .testimonial-text1 {
   text-align: left;
   margin-top: 10px;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
   }
   .testimonial-text1 p {
   font-size: 1em;
   color: #555;
   margin-bottom: 10px;
   line-height: 1.5em;
   flex-grow: 1;
   }
   .testimonial-detail1 {
   text-align: left;
   margin-bottom: 0px;
   }
  
   .testimonial-detail1 span {
   font-size: 0.9em;
   color: #333;
   font-weight: bold;
   }
   .gradient-bg-light {
   background: linear-gradient(45deg, #4d305c40, #fcfafe, #fcfafe, #4d305c40);
   }
   /* Navigation Arrows */
   .navigation-arrows {
   display: flex;
   gap: 15px;
   }
   .arrow-btn {
   width: 40px;
   height: 40px;
   border: 2px solid #4D305C;
   background: transparent;
   border-radius: 50%;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #4D305C;
   font-size: 37px;
   transition: all 0.3s ease;
   }
   .arrow-btn:hover {
   background-color: #4D305C;
   color: white;
   }
   /* Academics Cards Section */
   .cards-section {
   position: relative;
   }
   .owl-carousel .card {
   background: white;
   border: 1px solid #dedede !important;
   border-radius: 15px;
   padding: 30px 25px;
   margin: 10px;
   height: 280px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
   }
.card.card-1 {
   background-color: #f8e6d8;
   }
   .card.card-2 {
   background-color: #d8f0f0;
   }
   .card.card-3 {
   background-color: #f5f0d8;
   }
   .card.card-4 {
   background-color: #f0d8e6;
   }
   .card.card-5 {
   background-color: #d8f0e6;
   }
   .card.card-6 {
   background-color: #f0f0d8;
   }
   .card-icon {
   width: 80px;
   height: 60px;
   margin-bottom: 15px;
   }
   .card-icon svg {
   width: 100%;
   height: 100%;
   }
   .card-title1 {
   font-size: 18px;
   font-weight: 600;
   margin-bottom: 10px;
   color: #2a2a2a;
   }
   .card-subtitle {
   font-size: 16px;
   color: #e67e22;
   font-weight: 600;
   }
   .card-description {
   font-size: 16px;
   color: #666;
   line-height: 1.4;
   }
   /* Infrastructure / Why Choose Us Section */
   .courses-bx .title {
  font-weight: 600;
  font-size: 18px;
  color: #4D305C !important; /* Deep school blue */
  text-transform: uppercase;
  letter-spacing: 0.5px;
   }
   .text-white {
   color: white !important;
   }
   .courses-bx img{
   width:100% !important
   }
   .courses-bx .title:after {
   display: none;
   background: #4582ff;
   height: 2px;
   width: 50px;
   position: absolute;
   left: 50%;
   top: 0;
   transform: translateX(-50%);
   }
   .chooseusclass p {
   font-size: 15px;
   line-height: 1.5;
   }
   .stat-number {
   color:  #4D305C !important;
   }
   .stat-label {
   font-size: 18px;
   font-weight: 500;
   color: #505050 !important;
     margin-bottom:0px !important;
   }
   .infra-item-padding {
   background:transparent !important;
   box-shadow:none !important;
   padding:0px;
   }
   .infra-item-image {
   width: 100%;
   height: 250px;
   margin: 0 !important;
   border-radius:12px;
       box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15); /* subtle depth effect */

   }


  
  
  /* --- Photo Gallery Section --- */
.gallery-image {
  width: 100%;
  height: 220px; /* keeps all gallery boxes even */
  object-fit: cover; /* fills area without stretching */
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Smooth hover zoom effect */
.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* Optional: for spacing consistency between items */
#lightgallery a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

  
  
  
   /* Faculty Section */
   .faculty-card-img-height img {
   height: 300px !important;
   }
   .faculty-card {
     background:#ffffff;
   overflow: hidden;
   height: 100%;
   display: flex;
   flex-direction: column;
     padding:12px;
     border:1px solid #dedede;
     border-radius:8px;
   }
   .faculty-card a {
   text-decoration: none;
   color: inherit;
   display: flex;
   flex-direction: column;
   flex-grow: 1;
   }
   .faculty-card .faculty-image {
   width: 100%;
   height: 250px !important;
   object-fit: cover;
   display: block;
   }
   .faculty-card .faculty-info {
   padding: 10px 0 0;
   flex-grow: 1;
     text-align:center;
   }
   .faculty-card .faculty-name {
   font-size: 16px;
   font-weight: 600;
   margin-top: 0;
   margin-bottom: 0px;
   color: #333;
   text-transform: uppercase;
   }
   .faculty-card .faculty-designation {
   font-size: 14px;
   color: #6c757d;
   margin-bottom: 0;
   }
   .faculty-carousel .item {
   padding: 0 10px;
   }
   .faculty-carousel.p-lr0 {
   padding-left: 10px;
   padding-right: 10px;
   }
  
     .alumni-carousel .item {
   padding: 0 10px;
   }
   .alumni-carousel .p-lr0 {
   padding-left: 10px;
   padding-right: 10px;
   }
  
   /* Brand Logo Section */
   .brand-logo-section {
   background-color: #ffffff;
   }
   .brand-logo-img {
   height: 50px;
   object-fit:contain;
   }
   /* Modal Popup Styles */
   .modal {
   z-index: 10500000000000000000000000;
   }
   .modal-header {
   background-color: #dc3545;
   color: #ffffff;
   }
   .modal-body {
   text-align: center;
   }
   .modal-backdrop {
   z-index: 1050000;
   background-color: grey;
   }
   .modal-image {
   width: 500px;
   object-fit: contain;
   cursor: pointer;
   }
   .close-button {
   position: absolute;
   top: 10px;
   right: 10px;
   border-radius: 50%;
   height: 30px;
   width: 30px;
   border: none;
   display: flex;
   justify-content: center;
   align-items: center;
   background: rgba(255, 255, 255, 0.8);
   z-index: 1;
   }
   .lg-toolbar .lg-icon{
   color:#fff !important;
   }
   /* Responsive Styles */
   @media (max-width: 1200px) {
   .title {
   font-size: 2.2em;
   }
   .testimonial-pic1 img {
   width: 130px;
   height: 130px;
   }
   }
   @media (max-width: 991.98px) {
   .hero-widget-column {
   height: 400px;
   }
   .homepage-tall-banner.owl-carousel,
   .homepage-tall-banner .item {
   height: 300px;
   }
   .client-box.style-2 {
   height: fit-content !important;
   }
   .notices-widget-footer {
   text-align: left !important;
   }
   .bg-gradient-blue {
   border-bottom-left-radius: 0px !important;
   border-top-left-radius: 0px !important;
   }
   .bg-gradient-green {
   border-bottom-right-radius: 0px !important;
   border-top-right-radius: 0px !important;
   }
   }
   @media (min-width: 1400px) {
   .homepage-tall-banner.owl-carousel,
   .homepage-tall-banner .item {
   height: 745px !important;
   }
   .banner-content .left-image img{
   height:145px;
   width:120px;
   }
   }
   @media (min-width: 992px) {
   .homepage-tall-banner.owl-carousel,
   .homepage-tall-banner .item {
   height: 500px;
   }
   .hero-widget-column {
   height: 500px;
   }
   }
   @media (max-width: 992px) {
   .title { font-size: 2em; }
   .testimonial-text1 p { font-size: 0.9em; }
     .principal-message{padding-left:0px !important;}
   }
   @media (max-width: 768px) {
   .heading-text {
   font-size: 1.8rem;
   }
   .main-heading {
   flex-direction: column;
   align-items: flex-start;
   gap: 20px;
   margin:20px 0 30px !important;
   }
   .title { font-size: 1.8em; }
   .chooseusclass {
   padding-left: 15px;
   padding-right: 15px;
   }
   .chooseusclass p {
   font-size: 14px;
   }
   }
   @media(max-width:767px){
   .client-box.style-2{
   height:fit-content !important;
   }
   }
   @media (max-width: 576px) {
   .title {
   font-size: 1.5em;
   }
   .testimonial-pic1 img {
   width: 90px;
   height: 90px;
   }
   .testimonial-text1 p {
   font-size: 0.8em;
   }
   .chooseusclass p {
   font-size: 13px;
   }
   .chooseusclass {
   padding: 0px !important;
   margin: 0px !important;
   }
   .quicksand_an {
   font-size: 28px !important;
   }
   .quicksand {
   font-size: 16px !important;
   }
   .faculty-card-img-height img{
   height:300px!important;
   }
   }  
   /* Tablet Devices */
   @media (min-width: 768px) and (max-width: 1024px) {
   .banner-content .text-content h2{
   font-size:1.6rem;
   } 
   }
   /* Mobile Devices */
   @media (min-width: 480px) and (max-width: 767px) {
   .banner-content .left-image img{
   }
   .banner-content .text-content h2{
   font-size:1.3rem;
   }  
   .book-meeting-btn{
   padding: 5px 10px;
   }
   }
   /* Small Mobile Devices */
   @media (max-width: 479px) {
   .banner-content .left-image img{
   }
   .banner-content .text-content h2{
   font-size:1.2rem;
   }  
   .book-meeting-btn{
   padding: 5px 10px;
   }
   }
  /* --- Responsive adjustments for small screens --- */
@media (max-width: 767px) {
  .infra-item-image {
    height: 200px; /* slightly smaller on phones */
  }
  .courses-bx .title {
    font-size: 16px;
  }
}

   .unipix-image-container {
   display: flex;
   align-items: flex-start;
   position: relative;
   justify-content: center;
   gap: 20px;
   padding: 20px 0;
   }
   .unipix-image-wrapper {
   width: 50%;
   max-width: 320px;
   }
   .unipix-image-wrapper img {
   width: 100%;
   display: block;
   height:500px;
     object-fit:cover;
   }
   .unipix-campus-image-wrapper {
   padding-top: 40px;
   }
.unipix-ct-index {
    padding: 10px;
    position: absolute;
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: #ffffff;
    border-radius: 50%;
}
   .unipix-ct-index .unipix-innerlogo {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   max-width: 50px;
   }
   @keyframes unipix-spin {
   from { transform: rotate(0deg); }
   to { transform: rotate(360deg); }
   }
   .unipix-rotate-circle {
   animation: unipix-spin 12s linear infinite;
   width: 100%;
   height: 100%;
     border-radius:50%;
   }
   .unipix-text-container {
   text-align: justify;
   }
   .unipix-intro-header {
   display: flex;
   align-items: center;
   gap: 10px;
   color: #800020;
   font-size: 16px;
   font-weight: bold;
   margin-bottom: 10px;
   }
   .unipix-intro-header .icon {
   width: 30px;
   height: auto;
   }
   .unipix-text-container h1 {
   font-size: 48px;
   color: #333;
   margin: 0 0 20px 0;
   font-weight: 700;
   }
   .unipix-text-container p {
   line-height: 1.7;
   margin: 0 0 20px 0;
   color: #666;
   font-size: 16px; /* Explicitly set font size */
   }
   .unipix-info-boxes {
   display: flex;
   gap: 20px;
   margin-top: 30px;
   margin-bottom: 30px;
   }
   .unipix-info-box {
   display: flex;
   align-items: center;
   gap: 15px;
   padding: 20px;
   border: 1px solid #4D305C;
   flex: 1;
   min-width: 200px;
   border-radius:8px;
   }
   .unipix-info-box img {
   width: 50px;
   height: auto;
   }
   .unipix-info-box h3 {
   margin: 0;
   font-size: 18px;
   color: #4D305C !important;
   }
   .unipix-info-box p {
   margin: 0;
   color: #333;
   }
   .unipix-cta-button {
   background-color: #800020;
   color: white;
   border: none;
   padding: 15px 30px;
   font-size: 16px;
   font-weight: bold;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   transition: background-color 0.3s;
   }
   .unipix-cta-button:hover {
   background-color: #6a0019;
   }
   /* --- Responsive Styles for the Section --- */
   @media (max-width: 991px) {
   .unipix-about-section {
   gap: 40px; /* Space between stacked items */
   }
   }
   @media (max-width: 767px) {
   .unipix-text-container h1 {
   font-size: 38px;
   }
   .unipix-campus-image-wrapper {
   display: none; /* Hide the first image on mobile */
   }
   .unipix-image-container {
   flex-direction: column;
   align-items: center;
   gap: 30px;
   }
   .unipix-image-wrapper {
   width: 100%; /* The remaining image takes full width */
   }
   .unipix-ct-index {
   position: relative; /* Becomes part of the normal flow on mobile */
   transform: none;
   left: auto;
   top: -125px;
   order: 1; /* Puts the logo before the student image */
   }
     .margin-in-mob{
       margin-top:-170px !important;
     }
   .unipix-info-boxes {
   flex-direction: column;
   }
   .unipix-cta-button {
   width: 100%;
   justify-content: center;
   }
     .sectiontitle-mob{
       line-height:30px;
     }
   }
      
   .floating-img {
     width:100px;
     margin-right:80px;
    animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); } /* Moves up */
    100% { transform: translateY(0); }
}

 .wid {
     background:#fff;
   border-radius: 8px;
   border: 1px solid #bbbbbb9c;
   flex:  1 1 150px; 
   margin: 10px; 
   padding:24px; 
   text-align: center; 
   }
   .icon img {
   width: 40px;
   height: auto;
   }
   .main-heading1 {
   display: flex;
   align-items: start;
   justify-content: space-between;
   margin: 20px 0 0 0;
   }
   .about-section{
   font-size: 18px;
   font-weight: 500;
   }
  
/* --- Global Button Styling --- */
.btn-newcantt {
  font-weight: 600;
  border-radius: 50px; /* Smooth rounded edges */
  padding: 10px 24px;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease-in-out;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --- Primary Button (Main Action) --- */
.btn-primary-newcantt {
  background-color: #4D305C; /* Deep school blue */
  color: #fff;
  box-shadow:0 3px 10px rgb(129 73 203 / 64%);
}

.btn-primary-newcantt:hover,
.btn-primary-newcantt:focus {
  background-color: #4D305C;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgb(106 0 173 / 35%);
}

/* --- Icon Rotation --- */
.rotate-icon {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.4s ease;
  transform: rotate(-45deg);
}

.btn-newcantt:hover .rotate-icon {
  transform: rotate(0deg);
}

  .collector-card {
         overflow: hidden;
         padding: 30px;
         text-align: center;
         }
         .teamcolor-number{
         font-size: 30px;
         font-weight: bold;
         margin-bottom: 0px;
         }
         .bg-gradient-blue { background: #3db8f770; border-bottom-left-radius: 12px; border-top-left-radius: 12px;}
         .bg-gradient-orange { background: #f77c28ad;}
         .bg-gradient-mitti  { background: #F3F3B9;}
         .bg-gradient-yellow  { background: #f9dc1ca3; }
         .bg-gradient-red  { background: #e54343a6 ;}
         .bg-gradient-green  { background: #33992ba3;  border-bottom-right-radius: 12px; border-top-right-radius: 12px; }



 .action-box .head {
    background: #4D305C !important;
  }
   .wid {
   border-radius: 8px;
   border: 1px solid #bbbbbb9c;
   flex:  1 1 150px; 
   margin: 10px; 
   padding:24px; 
   text-align: center; 
   }
   .icon img {
   width: 40px;
   height: auto;
   }
   .main-heading1 {
   display: flex;
   align-items: start;
   justify-content: space-between;
   margin: 30px 0 0 0;
   }
   .about-section{
   font-size: 18px;
   font-weight: 500;
   }
  .action-box .head .title {
    font-weight: 500;
}

/* 
 * CSS to style your Gallery like the Property Image Showcase 
 */

/* 1. Main container for the showcase. Establishes positioning context for arrows. */
.property-image-showcase {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* 2. Styling for the images within the Owl Carousel slides. */
#gallery-showcase-carousel .item img {
    width: 100%;
    height: 450px; /* Match the height from your original code */
    object-fit: cover; /* Ensures images fill the space without distortion */
    display: block;
}

/* 3. General styling for the navigation arrow buttons. */
.property-arrow-btn {
    position: absolute;
    top: 50%; /* Center vertically */
    transform: translateY(-50%);
    z-index: 100; /* Ensure arrows are on top */
    
    background-color: rgba(0, 0, 0, 0.45); /* Semi-transparent background */
    color: white;
    border: none;
    cursor: pointer;
    
    width: 34px;
    height: 34px;
    border-radius: 50%; /* Rounded corners for the buttons */
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    transition: background-color 0.3s ease;
}

/* 4. Hover effect for the arrows. */
.property-arrow-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* 5. Styling for the arrow icon (the angle bracket). */
.property-arrow-btn span {
    font-size: 16px;
    font-weight: bold;
}

/* 6. Specific positioning for the "previous" and "next" buttons. */
#gallery-prev-btn {
    left: 15px; /* Position on the left */
}

#gallery-next-btn {
    right: 15px; /* Position on the right */
}

/* Hides default Owl Carousel nav if it appears */
.owl-nav {
    display: none !important;
}
.owl-dots {
    display: none !important;
}


        
  .client-box.style-2 {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .15);
    box-shadow: 5px 5px 20px -10px rgba(0, 0, 0, .2);
    border-radius: 4px;
    padding: 20px 20px 20px 190px;
  margin: 0px;
  
}

.client-box.style-2 .testimonial-name {
    font-size: 16px;
    font-weight: 700;
}
.client-box2 {
    position: relative;
}

.client-carousel-3 .owl-item {
    padding: 15px;
}

.client-box {
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}
      
.testimonial-pic img {
   border-radius:5px !important;
    width: 150px;
    height: 150px !important;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-text p {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
}
  .testimonial-text{
    text-align:left
  }

.testimonial-detail {
    text-align: left;
}

.testimonial-name {
    font-size: 1.1em;
    font-weight: 700;
    color: #4D305C!important;
}

.testimonial-detail span {
    font-size: 0.9em;
    color: #888;
}

/* Owl Carousel Navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.owl-prev, .owl-next {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}

.owl-prev:hover, .owl-next:hover {
    background: #f0f0f0;
}
.client-box .testimonial-detail span{
  letter-spacing:0px !important;
}
/* Media Queries */
@media (max-width: 1200px) {
    .title {
        font-size: 2.2em;
    }
    
    .testimonial-pic img {
        width: 150px; /* Slightly smaller for medium screens */
        height: 150px;
    }
}

@media (max-width: 992px) {
    .title {
        font-size: 2em;
    }
    
    .testimonial-pic img {
        width: 150px;
        height: 150px;
    }
    
    .testimonial-text p {
        font-size: 0.85em; /* Smaller font for text */
    }
  .item{
    margin:0px !important;
  }
}

@media (max-width: 768px) {
    .title {
        font-size: 1.8em;
    }
    
    .testimonial-pic img {
        width: 150px;
        height: 150px;
    }
    
    .testimonial-name {
        font-size: 1.1em; /* Adjust name size */
    }

    .testimonial-detail span {
        font-size: 0.9em; /* Adjust span size */
    }
  .item{
    margin:0px !important;
  }
}

@media (max-width: 576px) {
    .title {
        font-size: 1.5em;
    }
        
    .testimonial-pic img {
        width: 80px;
        height: 80px;
    }

    .testimonial-text p {
        font-size: 0.8em; /* Further decrease text size */
    }

    .client-box {
        padding: 15px; /* Reduce padding on smaller screens */
    }
  .item{
    margin:0px !important;
  }
}

 /* --- Theme Colors Applied Directly --- */


     .academics-section1 {
        text-align:center;
    }


    .academics-section .section-subtitle {
        font-size: 1.1rem;
        color: #003366;
        margin-bottom: 5px;
    }

    .academics-section .section-title {
        font-weight: 700;
        font-size: 3rem;
        color: #003366;
        margin-bottom: 50px;
    }

    .department-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding:15px;
        transition: all 0.3s ease-in-out;
        background-color: transparent;
        min-height: 220px;
        border-radius: 0;
      cursor : pointer;
    }

    .department-card .icon-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 32px;
        transition: all 0.3s ease-in-out;
        flex-shrink: 0;
    }

    .department-card .department-name {
        font-size: 18px;
      	line-height:26px;
        font-weight: 600;
        color: #3e3e3e;
        margin-bottom: 5px;
    }

    /* Default Card Styles */
    .department-card .icon-circle {
        background-color: #4d305c2b;
        color: #000000;
        border: 1px solid #4D305C;
        }
    


    .department-card:hover .icon-circle,
    .icon-circle {
        background-color: #4D305C;
        color: #ffffff;
    }
    
    /* --- HR Line Grid Styles --- */
    .grid-item {
        border-bottom: 1px solid #d3d3d3;
        border-right: 1px solid #d3d3d3;
        margin-bottom: 0 !important;
    }
    
    /* For Small screens (stacked) */
    @media (max-width: 767.98px) {
        .grid-item {
            border-right: none;
        }
        .grid-item:last-child {
            border-bottom: none;
        }
    }
    
    /* For Medium screens (2 columns) */
    @media (min-width: 768px) {
        .grid-item:nth-child(2n) {
            border-right: none;
        }
        .grid-item:nth-last-child(-n+2) {
            border-bottom: none;
        }
    }
    
    /* For Large screens (4 columns) */
    @media (min-width: 992px) {
        .grid-item:nth-child(2n) {
            border-right: 1px solid #d3d3d3;
        }
        .grid-item:nth-child(4n) {
            border-right: none;
        }
        .grid-item:nth-last-child(-n+2) {
            border-bottom: 1px solid #d3d3d3;
        }
        .grid-item:nth-last-child(-n+4) {
            border-bottom: none;
        }
    }

    /* Icons for rules and regulations */
    .icon-rules:before { content: "\f0e3"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
    .icon-absence:before { content: "\f274"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
    .icon-assembly:before { content: "\f0c0"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
    .icon-library:before { content: "\f02d"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
    .icon-lab:before { content: "\f0c3"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
    .icon-sports:before { content: "\f091"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
    .icon-exam:before { content: "\f573"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
    .icon-parents:before { content: "\f2b5"; font-family: "Font Awesome 5 Free"; font-weight: 900; }
   
   










 footer .widget_archive ul li, footer .widget_categories ul li, footer .widget_meta ul li, footer .widget_nav_menu li, footer .widget_pages ul li, footer .widget_recent_comments ul li, footer .widget_recent_entries ul li, footer .widget_services ul li{
   border-bottom: none !important;
   }
   .bg-custom{
   background: #df0c03;
   }
   .site-footer .footer-top
   {
   padding: 60px 0 0px;
   }
   .circle {
   width: 25px;
   height: 25px;
   border-radius: 50%;
   background-color: white;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-left: 5px;
   box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
   text-decoration: none;
   padding: 20px;
   }
   .site-footer .widget .footer-title+.dlab-separator {
   margin-bottom: 16px;
   }
   footer .widget_services ul li a {
     color: white !important;
   }
   .info-contact li span{
    color:white !important;
   }
   .widget_getintuch i {
   color: #df0c03;
   }
   .widget_archive ul li:before, .widget_categories ul li:after, .widget_meta ul li:before, .widget_nav_menu ul li:before, .widget_pages ul li:before, .widget_recent_comments ul li:before, .widget_recent_entries ul li:before, .widget_services ul li:before{
   background: #df0c03;
   }
   footer, footer b, footer p, footer strong {
   color: #000;
   }
   footer .widget_archive ul li a, footer .widget_categories ul li a, footer .widget_meta ul li a, footer .widget_nav_menu li a, footer .widget_pages ul li a, footer .widget_recent_comments ul li a, footer .widget_recent_entries ul li a, footer .widget_services ul li a {
   color: #000;
   }
   footer .widget_archive ul li a:hover,
   footer .widget_categories ul li a:hover,
   footer .widget_meta ul li a:hover,
   footer .widget_nav_menu li a:hover,
   footer .widget_pages ul li a:hover,
   footer .widget_recent_comments ul li a:hover,
   footer .widget_recent_entries ul li a:hover,
   footer .widget_services ul li a:hover {
   color: #fff !important; /* hover color black */
   }
   footer a, footer a:visited {
   color: #000;
   }
   .footer-top {
   background: #000;
   padding: 50px 0 20px !important;
   border-top: 1px solid #dedede;
   }
   .site-footer .widget .footer-title {
   color: #fff;
   }
   .footer-bottom {
   background-color: #000000;
   color:#efefef;
   padding: 14px 0;
   }