@import url('https://fonts.googleapis.com/css2?family=Timmana&display=swap');

/* all page using font-sytle  start*/
 /* Fonts */


.sm-contant {
  font-family:'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: black;
}

.sub_heading {

  font-size: 2rem;
  color:#11BDCE; /* Bootstrap red or choose your brand color */
  font-weight: 600;
  font-family:'Roboto', sans-serif;
  letter-spacing: 0.5px;
}

.contant {
  /* font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: black; */
  font-size: 1.5rem;
  /* line-height: 1.6; */
  font-family: 'Roboto', sans-serif;
  color: #555; /* Dark gray for better readability */
}
.contant_main_page {
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: white;
}

/* all page using font-sytle  end*/

/* Navbar */
.navbar {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* background-color: transparent; ✅ Add this line */
}


/* Logo */
.logo img {
  height: 90px;
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 10px;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .logo img {
    height: 70px;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 3px;
  }
}

/* Mobile (below 768px) */
@media (max-width:400px) {
  .logo img {
    height: 50px;
    margin-left: 5px;
    margin-right: 20px;
    margin-top: 0px;
  }
}

/* Navigation Menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap:30px;
}

.nav-menu li a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 50px;
  transition: color 0.3s ease, font-weight 0.3s ease, transform 0.3s ease, border-bottom 0.3s ease;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  border-bottom: 2px solid rgba(128, 128, 128, 1); /* Default underline */
  font-size: 24px;

}

/* Hide icons by default */
.nav-menu li a i {
  display: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show icons on hover */
.nav-menu li a:hover i {
  display: inline-block;
  margin-right:3px;
  transform: scale(1.2);
  opacity: 1;
  border-bottom: none; /* Remove underline */
}

.nav-menu li a:hover {
  color: #12bbce;
  font-weight: bold;
  transform: scale(1.5);
  border-bottom: 2px solid transparent; /* Hide underline on hover */
}

/* Contact Button */
.contact-btn a {
  background-color: #12bbce;
  color: white !important;
  padding: 2px 15px;
  /* border-radius:15px; */
  font-weight: bold;
  transition: transform 0.3s ease;
  border-bottom: none; /* Remove underline */
}

.contact-btn a:hover {
  background-color: #12bbce !important; /* 🔒 Prevent color change */
  color: white !important;
  transform: scale(1);
}



/* Mobile Menu Icon (Hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
  border-radius: 2px;
}

@media (min-width: 350px) and (max-width: 768px) {
  .nav-menu ul {
    border-bottom: none;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 20px;
    background-color: #222;
    width: 150px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Hide icons always on mobile */
  .nav-menu li a i {
    display: none !important;
  }

  /* Override hover effects on mobile */
  .nav-menu li a:hover i {
    display: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .nav-menu li a:hover {
    color: white !important;
    font-weight: normal !important;
    transform: none !important;
    border-bottom: none !important;
  }

  .nav-menu ul.active {
    display: flex;
  }

  .nav-menu li {
    padding: 5px 5px;
  }

  .nav-menu li a {
    color: white !important;
    font-size: 18px;
  }

  .contact-btn a:hover {
    background-color: #12bbce;
    color: white !important;
    font-size: 18px;
  }


  .menu-toggle {
    display: flex;
    margin-right:15px;
  }
}
/* menu code end */


/* Home page css :start */
.hero-section {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* position: relative; */
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-text {
  color: white;
  padding: 15px;
  z-index: 10;
  max-width: 1200px;
  margin-top:35px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text h1 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 4.8rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000;
  line-height: 1;
  word-break: break-word;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
    max-width: 500px;
    margin-top: 35px;
  }
}

/* Buttons Shared */
.btn-about,
.btn-contact {
  padding: 10px;
  font-size: 24px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  transition: all 0.3s ease;
  transform-origin: center;
  width: 200px;
  height: 50px;
  margin: 10px;
}

/* Button Hover Zoom */
.btn-about:hover,
.btn-contact:hover {
  transform: scale(1.15);
}

/* About Us Button */
.btn-about {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  animation: glow1 2s infinite;
}

.btn-about:hover {
  background-color: white;
  color: #DE3710;
}

/* Contact Us Button */
.btn-contact {
  background-color: #DE3710;
  color: white;
  border: none;
  animation: glow 2s infinite;
}

.btn-contact:hover {
  background-color: #b52a0c;
}

/* Animations */
@keyframes glow1 {
  0% { box-shadow: 0 0 2px #ffffff; }
  50% { box-shadow: 0 0 4px 2px #ffffff; }
  100% { box-shadow: 0 0 2px #ffffff; }
}

@keyframes glow {
  0% { box-shadow: 0 0 2px #DE3710; }
  50% { box-shadow: 0 0 4px 2px #DE3710; }
  100% { box-shadow: 0 0 2px #DE3710; }
}

/* Scroll Icon */
.scroll-icon {
  cursor: pointer;
  animation: bounce 1.5s infinite;
  color: white;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Gallery Section */
.carousel-item img {
  height: auto;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .carousel-item .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 380px) {
  .carousel-item .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  color: rgb(255, 37, 37) !important;
}

/* Our Services Section */
.overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  font-size: 1rem;
}

.courses-section .overlay h4.text-info {
  font-size: 3rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  /* margin-bottom: 15px; */
  color:rgb(255, 255, 255) !important; /* Example: deep orange */
}

.courses-section .overlay p {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.courses-section .position-relative {
  height: 100%;
  overflow: hidden;
}

.courses-section .position-relative img {
  height: 100%;
  object-fit: cover;
}

@media (min-width: 350px) {
  .courses-section .overlay h4.text-info {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  
}

.courses-section .overlay p {
  font-size: 1.85rem;
  font-weight: 400;
}
}

@media (min-width: 768px) {
  .courses-section .row > .col-md-6 {
    display: flex;
    flex-direction: column;
  }

  .courses-section .position-relative {
    flex: 1;
  }

  .courses-section .col-md-6:nth-child(4) {
    margin-top: 24px;
  }
  .courses-section .col-md-6:nth-child(2) {
    margin-top: 60px;
  }
  .courses-section .col-md-6:nth-child(3) {
    margin-bottom: 50px;
  }
  .courses-section .col-md-6:nth-child(1) {
    margin-top: 10px;
  }
}

/* Why Choose Us Section */
.text-center {
  color: #DE3710;
}

.why-choose {
  transition: transform 0.4s ease;
}
.why-choose:hover {
  transform: scale(1.05);
}
.choose-section p {
  color: #333;
}

@media (max-width: 767px) {
  .choose-section {
    text-align: center;
    padding-left: 0 !important;
  }
}

/* Home page css end */


/* About , training, business, contact main header pic  css start*/
.hero-section1 {
  width: 100%;
  height: 40vh; /* Or any height like 70vh or 400px depending on your design */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

}

.headerPic{
  color: white;
  text-shadow: 2px 2px 4px #DE3710;
  font-size: 60px; /* optional: adjust as needed */
  font-weight: bold; /* optional: makes it bolder */
  text-align: center; /* optional: center align */
  position: absolute; /* if you want to overlay it on image */
  top: 50%; /* vertically center */
  left: 50%; /* horizontally center */
  bottom: -220px;
  transform: translate(-50%,-50%);
}
/* Tablet (typically 768px - 1024px) */
@media (max-width: 1024px) {
  .headerPic {
    font-size: 40px;
    top: 45%; /* vertically center */
  }
}

/* Mobile (typically below 767px) */
@media (max-width: 767px) {
  .headerPic {
    font-size: 20px;
    top: 48.5%; /* vertically center */
    
  }
}

.hero-section1 img {
  width: 100%;
  height: 800px;
  object-fit: cover; /* Ensures image covers the area without distortion */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 768px) {
  .hero-section1 {
   height: 0vh; /* Shorter height for small devices */
}
}
/* About , training, business, contact main header pic  css END*/

/* Tablet View (768px and below) */
@media (max-width: 768px) {
  .hero-text {
    margin-top: 150px;
    padding: 10px;
  }

  .hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
  }

  .btn-about,
  .btn-contact {
    width: 50%;
    height: 50%;
    max-width: 200px;
    font-size: 18px;
    padding: 8px 16px;
  }

  .scroll-icon {
    font-size: 3.5rem;
  }
}


.why-choose-img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Optional: Custom height for larger screens only */
@media (min-width: 992px) {
  .why-choose-img {
    height: 550px;
  }
}
/* Mobile View (480px and below) */
@media (max-width: 480px) {
  .hero-text {
    margin-top: 50px;
    padding: 0px;
  }

  .hero-text h1 {
    font-size: 1.9rem;
    line-height: 1;
  }

  .mt-5.d-flex.justify-content-center.gap-3 {
    flex-direction: column;
    gap: 15px !important;
    align-items: center;
  }

  .btn-about,
  .btn-contact {
    width: 50%;
    height: 40%;
    max-width: 200px;
    font-size: 14px;
    padding: 5px 10px;
  }

  .scroll-icon {
    font-size: 1rem;
    margin-bottom: 20px
  }
}




/* Course */
.zoom-container {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.zoom-container:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.course-card img {
  transition: transform 0.4s ease;
}

.course-card:hover img {
  transform: scale(1.08);
}

/* Overlay background effect */
.course-card .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
  transition: background 0.4s ease;
}

/* Text adjustments on smaller screens */
@media (max-width: 767.98px) {
  .course-card .overlay h4 {
    font-size: 1.25rem;
  }

  .course-card .overlay p {
    font-size: 0.95rem;
  }
}

@media (max-width: 350px) {
  .course-card .overlay h4 {
    font-size: 0.50rem;
    margin-top: 10px;
    /* line-height: 1; */
  }

  .course-card .overlay p {
    font-size: 0.80rem;
  }
}




/* About us Start coding */
.core-values {
  padding: 40px 20px;
}

.core-value {
  margin-bottom: 30px;
}

.core-value h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member {
  text-align: center;
  margin-bottom: 40px;
  transition: transform 0.5s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.circle-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.team-member h5 {
  margin-top: 10px;
  font-weight: bold;
}

.role {
  color: #f4ad39;
  margin: 5px 0;
}

.description {
  font-size: 14px;
  padding: 0 10px;
}

.value-box {
  text-align: center;
  margin-bottom: 40px;
  transition: transform 0.4s ease-in-out;
  cursor: pointer;
}

.value-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bg-color-box {
  background-color: black;
  color: white;
  padding: 30px 20px;
  height: 100%;
  font-family: 'Roboto', sans-serif;
}

.value-number {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.value-title {
  font-size: 30px;
  font-weight: bold;
}

.value-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.hero-section1 img {
  width: 100%;
  height: auto;
}

.full-width-container {
  width: 100%;
  background-color: black;
  padding: 40px 20px;
  box-sizing: border-box;
}

.sub_heading_about {
  font-size: 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #11BDCE;
  margin-left: 270px;
}

.about_contant {
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: white;
  margin-left: 270px;
}

.about-section {
  width: 50%;
  margin: 0 auto;
}

/* Tablet */
@media (max-width: 992px) {
  .sub_heading_about,
  .about_contant {
    margin-left: 100px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .sub_heading_about,
  .about_contant {
    margin-left: 20px;
    font-size: 22px;
  }
}

/* Responsive about-section */
@media (max-width: 768px) {
  .about-section {
    width: 90%;
  }
}
/* About us End coding */

/* Training Start coding */
/* Tab Button Styles */
.btn-tab {
  background-color: #DE3710;
  border: 1px solid #ccc;
  border-bottom: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  color: white;
  transition: background-color 0.3s, color 0.3s;
}

.btn-tab.active {
  background-color: white;
  border-bottom: 2px solid white;
  color: #000;
}


/* Tab Content Visibility */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Responsive Image Styling */
.section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.image-box {
  height: 300px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-box:hover {
  transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .image-box {
    height: 200px;
  }

  .teacher_tr .col-md-6 {
    margin-bottom: 30px;
  }
}

/* Course Section Typography */
.basic-course-title {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  margin-top: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.basic-course-title i {
  color: #007bff;
  font-size: 1.2em;
}

.basic-course-list {
  padding-left: 2.5rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 1.5rem;
  list-style: none;
  line-height: 1.7;
}

.basic-course-list li {
  margin-bottom: 0.5rem;
}
/* Training End  coding */

/* Business Start  coding */
   /* Images */
   .consulting-img-main,
   .ai-img-extra {
     width: 95%;
     border-radius: 8px;
     transition: transform 0.4s ease, opacity 0.6s ease;
     opacity: 0;
     animation: fadeIn 1s forwards;
   }

   .consulting-img-main {
     height: 400px;
     margin-bottom: 20px;
     object-fit: cover;
   }

   .ai-img-extra {
     height: 250px;
     object-fit: cover;
     margin-bottom: 15px;
   }

   .consulting-img-main:hover,
   .ai-img-extra:hover {
     transform: scale(1.03);
   }

   @keyframes fadeIn {
     to {
       opacity: 1;
     }
   }

   .webType {
     font-size: 18px;
       width: 100%;
       min-height: 120px;
       color: white;
       background: rgba(0, 0, 0, 0.15);
       backdrop-filter: blur(4px);
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       font-weight: 600;
       font-family: 'Poppins', sans-serif;
       text-align: center;
       border-radius: 10px;
       padding: 20px 10px;
       box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       animation: fadeIn 1s ease-in forwards;
       opacity: 0;
   }

.webType:hover {
 transform: translateY(-8px);
 box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.webType i {
 margin-bottom: 5px;
 transition: transform 0.3s ease;
}

.webType:hover i {
 transform: scale(1.2) rotate(5deg);
}

/* Background Colors */
.type1 { background-color: #00bcd4; }  /* Cyan */
.type2 { background-color: #ff6f61; }  /* Coral */
.type3 { background-color: #4caf50; }  /* Green */
.type4 { background-color: #9c27b0; }  /* Purple */

/* Business End  coding */

/* Contact Starting  coding */

.form-container {
  background-color: #d3d3d3;
  padding: 20px;
  border-radius: 8px;
}

.form-control,
.form-select {
  font-size: 14px;
}

.form-label {
  font-weight: 500;
}

.submit-btn {
  background-color: #8cc63f;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 24px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover {
  background-color: #7bb532;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 10px;
}

.branch-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.branch-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.branch-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 10px;
}
/* Responsive height for mobile */
@media (max-width: 768){
  .branch-img {
    height: 300px;
    width: 100%;
  }
}

.branch-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.branch-address,
.branch-contact,
.branch-email {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .branch-grid {
    grid-template-columns: 1fr;
  }
}

/* Fullscreen Overlay */
#imageOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

#imageOverlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
  cursor: zoom-out;
}
/* Contact End  coding */