.contact-form .form-control {
  width: 100%;
  height: 55px;               
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 16px;
  box-shadow: none;
  transition: all 0.2s ease;
}

.contact-form .form-control:focus {
  border-color: #198754;      
  box-shadow: 0 0 4px rgba(25,135,84,0.4);
}

.contact-form textarea.form-control {
  height: 150px;              
  resize: none;
}

.contact-form label {
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.contact-form button {
  height: 55px;
  font-size: 18px;
  border-radius: 8px;
}

.gradient-text {
  font-weight: 500;
  background: linear-gradient(90deg, #ffcc00, #ffb300, #ffcc00, #fff176);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease infinite;
}

/* Smooth shine animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Tooltip styling */
.whatsapp-tooltip {
  position: absolute;
  bottom: 70px; 
  right: 0;
  background: #25D366;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  user-select: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  pointer-events: auto;
}
.bgblue .cont ul li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.bgblue .cont ul li::before {
  content: "✔";
  color: #ffcc00;  /* yellow */
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* === Video Section === */
.videosection {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
  background-color: #ffffff;
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}

.videosection .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* === Heading Styling === */
.videosection h4 {
  font-size: 28px;
  font-weight: 700;
  color: #003566;
  margin-top: 0;          
  margin-bottom: 30px;    
}

/* === Video Box (Responsive Frame) === */
.videobox {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.videobox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* === LinkedIn Icon & Text Below Video === */
.linkedin-below-video {
  text-align: center;
  margin-top: 25px;
}

.linkedin-bounce {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0077b5, #003566);
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  box-shadow: 0 6px 18px rgba(0, 119, 181, 0.4);
  transition: all 0.3s ease-in-out;
  animation: bounce 2s infinite ease-in-out;
  text-decoration: none;
}

.linkedin-bounce:hover {
  transform: scale(1.2) rotate(8deg);
  background: linear-gradient(135deg, #005582, #002855);
  box-shadow: 0 10px 25px rgba(0, 85, 130, 0.5);
}

.linkedin-text {
  color: #003566;
  font-weight: 600;
  font-size: 1rem;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden !important;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .videosection {
    padding: 40px 10px;
  }

  .videosection h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .videobox {
    margin-top: 0; 
  }

  .linkedin-bounce {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .linkedin-text {
    font-size: 0.9rem;
  }
}


/* === Footer Styling === */
body {
  margin: 0!important;
  padding: 0!important;
}
.footersections {
  margin: 0 !important;
  padding: 0 10px!important;
}

.footerblue {
  width: 100%;
  background: linear-gradient(135deg, #002855, #003566);
  color: #fff;
  padding: 60px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.footerblue::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 204, 0, 0.15),
    transparent 70%
  );
  transform: rotate(10deg);
}

/* Columns */
.footerdetails {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Section heading */
.footersections strong {
  color: #ffcc00;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 15px;
}

/* About paragraph */
.footersections p {
  color: #fff;
  opacity: 0.9;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}

/* Lists */
.footersections ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footersections ul li {
  margin-bottom: 10px;
  line-height: 1.5;
  transition: transform 0.3s ease;
}

.footersections ul li::before {
  content: "»";
  color: #ffcc00;
  margin-right: 8px;
}

.footersections ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footersections ul li a:hover {
  color: #ffcc00;
  padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .footerdetails {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footersections p {
    max-width: 100%;
  }
}

.bgblue .cont h3 {
  color: #ffcc00 !important; 
  font-weight: 700;
  display: block;
  visibility: visible;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.trainer img,
.herosection img {
  width: auto;
  max-width: none;
  height: auto;
}

@media (max-width: 768px) {
  .trainer img {
    display: none !important;
  }
}

h1 {
  font-size: 3rem;
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .herotext,
  .forrmarea {
    width: 100%;
    margin-bottom: 20px;
  }

  .herotext h1 {
    text-align: center;
  }

  .brdrrad {
    font-size: 14px;
    padding: 8px 12px;
  }
}

.bgyellow {
  background: url(../images/bg-services.jpg) no-repeat center center/cover;
  height: auto;
  padding: 40px 20px;
  color: #003566;
}



.navbar-nav {
  text-align: center;
}

.navbar-nav .nav-item {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .formbg input,
  .formbg .btn {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  section,
  .container,
  .bgyellow,
  .bgblue {
    padding: 15px;
  }
  .heading-with-icon h4 {
    font-size: 20px;
  }
  .footersections strong {
    font-size: 16px;
  }
}







/* Header Contact Button Styling */
.contact-btn {
  margin-left:20px;
  background: linear-gradient(135deg, #003566, #004a99);
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 53, 102, 0.3);
}

.contact-btn:hover {
  background: linear-gradient(135deg, #ffcc00, #ffc300);
  color: #003566;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 204, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .contact-btn {
    width: 80%;
    margin: 8px auto;
    display: block;
  }
}


/* Responsive Navbar Button Fix */
.navbar .btn-primary {
  background-color: #003566 !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  transition: all 0.3s ease !important;
}

.navbar .btn-primary:hover {
  background-color: #ffcc00 !important;
  color: #003566 !important;
  transform: scale(1.05);
}

/* Center button inside collapsed mobile menu */
.navbar-nav .btn-primary {
  display: inline-block !important;
  margin-top: 8px;
  margin-bottom: 10px;
}



.heading-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  width: 100%;
  margin: 30px 0 20px 0;
}

.heading-with-icon h4 {
  color: #003566;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  display: inline-block;
}

.heading-with-icon .linkedin-inline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0077b5, #003566);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 119, 181, 0.3);
}

.heading-with-icon .linkedin-inline:hover {
  transform: scale(1.15) rotate(8deg);
  background: linear-gradient(135deg, #005582, #002855);
  box-shadow: 0 8px 18px rgba(0, 85, 130, 0.5);
  text-decoration: none;
  color: #fff;
}




  



/* === Form Input Equal Size Fix === */
.formbg input[type="text"],
.formbg input[type="email"],
.formbg input[type="tel"] {
  width: 90% !important;
  height: 50px !important;
  border: 1px solid #ccc !important;
  border-radius: 10px !important;
  padding: 10px 15px !important;
  font-size: 16px !important;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 12px !important;
  box-sizing: border-box !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  transition: all 0.3s ease !important;
}

.formbg input[type="text"]:focus,
.formbg input[type="email"]:focus,
.formbg input[type="tel"]:focus {
  border-color: #003566 !important;
  box-shadow: 0 0 6px rgba(0, 53, 102, 0.2) !important;
  outline: none !important;
}

/* === Button Styling Consistency === */
.formbg .btn {
  display: block !important;
  width: 90% !important;
  height: 50px !important;
  background-color: #003566 !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  border: none !important;
  margin: 10px auto 0 auto !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.formbg .btn:hover {
  background-color: #002855 !important;
  transform: scale(1.03) !important;
}






/* Container text alignment */
.cont {
    text-align: center !important;
}

/* Headings */
.cont h3 {
    color: #003566 !important;
    margin-bottom: 1rem !important;
}

/* Paragraphs */
.cont p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}

/* Bullet lists */
.cont ul {
    list-style-position: inside !important; 
    padding-left: 0 !important; 
    margin: 0 auto 1rem auto !important; 
    text-align: left !important; 
    max-width: 500px !important;
}

.cont ul li {
    margin-bottom: 0.5rem !important; 
    line-height: 1.5 !important; 
}

/* Button */
.cont .btn-primary {
    display: inline-block !important;
    padding: 12px 24px !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    color: #fff !important;
    background-color: #007bff !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: background-color 0.3s !important, transform 0.2s !important;
    margin-top: 1rem !important;
}

.cont .btn-primary:hover {
    background-color: #0056b3 !important;
    transform: scale(1.05) !important;
}

/* Remove default link styles inside button */
.cont .btn-primary a {
    color: #fff !important;
    text-decoration: none !important;
}

body{
    margin: 0px;
    padding: 0px;
}

*{
    font-family: "Montserrat", sans-serif;
}

h1,h2,h3,h4,h5,h6,ol,ul,img{
    margin: 0px;
    padding: 0px;
}
p{
    line-height: 23px;
    font-size: 15px;
    padding-bottom: 10px;
}

.bggrey{
    background-color: #fbfbfb;
    color: #003566;
}

.contact-section {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 50px auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .contact-info {
      flex: 1;
      padding: 30px;
      background-color: #ffffff;
      color: #0f0f0f;
    }

    .contact-info h2 {
      margin-top: 0;
    }

    .contact-info p {
      margin: 15px 0;
      line-height: 1.6;
    }

    .contact-form {
      flex: 2;
      padding: 30px;
      background-color: #fff;
    }

    .contact-form h2 {
      margin-top: 0;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
      resize: vertical;
    }

    .contact-form button {
      background-color: #003566;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
    }

    .contact-form button:hover {
      background-color: #C29504;
    }

    .map-container {
      width: 100%;
      height: 400px;
      margin-top: 30px;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: none;
    }


.fulid-container{
    width:100%;
}

.container{
    width: 1200px;
    margin:auto;
}

.bgblue{
    background: #003566;
    padding: 20px;
}

.leadssection{
    background: #003566;
    height: 280px;
    padding: 20px;
    color: #fff;
}

.coursedetails{
    background: #ffcc00;
    height: 580px;
    padding: 20px;
    color: #fff;
}

.logo{
    float: left;
    width: 248px;
    
}

.nav{
    width:460px;
    float: left;
}

.nav ul{
    list-style: none;
}

.nav ul li{
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}
.nav ul li a{
    color: aliceblue;
    text-decoration: none;
    padding-left: 10px;
    padding-right: 10px;
    transition: all .4s;
}

.nav ul li a:hover{
    color: #ccc;
}

.button{
    float:left;
}
.button a{
    transition: all .4s;
}

.button a:hover{
    background-color: #ffcc00;
}

.button a{
   background-color: aliceblue;
   text-decoration: none;
   padding: 10px;
   border-radius: 10px;
}

.navmain{
    width: 600px;
    float: right;padding-top: 10px;
}

.herotext{
    width: 640px;
}

.brdrrad{
    border-radius: 50px;
    border: 1px solid #fff;
    padding: 10px;
    color: #fff;
    text-align: center;
}

.img-fluid{
    max-width: 70%!important;
}

.img-fluid1{
    width: 100%;
}

.clear{
    clear: both;
}

.mt20{
    margin-top:31px;
}

.herotext span{
    color: #fff;
}
.herotext h1{
    margin-top: 20px;
    color: #ffcc00!important;
    font-size: 64px!important;
}
.herotext p{
    padding-top: 10px;
    color: #fff;
}

.forrmarea{
    background: #ccc;
    border-radius:10px;
    padding: 10px;
}
.forrmarea img{
    width:82%;

}
.contentarea{
    width:58%;
    float: left;
    margin-top: 80px;
}
.contentarea ol{
    padding-left: 4%;
    font-size: 15px;
    line-height: 23px;
}

.cont{
    color: #fff;
}

.topbg{
    background-color: #ffcc00;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 1px;
}

.topbg h2 {
    font-size: 18px;
    text-decoration: #fff;

}

.formbg{
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 290px;
    width: 100%;
    padding: 10px;
    padding-top: 20px;
}

input[type="text"]{
    border:1px solid #000;
    padding: 15px;
    width: 90%;
    border-radius: 10px;
    margin-bottom: 10px;
    align
}

input[type="email"]{
    border:1px solid #000;
    padding: 15px;
    width: 90%;
    border-radius: 10px;
    margin-bottom: 10px;
    align
}

.contact-form textarea{
    border:1px solid #000;
    padding: 15px;
    width: 90%;
    border-radius: 10px;
    margin-bottom: 10px;
    align
}

.btn{
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    background-color: #ffcc00;
    margin-top: 10px;
    font-size: 24px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    border: none;
    transition: all .4s;
}

.btn:hover{
    background-color: #C29504;
}

.btnleads{
    width: 20%;
    padding: 10px;
    border-radius: 50px;
    background-color: #fff;
    font-size: 20px;
    text-align: center;
    color: #003566;
    text-decoration: none;
    transition: all .4s;
}

.btnleads:hover{
    border: 1px solid #fff;
    color: #fff;
    background: none;
}

.bgblue1{
    background: #003566;
    height: 220px;
    padding: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.leads{
    width: 70%;
    color: #fff;
    text-align: center;
    padding-top: 18px;
}

.bgyellow{
    background: url(../images/bg-services.jpg) no-repeat;
    background-size: cover;
    height: 800px;
    padding: 20px;
    color: #003566;
    background-position:top;
    position: relative;
}
.modules{
    width: 813px;
    float: left;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 8px;
}
.sections{
    width: 374px;
    padding-top: 20px;
}
.trainer img{
    position: absolute;
    width: 157%;
}

.fa-searchengin{
    font-size: 40px;
    color: #fff;
    padding: 15px;
}

.fa-chart-simple{
    font-size: 40px;
    color: #fff;
    padding: 15px;
}

.fa-square-poll-horizontal{
    font-size: 40px;
    color: #fff;
    padding: 15px;
}

.circle{
    background-color: #003566;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.sections h4{
    padding-top: 12px;
}

.playbutton a{
    font-size: 42px;
    font-weight: 300;
    transition: all .4s;
    text-decoration: none;
    color: #003566;
}

.playbutton a:hover{
    color:brown;
    text-decoration: none;
}

.nav-link{
    color: #fff!important;
}
.btn-primary{
    color: #fff!important;
    background: #003566!important;
}

/*media*/

@media only screen and (max-width:420px){

.container{
    width: 100%;
    height: auto;
}

.herotext{
    width:100%;
}

.herotext h1{
    font-size: 56px;
}
.bgblue{
    height: auto;

}
.forrmarea{
    width: 90%;
    margin: auto;
}
.mt20{
    width: 100%;
}
.contentarea{
    width: 100%;
}

.rghtimg{
    width: 100%;
    padding: 10px;
}
.leads{
    width: 100%;
}
.bgblue1{
    height: auto;
}
.bgyellow{
    background: url(../images/bg-services.jpg) no-repeat;
    background-size: cover;
    height: auto;
    color: #003566;
    background-position:left;
    position: relative;
    display: table;
    }
.trainer img{
    display: none;
}

.bggrey{
    background-color: #ccc;
}

.modules{
    width: 100%;
    height: auto;
}

}
@media only screen and (max-width:576px){

.container{
    width: 100%;

}

.herotext{
    width:100%;
}

.herotext h1{
    font-size: 56px;
}
.bgblue{
    height: auto;

}
.forrmarea{
    width: 90%;
    margin: auto;
}

}








/* Responsive Design for Contact Section */

@media (max-width: 992px) {
  .contact-info {
    border-radius: 10px 10px 0 0 !important;
    padding: 30px !important;
    text-align: center;
  }

  .contact-form {
    border-radius: 0 0 10px 10px !important;
    padding: 30px !important;
  }
}

@media (max-width: 576px) {
  .contact-info, 
  .contact-form {
    padding: 20px !important;
  }

  .contact-form .form-control {
    height: 45px;
    font-size: 15px;
  }

  .contact-form textarea.form-control {
    height: 120px;
  }

  .contact-form button {
    font-size: 16px;
    height: 45px;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 20px;
  }

  .contact-info p {
    font-size: 14px;
  }
}






