@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
  /* font-family: 'Poppins', sans-serif; */
}

.zoom-img {
  transition: transform 0.3s ease;
}

.zoom-img:hover {
  transform: scale(1.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 70px;
    margin: 0px;
}

/* Professional Black Navbar */
.navbar {
    background-color: #000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    width: 100%;
}

.navbar .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
    
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    font-weight: 500;
    color: #fff !important;
    padding: 8px 30px !important;
    border-radius: 4px;
    transition: all 0.3s ease;
   
}

.nav-link:hover, .nav-link.active {
    color: #3498db !important;
    background-color: rgba(3, 149, 246, 0.1);
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    color: #fff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas Menu */
.offcanvas {
    background-color: #000 !important;
    width: 280px !important;
}

.offcanvas-header {
    border-bottom: 1px solid #333;
}

.offcanvas-title {
    color: #fff;
}

.btn-close {
    filter: invert(1);
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 1rem;
    }
    body {
        padding-top: 60px;
    }
    .offcanvas {
        width: 75% !important;
    }
}

@media (max-width: 575.98px) {
    .offcanvas {
        width: 85% !important;
    }
}

/* hero section */
#gradient-text {
  background: linear-gradient(90deg, 
    rgb(33, 3, 166) 0%, 
    rgb(192, 2, 151) 50%, 
    rgba(29, 4, 138, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
}

/* .home1{
   color: #011434;
   
} */
.home2{
  font-family:"Roboto", sans-serif ;
  font-size: 3rem;
  font-weight: 800;
}
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .btn1 {
    padding: 12px 40px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, 
                rgba(63, 42, 155, 1) 0%, 
                rgba(199, 87, 175, 1) 50%, 
                rgba(29, 4, 138, 1) 100%);
    background-size: 200% auto;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    display: inline-block;
    text-align: center;
  }
  
  .btn1:hover {
    background-position: right center;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .btn1:active {
    transform: translateY(1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
.home-p{
    font-size: 1rem;
    font-weight: 500;
}  
  .video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
  }
  
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 149, 246, 0.3);
   
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  /* Responsive Text Adjustments */
  @media (max-width: 768px) {
    .hero-section h1 {
      font-size: 2.5rem;
      
    }
    .hero-section .lead {
      font-size: 1.1rem;
    }
}
 @media (max-width: 375px) {
 #gradient-text{
    margin-top: 5px;
  }
 }


/* About Section */

/* CSS */
.about-section {
    padding: 80px 0;
    background-color: #f9f9ff;
  }
  
  .about-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
  }
  .about-h1{
    font-weight: 600;
    font-size: 2rem;
  }
  .about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(3, 149, 246, 0.7);
    transition: transform 0.3s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.02);
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f2d4e;
    margin-bottom: 20px;
    position: relative;
  }
  
  .about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3f2a9b, #c757af);
  }
  
  .about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
  }
  
  .about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .about-list li {
    margin-bottom: 12px;
    color: #444;
    font-weight: 500;
  }
  
  .about-list i {
    color: #3f2a9b;
    margin-right: 8px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-row {
      flex-direction: column-reverse;
    }
    
    .about-text, .about-image {
      min-width: 100%;
    }
    
    .about-text h2 {
      font-size: 1.8rem;
    }
  }
/* Main Section */

/* Offer */
/* About */
.bg_img1{
  background: linear-gradient(to right, rgba(13, 17, 40, 0.7),rgba(253, 97, 0, 0.7)) ,url(../Images/bg_3.jpg);
  background-attachment: fixed;
  background-size: cover;
}
/* About */
/* Courses */
.cimg{
width: 100%;
height: 300px;
}
.c-icon{
font-size: 12px;
font-weight: 600;
}
.main-1{
   font-size: 2.5rem;
   color: #2f2d4e;
   font-weight: 700;
}
#main-1{
  color: #01a0e5;
  font-size: 1.2rem;
  font-weight: 600;
}
.main-img{
  margin-top: 200px;
  height: 90vh;
}
.fa-user-tie, .bxs-time-five, .fa-globe-americas , .fa-briefcase {
  font-size: 40px;
  width: 80px;
  height: 80px;
  background: #00b1fd;
  border-radius: 100%;
  padding: 20px;
}
.fa-user-tie:hover,  .bxs-time-five:hover ,  .fa-globe-americas:hover, .fa-briefcase:hover{
  background: rgb(13, 17, 40);
  color:#00b1fd;
}
.link:hover,h3:hover, h5:hover{
  color: var(--bs-color1);
}

/* service */
/* CSS */
.services-section {
  padding: 80px 0;
  background: #f9f9ff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2f2d4e;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.service-row {
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.reverse {
  flex-direction: row-reverse;
}

.service-img {
  flex: 1;
  min-width: 300px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.03);
}

.service-content {
  flex: 1;
  min-width: 300px;
  padding: 30px;
}

.service-content h3 {
  font-size: 1.8rem;
  color: #3f2a9b;
  margin-bottom: 15px;
  position: relative;
}

.service-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3f2a9b, #c757af);
}

.service-content p {
  color: #555;
  line-height: 1.8;
  margin: 20px 0;
}

.service-content ul {
  list-style: none;
  padding: 0;
}

.service-content li {
  margin-bottom: 10px;
  color: #444;
  font-weight: 500;
}

.service-content i {
  color: #3f2a9b;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .service-card, .reverse {
    flex-direction: column;
  }
  
  .service-img, .service-content {
    min-width: 100%;
  }
  
  .service-content {
    padding: 25px;
  }
}

.service-video {
  flex: 1;
  min-width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
  /* border-radius: 12px 12px 0 0; Match card radius */
}

.service-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 168, 234, 0.2); 
}

/* Remove hover zoom effect for video */
.service-card:hover .service-video video {
  transform: none;
}

/* cards */

/* card */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

#gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  border: none;
  box-shadow: 0 10px 20px rgba(13, 168, 234, 0.5);
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  font-family:  "Montserrat", serif;
  font-size: 0.9rem;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

/* Responsive Image Size */
#card2 {
  height: 40vh;
  width: auto;
  object-fit: cover;
}
.btncrd{
  margin: 10px 0px 10px 0px;
  border-radius: 5px;
  border: 1px solid white;
  background-color:#ffd504 ;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 30px;

}
.btncrd:hover{
  background-color: transparent;
  color: white;
}
#cardh2{
  color:#3f2a9b ;
  font-weight: 700;
}

/* Maintain Card Order in Mobile View */
@media (max-width: 768px) {
  .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Maintain Order on Small Screens (320px) */
@media (max-width: 320px) {
  .custom-order-1 { order: 6; }
  .custom-order-2 { order: 5; }
  .custom-order-3 { order: 4; }
  .custom-order-4 { order: 3; }
  .custom-order-5 { order: 2; }
  .custom-order-6 { order: 1; }

  .card img {
    height: 250px;
  }
  .btncrd{
   margin: 0px 0px 0px 0px;
  }
}
@media (max-width: 375px) {
  .custom-order-1 { order: 6; }
  .custom-order-2 { order: 5; }
  .custom-order-3 { order: 4; }
  .custom-order-4 { order: 3; }
  .custom-order-5 { order: 2; }
  .custom-order-6 { order: 1; }

  .card img {
    height: 250px;
  }
  .btncrd{
   margin: 0px 0px 0px -10px;
  }
}
@media (max-width: 425px) {
  .custom-order-1 { order: 1; }
  .custom-order-2 { order: 2; }
  .custom-order-3 { order: 3; }
  .custom-order-4 { order: 4; }
  .custom-order-5 { order: 5; }
  .custom-order-6 { order: 6; }

  .card img {
    height: 250px;
  }
  .btncrd{
   margin: 0px 0px 0px -10px;
  }
}

/* why choose us */

 .why-choose-us {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.why-choose-us::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.why-choose-us h2 span {
  position: relative;
}

/* .why-choose-us h2 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(231, 76, 60, 0.3);
  z-index: -1;
  transform: rotate(-1deg);
} */

.why-choose-us .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.why-choose-us .icon-circle {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  position: relative;
  border: 2px solid #0276fa;
}

.why-choose-us .icon-circle::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  border: 2px dashed rgba(4, 0, 6, 0.4);
  border-radius: 50%;
  animation: rotate 15s linear infinite;
}

.why-choose-us .icon-circle i {
  font-size: 28px;
  color: #3f2a9b;
 
  z-index: 2;
}

.why-choose-us .feature-content {
  flex: 1;
}

.why-choose-us .feature-content h5 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 8px;
}

.why-choose-us .feature-content p {
  color: #7f8c8d;
  margin-bottom: 0;
  line-height: 1.6;
}

.why-choose-us .btn-primary {
  background: linear-gradient(135deg, #e74c3c, #3498db);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
  margin-top: 20px;
}

.why-choose-us .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.why-choose-us .img-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-us .img-container img {
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
}

.why-choose-us .img-container:hover img {
  transform: scale(1.03);
}

/* Continuous Circle Animation */
@keyframes rotate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .why-choose-us {
      padding: 60px 0;
  }
  
  .why-choose-us h2 {
      font-size: 2rem;
      text-align: center;
  }
  
  .why-choose-us .img-container {
      margin-bottom: 30px;
  }
  
  .why-choose-us .icon-circle {
      width: 60px;
      height: 60px;
      min-width: 60px;
      margin-right: 15px;
  }
  
  .why-choose-us .icon-circle::before {
      width: 75px;
      height: 75px;
  }
  
  .why-choose-us .icon-circle i {
      font-size: 24px;
  }
}

/* our mission */
.hero-section2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  box-sizing: border-box;
}

.mission-content {
  max-width: 800px;
  margin-bottom: 50px;
}

.mission-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mission-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3f2a9b;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 3px solid #00f2ff;
  box-shadow: 0px 0px 10px rgba(2, 240, 253, 0.9); 
   transition: box-shadow 0.2s ease-in-out; 
}

.icon:hover {
  transform: translateY(-5px) scale(1.1);
  background: rgba(255, 255, 255, 0.3);
  color:white ;
}

.whatsapp:hover { background-color: #25D366 !important; }
.linkedin:hover { background-color: #0077B5 !important; }
.instagram:hover { background-color: #E1306C !important; }
.facebook:hover { background-color: #3B5998 !important; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .mission-content h1 {
      font-size: 2rem;
  }
  
  .mission-content p {
      font-size: 1rem;
  }
  
  .icon {
      width: 40px;
      height: 40px;
      font-size: 16px;
  }
}

@media (max-width: 480px) {
  .mission-content h1 {
      font-size: 1.8rem;
  }
  
  .social-icons {
      gap: 15px;
  }
  
  .icon {
      width: 35px;
      height: 35px;
      font-size: 14px;
  }
}


/* swiper */
.profile-carousel-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}

.profile-carousel-wrapper {
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}

.profile-item {
  border-radius: 25px;
  background-color: #FFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-image-section,
.profile-info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}

.profile-image-section {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}

.profile-image-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #4a6cf7;
  border-radius: 25px 25px 0 25px;
}

.profile-image-bg::before,
.profile-image-bg::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #4a6cf7;
}

.profile-image-bg::after {
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}

.profile-pic-container {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}

.profile-pic-container .profile-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4a6cf7;
}

.profile-name {
  font-size: 23px;
  font-weight: 700;
  color: #333;
  margin-top: 10px;
}

.profile-bio {
  font-size: 16px;
  color: #707070;
  text-align: center;
  margin: 10px 0;
}

.profile-btn {
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #4a6cf7;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-btn:hover {
  background: #3a5bd9;
}

.carousel-nav-btn {
  color: #6E93f7;
  transition: color 0.3s ease;
}

.carousel-nav-btn:hover {
  color: #4a6cf7;
}

.carousel-nav-btn::before,
.carousel-nav-btn::after {
  font-size: 35px;
}

.carousel-next-btn {
  right: 0;
}

.carousel-prev-btn {
  left: 0;
}

.carousel-pagination .swiper-pagination-bullet {
  background-color: #6E93f7;
  opacity: 1;
}

.carousel-pagination .swiper-pagination-bullet-active {
  background-color: #4a6cf7;
}

@media screen and (max-width: 768px) {
  .profile-carousel-wrapper {
      margin: 0 10px;
  }
  .carousel-nav-btn {
      display: none;
  }
}

/* form */
/* contact form */
.background-section {
  background-image: url('../Images/form4.jpg'); 
  background-size: cover;
  background-position: center;
  margin: 100px 0px 0px 0px;
  padding: 100px 0; 
  color: #fff; 
}

/* Form Styling */
.contact-form {
  background: rgba(0, 0, 0, 0.5); 
  padding: 30px;
  border-radius: 10px;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
}

.contact-form .form-control::placeholder {
  color: #ccc;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact-form .btn {
  background:linear-gradient(90deg, 
  rgba(63, 42, 155, 1) 0%, 
  rgba(199, 87, 175, 1) 50%, 
  rgba(29, 4, 138, 1) 100%);;
  color: white; 
  font-weight: 800;
  border: none;
  width: 100%;
  padding: 10px;
  font-size: 1.1em;
}

.contact-form .btn:hover {
  background: transparent; 
  border: 2px solid #c4c2c2;
}

/* footer */
/* Footer Styles */
.footer-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('https://fabulous-dolphin-b7fe93.netlify.app/images/background/footer-bg.png') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 60px 0 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-logo{
  width: auto ;
  height: 50px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-logo {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #3498db;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}


.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #3498db;
  transform: translateX(5px);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-contact i {
  margin-right: 10px;
  color: #00b1fd;
  font-size: 25px;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 17px;
  font-weight: 600;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-container {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .footer-heading {
      margin-bottom: 20px;
  }
  
  .footer-section {
      padding: 40px 0 20px;
  }
  
  .footer-heading:after{
      text-align: center;
  }
}

/* whatsapp */
/* WhatsApp Button Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background: linear-gradient(78.53deg, #4b25ea 0%, #bd18e6 30%, #fb590e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  border: none;
  outline: none;
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

/* Popup Styles */
.whatsapp-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 300px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow: hidden;
}

.whatsapp-popup.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.popup-header {
  background-color: #075E54;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.popup-header i {
  font-size: 24px;
}

.popup-header-text {
  flex: 1;
}

.popup-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.popup-header p {
  margin: 3px 0 0;
  font-size: 12px;
  opacity: 0.8;
}

.popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
}

.popup-body {
  padding: 15px;
}

.popup-body p {
  margin: 0 0 15px;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.popup-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  text-align: right;
}

.whatsapp-action {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.whatsapp-action:hover {
  background-color: #128C7E;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .whatsapp-widget {
      bottom: 15px;
      right: 15px;
  }
  
  .whatsapp-popup {
      width: 280px;
      right: -10px;
  }
}

/* About page code */
/* Service page code */
.start-now-text {
  text-shadow: 
    0 0 10px #fff,
    0 0 20px rgba(255, 255, 255, 0.7),
    0 0 30px rgba(255, 255, 255, 0.5);
}

@keyframes glow {
  0% { text-shadow: 0 0 10px #fff; }
  50% { text-shadow: 0 0 20px #fff, 0 0 30px rgba(255, 255, 255, 0.7); }
  100% { text-shadow: 0 0 10px #fff; }
}
@media (max-width: 768px) {
  .start-now-text {
    font-size: 2.5rem;
  }
  .arrow-icon {
    font-size: 2rem;
  }
}

/* Gallery page code */
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
.snip1545 {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 10px;
  min-width: 230px;
  max-width: 315px;
  width: 100%;
  color: #ffffff;
  font-size: 16px;
  background-color: #000000;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.snip1545 *,
.snip1545 *:before,
.snip1545 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.snip1545 img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
}

.snip1545 figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.snip1545 figcaption:before,
.snip1545 figcaption:after,
.snip1545 figcaption div:before,
.snip1545 figcaption div:after {
  opacity: 0;
}

.snip1545 figcaption:before,
.snip1545 figcaption:after {
  height: 50%;
  width: 50%;
  position: absolute;
  content: '';
  background-color: #7a0189;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.snip1545 figcaption:before {
  top: 0;
  left: 0;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.snip1545 figcaption:after {
  bottom: 0;
  right: 0;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

.snip1545 figcaption div:before,
.snip1545 figcaption div:after {
  width: 50%;
  height: 50%;
  position: absolute;
  content: '';
  background-color: #000000;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.snip1545 figcaption div:before {
  top: 0;
  right: 0;
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
}

.snip1545 figcaption div:after {
  bottom: 0;
  left: 0;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.snip1545 i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 4em;
  z-index: 1;
  opacity: 0;
}

.snip1545 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.snip1545:hover img,
.snip1545.hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  opacity: 0.5;
}

.snip1545:hover i,
.snip1545.hover i {
  opacity: 0.7;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.snip1545:hover figcaption:before,
.snip1545.hover figcaption:before,
.snip1545:hover figcaption:after,
.snip1545.hover figcaption:after,
.snip1545:hover figcaption div:before,
.snip1545.hover figcaption div:before,
.snip1545:hover figcaption div:after,
.snip1545.hover figcaption div:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 0.8;
}

/* accodien contact page code */
.accordion-button:not(.collapsed) .accordion-icon::before {
  content: "\f068"; /* Font Awesome minus icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.accordion-button.collapsed .accordion-icon::before {
  content: "\2b"; /* Font Awesome plus icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
 
}
/* .main-3{
  font-size: 1.4rem;
  color: purple;
} */
#acc1{
  /* background:linear-gradient(90deg, 
  rgba(63, 42, 155, 1) 0%, 
  rgba(199, 87, 175, 1) 50%, 
  rgba(29, 4, 138, 1) 100%);; */
  border: 2px solid #035bff;

}
.accordion-icon {
  font-size: 0.8rem;
  transition: transform 0.2s ease-in-out;
  
}
.acco2 {
  font-weight: 600;
  font-size: 1.2rem;
}
.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(0deg);
}
/* review code */
.reviews-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 350px; /* Reduced height */
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.checked {
  color: gold;
  font-size: 1.5rem;
}

.review-text {
  max-width: 600px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .reviews-section {
    height: 300px;
    
  }
  
  h2.display-6 {
    font-size: 1.8rem;
  }
  
  .checked {
    font-size: 1.2rem;
  }
  
  .review-text {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .btn-md {
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* service page code */
.study-abroad-section {
  /* background-color: #f8f9fa; */
  border-radius: 15px;
}

.transparent-image {
  opacity: 0.9;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.study-benefits {
  list-style: none;
  padding-left: 0;
}

.study-benefits li {
  margin-bottom: 8px;
}

.study-benefits i {
  color: #28a745;
  margin-right: 10px;
}

.study-btn {
  background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
}

.study-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  color: white;
}

@media (max-width: 768px) {
  .study-abroad-section {
    text-align: center;
  }
  
  .study-benefits {
    text-align: left;
    display: inline-block;
  }
}

/* reviews */
/* .home3{
  font-size: 2rem;
  font-weight: 600;
} */
.review-name{
  color: #8b038b;
  
}
.reviews-section {
  position: relative;
}
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 0;
}
.review-item {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  border: 3px solid #05eefe;
  padding: 15px;
  max-width: 300px;
  margin: 0 auto;
}
.reviews-carousel-container {
  min-height: 150px;
}
.carousel {
  margin-bottom: 20px;
}
.carousel-item {
  transition: transform 0.8s ease-in-out;
}
@media (max-width: 768px) {
  .d-none.d-md-flex {
    display: none !important;
  }
  .carousel-item > div {
    max-width: 500px;
  }
  
}
.carousel-control-prev,
.carousel-control-next {
  width: 5%; /* narrower buttons */
}

.carousel-control-prev {
  left: -10px; /* push it more left */
}

.carousel-control-next {
  right: -10px; /* push it more right */
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    left: 10px;
    right: 10px;
    width: 10%;
  }
} 
@media (max-width: 375px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}
@media (max-width: 425px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}


/* whatsapp */

/* Floating Chat Button */
.main-chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.main-chat-btn {
  background:linear-gradient(90deg, 
  rgba(63, 42, 155, 1) 0%, 
  rgba(199, 87, 175, 1) 50%, 
  rgba(29, 4, 138, 1) 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  padding: 15px;
  
  cursor: pointer;
  animation: bounce 2s infinite;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Chat Dropdown */
.chat-options {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 70px;
  right: 0;
  
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.chat-option {
  background: #fff;
  padding: 10px 15px;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  transition: background 0.3s;
  width: 180px;
}

.chat-option:hover {
  background-color: #f1f1f1;
}

/* Chat Popup */
.chat-popup {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 9999;
}

/* Chat Header */
.chat-header {
  background-color: #007bff;
  color: #fff;
  padding: 12px 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

/* Chat Messages */
.chat-messages {
  background: #f9f9f9;
  padding: 15px;
  height: 220px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.5;
}

/* Chat Input */
.chat-input {
  display: flex;
  border-top: 1px solid #ddd;
  padding: 10px;
  background: #fff;
}

.chat-input input {
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-right: 8px;
}

.chat-input button {
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.chat-input button:hover {
  background-color: #0056b3;
}

/* Responsive Fix */
@media (max-width: 480px) {
  .chat-popup {
    right: 10px;
    width: 90%;
  }
}
.recognized-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
}

.grayscale-img {
  filter: grayscale(100%);
  transition: 0.3s ease-in-out;
}

.grayscale-img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.card-img-top {
  height: 108px;
  object-fit: cover;
}
