/* Your custom css code goes here */


    
      
    <style>
        .scroll-container {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            border: 1px solid #ccc;
        }
        .scroll-images {
            display: inline-flex;
            animation: scroll 25s linear infinite;
             transform: translateX(50%); /* Start from center */
        }
        .scroll-images img {
            width: 821px;
            height: 100px;
            margin-right: 10px;
        }
        @keyframes scroll-ltor {
            0% {
                transform: translateX(50%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
         @keyframes scroll-rtol {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(100%);
            }
        }
    </style>
    
   
    
     <style>
        .hidden {
            display: none;
        }
        
       .notification {
            overflow: hidden;
            white-space: nowrap;
           background-color: transparent;
           
            border: 0px solid #ccc;
            padding: 0px 0;
            margin: 0px 0;
            border-radius: 5px;
            position: relative;
            font-size: 16px;
        }

        .notification a {
            display: inline-block;
            color: #007BFF;
            text-decoration: none;
            font-weight: bold;
            animation: scroll-left 30s linear infinite;
        }

        .notification:hover a {
            animation-play-state: paused; /* Pause animation on hover */
        }
        
        .marquee {
    width: 100%;
    overflow: hidden;        /* hides the text until it enters */
    white-space: nowrap;     /* keeps text in one line */
}

.marquee span {
    display: inline-block;
    animation: scroll-left 10s linear infinite;
}

.marquee-text {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    
}

        @keyframes scroll-left {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
    </style>
    
    <style>
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: Arial, sans-serif; }
        .slider-container {
            position: relative;
            width: 100%;
            height: 75%;
            overflow: hidden;
        }
        .slides {
            display: flex;
            width: 100%;
            transition: transform 0.9s ease-in-out;
        }
        .slide {
            min-width: 100%;
            height: 75%;
            position: relative;
        }
        .slide img {
            width: 100%;
            height: 75%;
            object-fit: cover;
        }
        .caption {
              width: 100%;
            text-align: center;
            color: white;
            font-style: italic;
            background: rgba(0, 0, 0, 0.5);
            padding: 2px;
            position: relative;
            height: 5vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 20px;
        }
        .prev { left: 10px; }
        .next { right: 10px; }
    </style>
    
     <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        .containers {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            padding: 10px;
        }
        .columns {
            flex: 1;
            max-width: 50%;
        }
        .columns img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        @media screen and (max-width: 768px) {
            .containers {
                flex-direction: column;
                align-items: center;
            }
            .columns {
                max-width: 100%;
            }
        }
    </style>
	<style>
	
	.navbar {
  background-color: #d9f0ff !important;
}


.navbar a {
  color: white !important; /* Ensures text is visible */
}

.navbar a:hover {
  color: #f1c40f !important; /* Optional: Changes color on hover */
}

 .cq {
            background-color: #225088;
            color: white;
            font-size: 15px;
            font-weight: bold;
            text-align: center;
            height: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
		
		 .cq1 {
            background-color: #203082;
            color: white;
            font-size: 15px;
            font-weight: bold;
            text-align: center;
            height: 60 px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
		
		* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
	</style>
	
	<style>
/* Make all navbar items the same vertical height */
.navbar-nav > li > a {
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 20px;
}

/* Force custom buttons to follow same vertical rhythm */
.navbar-nav > li > a.custom-btn {
  padding: 10px 20px;           /* smaller button look */
  margin-top: 24px;             /* aligns vertically with links */
  margin-bottom: 6px;
  line-height: 20px;           /* matches Home & Courses */
  border-radius: 12px;
  font-size: 14px;
  font-weight: bold;
  color: #fff !important;
  background-color: #077509;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.navbar-nav > li > a.custom-btn:hover {
  transform: scale(1.05);
  background-color: #0056b3; /* optional hover color */
}

</style>


<style>

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
  justify-content: center;  /* center the grid items horizontally */
 
}
.course-card {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.course-card img {
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.course-name {
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 15px;
  background: linear-gradient(to bottom, #FF0000, #8F0000);
    color: white;
  padding: 5px 10px;
  border-radius: 6px;
}
.details {
  margin-bottom: 12px;
  font-size: 14px;
}
.details .row {
  margin-bottom: 6px;
}
.details .label {
  display: inline-block;   /* make it respect width & alignment */
 
  font-weight: bold;
  color: green;
  text-align: left;
  font-size: 14px;
}

.details .value {
  color: #000;
}
.enrol-btn {
  display: inline-block;
  background: #5C0E3B;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}
.students {
  font-style: italic;
  font-size: 13px;
  color: #444;
  margin-top: 10px;
}

/* Responsive */
@media (min-width: 992px) {
  .course-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .course-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
h2 {
  text-align: center;
  font-weight: bold;
  background-color: #fff9c4;
  color: black;
  padding: 10px;
  border-radius: 8px;
}

</style>


<style>
    #admission-form-section * {
      box-sizing: border-box;
    }
    #admission-form-section {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f9fafb;
      max-width: 90%;
      margin: 50px auto;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
    }
    #admission-form-section .left-column {
      flex: 1;
      min-width: 300px;
      overflow: hidden;
    }
    #admission-form-section .left-column img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    #admission-form-section .left-column:hover img {
      transform: scale(1.05);
    }
    #admission-form-section .right-columns {
      flex: 1;
      padding: 40px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: white;
    }
    #admission-form-section h2 {
      margin-bottom: 30px;
      color: #1a1a2e;
      font-weight: 700;
      font-size: 2rem;
    }
    #admission-form-section form {
      width: 100%;
    }
    #admission-form-section .form-group {
      margin-bottom: 20px;
    }
    #admission-form-section label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      color: #222;
    }
    #admission-form-section input[type="text"],
    #admission-form-section input[type="date"],
    #admission-form-section input[type="email"],
    #admission-form-section input[type="tel"],
    #admission-form-section select,
    #admission-form-section textarea {
      width: 100%;
      padding: 12px 15px;
      font-size: 14px;
      border: 1.8px solid #ddd;
      border-radius: 8px;
      transition: border-color 0.3s ease;
      font-family: inherit;
      resize: vertical;
    }
    #admission-form-section input[type="text"]:focus,
    #admission-form-section input[type="date"]:focus,
    #admission-form-section input[type="email"]:focus,
    #admission-form-section input[type="tel"]:focus,
    #admission-form-section select:focus,
    #admission-form-section textarea:focus {
      border-color: #0077ff;
      outline: none;
      box-shadow: 0 0 5px rgba(0,119,255,0.4);
    }
    #admission-form-section button {
      width: 100%;
      background-color: #0077ff;
      color: white;
      border: none;
      padding: 15px 0;
      font-size: 16px;
      font-weight: 700;
      border-radius: 10px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      margin-top: 10px;
    }
    #admission-form-section button:hover {
      background-color: #005fcc;
    }
    @media (max-width: 768px) {
      #admission-form-section {
        flex-direction: column;
        max-width: 90vw;
      }
      #admission-form-section .left-column {
        min-height: 200px;
      }
      #admission-form-section .right-columns {
        padding: 30px 20px;
      }
    }
  </style>

 <style>
    .follow-us-section {
      width: 100%;  /* Ensure it uses full screen width */
      max-width: 1200px; /* Set max width for large screens */
      margin: 0 auto;
      padding: 20px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: #f9f9f9;
    }

    .follow-us-section .follow-text {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 20px;
      text-align: center;
    }

    .follow-us-section .icon-container {
      display: flex;
      justify-content: center;
      gap: 40px; /* Increased gap between icons */
      flex-wrap: wrap;
      width: 100%; /* Ensures full width on mobile */
    }

    .follow-us-section .social-icon {
      font-size: 48px; /* Increased icon size */
      color: #555;
      transition: color 0.3s;
    }

    .follow-us-section .social-icon:hover {
      color: #0077cc;
    }

    @media (max-width: 768px) {
      .follow-us-section {
        padding: 20px;
      }

      .follow-us-section .icon-container {
        justify-content: space-around; /* Center icons on mobile */
      }

      .follow-us-section .social-icon {
        font-size: 36px; /* Slightly smaller icons on mobile */
      }
    }
  </style>
 
  
   <style>
    .contact-section-custom {
      font-family: Arial, sans-serif;
      background-color: #111; /* Fallback background */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      /* Uncomment and add your background image here */
      /* background-image: url('your-section-background.png'); */
    }

    .contact-container-custom {
      display: flex;
      flex-wrap: wrap;
      margin: 0;
      padding: 0;
    }

    .contact-box-custom {
      flex: 1;
      padding: 15px 10px;
      color: white;
      text-align: center;
      min-width: 280px;
    }

    .contact-visit-custom {
       background-color: #ffffff;  /* Dark Blue */
      background-repeat: no-repeat;
      background-position: center;
      /* Optional background image */
      background-image: url('../visit_bg4.png'); 
    }

    .contact-email-custom {
       background-color: #ffffff; /* Dark Pink */
      background-repeat: no-repeat;
      background-position: center;
      /* Optional background image */
      background-image: url('../visit_bg5.png'); 
    }

    .contact-call-custom {
      background-color: #ffffff; /* Dark Orange */
      background-repeat: no-repeat;
      background-position: center;
      /* Optional background image */
      background-image: url('../visit_bg4.png'); 
    }

    .contact-icon-custom {
      font-size: 30px;
      margin-bottom: 10px;
      display: inline-block;
    }

    .contact-line-custom {
      width: 40px;
      height: 2px;
      background-color: white;
      margin: 10px auto;
    }

    .contact-title-custom {
      font-weight: bold;
      letter-spacing: 1px;
      font-size: 18px;
    }

    .contact-text-custom {
      margin-top: 1px;
      line-height: 1.6;
      font-size: 16px;
    }

    @media (max-width: 768px) {
      .contact-box-custom {
        flex: 100%;
      }
    }
  </style>

<style>
    .follow-us-section {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: #f9f9f9;
    }

    .follow-us-section .follow-text {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 20px;
      text-align: center;
    }

    .follow-us-section .icon-container {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      width: 100%;
    }

    .follow-us-section .social-icon {
      font-size: 48px;
      transition: color 0.3s;
    }

    /* Custom icon colors */
    .social-icon[href*="facebook"] {
      color: blue;
    }

    .social-icon[href*="instagram"] {
      color: violet;
    }

    .social-icon[href*="twitter"] {
      color: black;
    }

    .social-icon[href*="youtube"] {
      color: red;
    }

    .follow-us-section .social-icon:hover {
      opacity: 0.8;
    }

    @media (max-width: 768px) {
      .follow-us-section {
        padding: 20px;
      }

      .follow-us-section .icon-container {
        justify-content: space-around;
      }

      .follow-us-section .social-icon {
        font-size: 36px;
      }
    }
  </style>
  