/* Your custom css code goes here */


    #section1{
    width:100%;
    max-width:100%;
}
#section1 .container{
    max-width:100% !important;
}

      
 
        .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%);
            }
        }
   
        .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 10s linear infinite;
        }

        .notification:hover a {
            animation-play-state: paused; /* Pause animation on hover */
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
   
       
        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; }
  
   
        .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%;
            }
        }
 
	
	.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: #ff0e0e;
            color: white;
            font-size: 15px;
            font-weight: bold;
            text-align: center;
            height: 60 px;
            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;
        }
		


/* 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 */
}


/* ================= TEAM SECTION ================= */

#section1 .course-grid{
    max-width:1100px;
    margin:40px auto 0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(240px,1fr));
    justify-items:center;     /* horizontal centering */
    align-items:start;
    gap:35px;
}

/* CARD */
#section1 .course-card{
    width:100%;
    max-width:260px;
    background:#fff;
    border-radius:10px;
    padding:18px 18px 20px;
    text-align:center;
    box-shadow:0 5px 16px rgba(0,0,0,0.12);
    transition:.25s ease;
}

#section1 .course-card:hover{
    transform:translateY(-6px);
}

/* IMAGE (less round) */
#section1 .course-card img{
    display:block;
    margin:0 auto 12px auto;
    width:130px;
    height:130px;
    object-fit:cover;
    border-radius:18px;      /* reduced from circle */
    border:3px solid #ffffff;
    box-shadow:0 4px 12px rgba(0,0,0,.25);
}

/* NAME */
#section1 .course-name{
    font-weight:700;
    font-size:16px;
    margin-top:6px;
    color:#002244;
}

/* DESIGNATION */
#section1 .staff-meta{
    margin-top:6px;
    font-size:14px;
    color:#444;
}




.course-names {
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 15px;

  background: linear-gradient(45deg, #FFFF00, #FFFFFF);

    color: red;
  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;
}

    #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;
      }
    }

    .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 */
      }
    }

    .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;
      color: black;
    }

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

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



    .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;
      }
    }
 
  

            .fancy-heading {
      font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
      font-size: 36px;
      color: #002244;
      text-transform: uppercase;
      text-align: center;
      position: relative;
      display: inline-block;
      padding: 20px 40px;
      background: linear-gradient(145deg, #ffffff, #dfe9f3);
      border-radius: 12px;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
       word-wrap: break-word; /* ensures long words wrap */
      
    }

    .fancy-heading::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 4px;
      background: #ff595e;
      left: 50%;
      bottom: 10px;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    @media (max-width: 480px) {
  .fancy-heading {
    font-size: 22px; /* smaller font on small screens */
    
    
  }
}
 
 /* Default: desktop view */
.desktop-img {
  display: block !important;
  width: 100%;
  height: auto;
}
.mobile-img {
  display: none !important;
}

/* Mobile view: show vertical image instead */
@media (max-width: 768px) {
 .desktop-img {
    display: none !important;
  }
  .mobile-img {
    display: block !important;
    width: 100%;
    height: auto;
  }
}



.scroll-heading {
  background: #173606;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
  font-size: 16px;
  position: sticky;
  top: 0;
  z-index: 10;
}
/* === Layout === */
.two-column-layout {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  box-sizing: border-box;
}

.column {
  box-sizing: border-box;
}

.left {
  flex: 0 0 80%;
  max-width: 80%;
}

.right {
  flex: 0 0 20%;
  max-width: 20%;
  overflow: hidden;
  position: relative;
}

/* === Image Style (Left Column) === */
.left img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* === Scrolling Section === */
.scroll-container {
  height: 250px; /* adjust as needed */
  overflow: hidden;
  position: relative;
}

.scroll-content {
  display: flex;
  flex-direction: column;
  animation: scroll-up 25s linear infinite;
}

  .scroll-content::after {
    content: "";
    display: flex;
  }

/* ✅ Smooth continuous scroll animation */
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* === Student Card === */
.student-card {
  text-align: center;
  margin: 15px 0;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.student-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 8px;
}

.student-card h4 {
  margin: 5px 0 2px;
  font-size: 14px;
  color: #222;
}

.student-card p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

/* === Responsive (Mobile) === */
@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
    align-items: stretch;
  }
  .left, .right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .scroll-container {
    height: 180px;
  }
  
 
  .scroll-content {
    flex-direction: row;
    animation: scroll-left 20s linear infinite;
  }
    .scroll-content::after {
    content: "";
    display: flex;
  }

  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-300%); }
  }

.student-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}



.right-column {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    animation: smoothScroll 10s linear infinite;
        margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  
    .right-column img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    object-fit: cover;
    border-radius: 8px;
  }
  
   @keyframes smoothScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
    /* Duplicate images to make loop seamless */
  .right-column::after {
    content: attr(data-duplicate);
    display: inline-block;
  }






.result-section {
    padding: 30px;
    background: #f5f9ff;
    text-align: center;
    font-family: Arial, sans-serif;
}

.result-section .title {
    font-size: 28px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 25px;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.custom-card {
    width: 420px;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #d3d9e3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.custom-card h3 {
    color: #0056b3;
    margin: 15px 0;
}

.custom-card ul {
    padding-left: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.custom-card .card-logo {
    display: block;
    margin: 0 auto;
    height: 90px;
}

.btn {
    display: block;
    text-align: center;
    background: #4CAF50;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    width: 150px;
    margin: auto;
}

.btn:hover {
    background: #45a049;
}

 .osict-section {
      padding: 40px;
      font-family: Arial, sans-serif;
      background: #f7f7f7;
    }

.osict-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  flex: 0 0 100%; /* BREAK OUT OF FLEX PARENT */
}

 
 .osu-sec {
      background: #002b6f; /* Dark blue */
      color: #fff;
      padding: 40px 20px;
      font-family: Arial, sans-serif;
    }

    .osu-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      max-width: 1100px;
      margin: auto;
    }

    .osu-logo img {
      width: 120px;
      height: auto;
    }

    .osu-text {
      font-size: 18px;
      line-height: 1.5;
    }

    .osu-main-title {
      font-weight: bold;
      font-size: 22px;
    }

    /* Mobile Responsive */
    @media(max-width: 768px) {
      .osu-container {
        flex-direction: column;
        text-align: center;
      }

      .osu-text {
        font-size: 20px;
      }

      /* Only show "Proficiency Test" on mobile */
      .osu-main-title {
        font-size: 24px;
      }
      
      .osu-hide-mobile {
        
      }
    }
  
  

  /* Simple styling for the map container */
        .map-container {
            width: 100%;
            height: 500px; /* Adjust height as needed */
        }
        
          /* Styling for the WhatsApp button */
    .whatsapp-button {
      position: fixed; /* Keeps the button fixed on the screen */
      bottom: 20px; /* Distance from the bottom of the screen */
      right: 20px; /* Distance from the right of the screen */
      background-color: none; /* WhatsApp green color */
      color: white;
      border: none;
      border-radius: 50%;
      padding: 15px;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      text-align: center;
      font-size: 20px;
      z-index: 1000; /* Ensures it appears above other elements */
    }

    .whatsapp-button:hover {
      background-color: #20b957; /* Slightly darker green on hover */
    }

    .whatsapp-button a {
      text-decoration: none;
      color: white;
    }


/* ===== TEAM REAL CENTER FIX ===== */

.team-breakout{
    width:100vw;
    position:relative;
    left:50%;
    transform:translateX(-50%);
    padding:40px 0;
}

/* GRID CENTER */
#section1 .team-grid{
    display:flex !important;
    flex-wrap:wrap;
    justify-content:center;
    gap:40px;
    max-width:1200px;
    margin:40px auto;
}

/* CARD */
#section1 .team-grid .course-card{
    width:260px;
    flex:0 0 260px;
    text-align:center;
}

/* IMAGE */
#section1 .team-grid img{
    display:block;
    margin:0 auto 12px auto;
    width:130px;
    height:130px;
    object-fit:cover;
    border-radius:12px;
}

/* ===== STOP BOOTSTRAP ROW BREAKING TEAM ===== */
#section1 .details .row{
    margin-left:0 !important;
    margin-right:0 !important;
}

#section1 .course-card img{
    border-radius:10px !important;
}

/* ===== FIX FAKE CENTER SHIFT ===== */

/* make heading occupy full width */
#section1 .row{
    margin-left:0 !important;
    margin-right:0 !important;
}

/* center heading properly */
#section1 .fancy-heading{
    display:block !important;
    width:fit-content;
    margin:0 auto 25px auto !important;
}

#section1{
    width:100%;
    max-width:100%;
}
#section1 .container{
    max-width:100% !important;
}

/* ===== ABSOLUTE TEAM CENTER FIX ===== */
#section1 .course-grid{
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    align-items:flex-start !important;
    gap:30px !important;
    max-width:1200px !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

#section1 .course-card{
    width:260px !important;
    flex:0 0 260px !important;
}

#section1 .course-card img{
    display:block !important;
    margin:0 auto !important;
}

/* ===== FIX NAVBAR BUTTON HEIGHT BREAK ===== */

.probootstrap-navbar .navbar-nav > li > a{
    height:50px;
    display:flex;
    align-items:center;
    padding:0 15px !important;
    line-height:normal !important;
}

.probootstrap-navbar .navbar-nav > li > a.custom-btn{
    height:38px !important;
    padding:0 16px !important;
    margin:6px 0 !important;
    display:flex !important;
    align-items:center;
    border-radius:10px;
}
