/* mission and vission  */

.mission-vision-section {
  padding: 60px 20px;
  background: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.box {
  flex: 1 1 45%;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease;
  cursor: pointer;
}

.box:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.box h2 {
  color: #003366;
  margin-bottom: 15px;
}

.box p {
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .box {
    flex: 1 1 100%;
  }
}


/* navbar */


  /* Show dropdown only on hover */
  .menu-main ul li:hover > ul {
    display: block !important;
  }

  /* Fade in animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }





/* gallery section  */

.image-carousel-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.carousel-title {
  font-size: 36px;
  margin-bottom: 35px;
  font-weight: bold;
  color: #003366;
}

.carousel-wrapper {
  position: relative;
  max-width: 95%;
  margin: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-img {
  flex: 0 0 auto;
  width: 450px;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.carousel-img:hover {
  transform: scale(1.06);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 30px;
  padding: 14px 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media (max-width: 1024px) {
  .carousel-img {
    width: 440px;
    height: 360px;
  }

  .carousel-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .carousel-img {
    width: 380px;
    height: 320px;
  }

  .carousel-title {
    font-size: 24px;
  }
}



/* testimaonal  */


.testimonial-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #f8fbff, #e3f2fd);
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  margin-bottom: 0 !important;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s ease;
}

.testimonial-card.active {
  display: flex;
  animation: fadeSlide 1s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #2196f3;
}

.testimonial-text {
  font-size: 15px !important;
  margin-bottom: 15px;
  color: #444;
}

.client-name {
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}

.stars {
  color: #fbc02d;
  font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 600px) {
  .testimonial-card {
    padding: 20px;
  }

  .section-title {
    font-size: 2rem;
  }
}


/* counter slide */

.counter-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.counter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.counter-box {
  flex: 1 1 200px;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.counter-box:hover {
  transform: scale(1.05);
}

.counter-number {
  font-size: 2.5em;
  color: #007bff;
  font-weight: 700;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 1.1em;
  color: #333;
  margin: 0;
}


/* services page */
.hero-background-only {
  background-image: url('/images/Gallery/smk_associates_21.webp'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh; /* Full screen height */
  width: 100%;
}

/* mobile navbar */

/* Toggle Button (Mobile Only) */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  z-index: 1001;
  cursor: pointer;
  color: #333;
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

/* Slide-In Menu */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-slide-menu.active {
  right: 0;
}

.mobile-slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-logo {
  max-height: 40px;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
}

.mobile-menu-list li {
  margin-bottom: 15px;
}

.mobile-menu-list a {
  text-decoration: none;
  font-size: 18px;
  color: #333;
  font-weight: 500;
}

.mobile-menu-list a:hover {
  color: #007bff;
}


.all-services-section {
  padding: 80px 40px;
  background: #ffffff;
  color: #333;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 16px;
  color: #666;
}

.service-category {
  margin-bottom: 60px;
}

.service-category h3 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #2e2e2e;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.service-category h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #6c63ff;
  margin: 10px auto 0;
  border-radius: 4px;
}


.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-box {
  background: #f8f8ff;
  padding: 25px 20px;
  border-radius: 16px;
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: fadeInUp 0.7s forwards;
}

.service-box:hover {
  background: #6c63ff;
  color: #fff;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.2);
}

.service-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.service-box p {
  font-size: 14px;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .all-services-section {
    padding: 50px 20px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .service-category h3 {
    font-size: 20px;
  }
}


.service-box {
  background: #f8f8ff;
  padding: 30px 24px;
  border-radius: 20px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: fadeInUp 0.7s forwards;
  min-height: 220px;
}

.service-box:hover {
  background: #6c63ff;
  color: #fff;
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 20px 45px rgba(108, 99, 255, 0.25);
}

.service-box h4 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  transition: font-size 0.3s ease;
}

.service-box:hover h4 {
  font-size: 22px;
}

.service-box p {
  font-size: 15px;
  line-height: 1.7;
  transition: font-size 0.3s ease;
}

.service-box:hover p {
  font-size: 16px;
}

/* Make cards bigger on all screens */
.service-cards {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}






/* officval certifcate */

.certificate-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #003366;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.certificate-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.certificate-img {
  width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.certificate-img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .certificate-img {
    width: 90%;
    max-width: 300px;
  }
}


/* connect us  */

.contact-intro {
  background-color: #ffffff;
  padding: 80px 30px;
}

.contact-content {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.text-side {
  flex: 1 1 60%;
}

.text-side .sub-heading {
  font-size: 14px;
  color: #888;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 10px;
}

.text-side .main-heading {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.text-side .description {
  font-size: 20px;
  color: #333;
}

.logo-side {
  flex: 1 1 30%;
  text-align: right;
}

.logo-side img {
  max-width: 350px;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    text-align: center;
  }
  .logo-side {
    text-align: center;
  }
  .text-side .main-heading {
    font-size: 30px;
  }
  .text-side .description {
    font-size: 18px;
  }
}


@media (min-width: 992px) {
  .contact-intro {
    margin-top: 80px; /* or whatever value you prefer */
  }
}



/* contact us filr  */

.admission-contact-section {
  background: #f7f7f7;
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.contact-image {
  flex: 1 1 45%;
}

.contact-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.contact-details {
  flex: 1 1 50%;
}

.contact-details h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.phones {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.phone-col p {
  font-size: 18px;
  margin: 8px 0;
}

/* Margin-top only for big screens */
@media (min-width: 992px) {
  .admission-contact-section {
    margin-top: 60px;
  }
}

/* Responsive stacking for small devices */
@media (max-width: 768px) {
  .phones {
    flex-direction: column;
  }
}

.fullmap-section iframe {
  width: 100%;
  height: 100vh;
  border: none;
  display: block;
}

/* career page */
.carrer-background-only {
  background-image: url('/images/Gallery/smk_associates_10.webp'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh; /* Full screen height */
  width: 100%;
}

/* carrer */
.career-form-section {
  background: linear-gradient(to right, #f1f1f1, #e2f3f5);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  max-width: 600px;
  width: 100%;
}

.form-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.career-form .form-group {
  margin-bottom: 20px;
}

.career-form input[type="text"],
.career-form input[type="email"],
.career-form input[type="tel"],
.career-form input[type="file"] {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.career-form input:focus {
  border-color: #0077cc;
  outline: none;
  box-shadow: 0 0 5px #0077cc55;
}

.career-form .file-upload label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.career-form button {
  background-color: #0077cc;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.career-form button:hover {
  background-color: #005fa3;
}

/* Responsive */
@media (max-width: 768px) {
  .form-container {
    padding: 30px 20px;
  }
}


/* General styles for ani-link */
.ani-link {
  position: relative;
  color: #333; /* Default link color */
  text-decoration: none;
  transition: color 0.3s ease; /* Smooth text color change */
}

/* Hover effect */
.ani-link:hover {
  color: #6351ce; /* Change this to your desired hover color */
}

/* Animated underline effect */
.ani-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: #6351ce; /* Match with hover color */
  transition: width 0.3s ease;
}

.ani-link:hover::after {
  width: 100%; /* Animate underline on hover */
}


/* CA */

.hero-Ab {
  background: url('/images/CA_Page.webp') no-repeat center center/cover;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  position: relative;
}


.hero-Acbc {
  background: url('/images/Builders_realestate.webp') no-repeat center center/cover;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  position: relative;
}


.hero-AD{
   background: url('/images/Advisor_SMK.jpeg') no-repeat center center/cover;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  position: relative;

}

.hero-ADad{
   background: url('/images/Builders_realestate01.jpg') no-repeat center center/cover;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  position: relative;

}


.hero-abc {
  background: url('/images/SMK_Associate_img.webp') no-repeat center center/cover;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  position: relative;
  margin-top: 80px !important;
}



/* navbar hover  */

/* Base nav link styles */
.navbar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-nav ul li {
  display: inline-block;
  margin-right: 20px;
}

.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  color: #2c4b60   ; /* default color */
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

/* Hover effect: color change + underline animation */
.navbar-nav .nav-link:hover {
  color: #7ebf3d   ; /* Change this to your preferred hover color */
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  background-color: #2c4b60   ; /* underline color */
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}


/* team head  */

.founders-upgraded {
  padding: 80px 40px;
  background: #f8f9fc;
  text-align: center;
}

.founders-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.founders-title p {
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

.founders-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.founder-card {
  width: 280px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 transparent;
  transform: scale(0.9) translateY(30px);
  opacity: 0;
  animation: zoomInFade 0.7s forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.founder-card:nth-child(1) { animation-delay: 0.2s; }
.founder-card:nth-child(2) { animation-delay: 0.4s; }
.founder-card:nth-child(3) { animation-delay: 0.6s; }

.founder-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.founder-card:hover img {
  transform: scale(1.08);
}

.founder-card:hover {
  transform: scale(1) translateY(-10px);
  box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
}

.founder-info {
  padding: 20px;
  background: #fff;
}

.founder-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #333;
}

.founder-info p {
  font-size: 14px;
  color: #777;
}

/* Animation keyframes */
@keyframes zoomInFade {
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .founders-upgraded {
    padding: 60px 20px;
  }

  .founders-cards {
    flex-direction: column;
    align-items: center;
  }

  .founder-card {
    width: 90%;
    max-width: 350px;
  }

  .founder-card img {
    height: 280px;
  }
}



/* navbar dropdown */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: white;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  min-width: 150px;
}

.dropdown-menu li {
  border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown:hover .dropdown-menu {
  display: block !important;
}

/* Temms page  */

.team-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: #fff;
}

.team-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  padding: 30px;
  gap: 30px;
  align-items: center;
}

.team-image img {
  width: 350px;
  border-radius: 10px;
  object-fit: cover;
}

.team-info {
  flex: 1;
}

.team-info h2 {
  font-size: 32px;
  font-weight: bold;
}

.team-info hr {
  margin: 10px 0 20px;
}

.team-info p {
  font-size: 16px;
  line-height: 1.6;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  color: #0077b5;
  font-weight: 500;
  text-decoration: none;
  margin-top: 10px;
}

.linkedin-link i {
  margin-right: 6px;
}

.org-logos {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.org-logos img {
  height: 50px;
  object-fit: contain;
}


.team-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  padding: 30px;
  gap: 30px;
  align-items: center;
  flex-direction: row; /* Side by side */
}

/* Image styling */
.team-image img {
  width: 350px;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive: Mobile View */
@media (max-width: 768px) {
  .team-card {
    flex-direction: column; /* Stack vertically */
    text-align: center;
  }

  .team-image img {
    width: 100%;
    max-width: 350px;
  }

  .team-info {
    margin-top: 15px;
  }
}

/* drop down */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 999;
  min-width: 150px;
  background: transparent; /* Transparent background */
}

.dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  color: #150075; /* Adjust color as per your theme */
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: rgba(0, 0, 0, 0.05); /* Subtle hover effect */
}




.about-text p {
  letter-spacing: normal;
  line-height: normal;
  text-align: justify !important;
  
}

.dp{
  text-align: justify;
}



/*   appoiment booking  */


.enquiry-section {
  background-color: #e6f6fe;
  padding: 100px 60px;
  border-radius: 16px;
  margin: 30px auto;
  max-width: 1500px;
}

.enquiry-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.enquiry-text {
  flex: 1;
  min-width: 280px;
}

.enquiry-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.enquiry-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.enquiry-button {
  display: inline-block;
  background-color: #001b5e;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.enquiry-button:hover {
  background-color: #003088;
}

.enquiry-image {
  flex: 1;
  min-width: 100px;
  text-align: center;
}

.enquiry-image img {
  max-width: 100%;
  height: auto;
}

/* Hide image on screens smaller than 768px */
@media (max-width: 768px) {
  .enquiry-image {
    display: none;
  }

  .enquiry-text {
    text-align: center;
  }

  .enquiry-button {
    width: 100%;
    text-align: center;
  }
}



/* why us  */

.who-we-are {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 40px;
  background: #fff;
  gap: 40px;
}

.who-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.label {
  text-transform: uppercase;
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.who-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #222;
}

.who-text .desc {
  font-style: italic;
  color: #444;
  margin-bottom: 25px;
}

.who-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.who-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
  color: #333;
}

.who-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #6c63ff;
  font-weight: bold;
}

.read-more {
  background-color: #6c63ff;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
}

.read-more:hover {
  background-color: #5246e2;
}

.who-images {
  display: flex;
  flex: 1 1 500px;
  gap: 20px;
}

.main-image {
  flex: 2;
}

.main-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.side-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-images img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .who-we-are {
    flex-direction: column;
  }

  .who-images {
    flex-direction: column;
  }

  .side-images {
    flex-direction: row;
  }

  .side-images img {
    aspect-ratio: 1/1;
  }
}


.who-images {
  display: flex;
  flex: 1 1 500px;
  gap: 20px;
}

/* Main left image */
.main-image {
  flex: 2;
}

.main-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Right side images stacked */
.side-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-images img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* ✅ Mobile View – Stack all images vertically */
@media (max-width: 768px) {
  .who-images {
    flex-direction: column;
  }

  .side-images {
    flex-direction: column;
  }

  .main-image,
  .side-images img {
    aspect-ratio: unset; /* Allow full height responsiveness */
  }

  .main-image img,
  .side-images img {
    width: 100%;
    height: auto;
  }
}



/* services card  */

.services-section {
  padding: 80px 40px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.7s forwards;
  animation-delay: calc(var(--i) * 0.2s);
}

.service-card:nth-child(1) { --i: 1; }
.service-card:nth-child(2) { --i: 2; }
.service-card:nth-child(3) { --i: 3; }
.service-card:nth-child(4) { --i: 4; }

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.2);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 50px 20px;
  }

  .services-header h2 {
    font-size: 28px;
  }

  .service-card {
    padding: 25px 20px;
  }
}





.why-choose-section {
  background-color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.why-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-header p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-box {
  background-color: #f8f8ff;
  padding: 30px 25px;
  border-radius: 14px;
  transition: 0.4s ease;
  border: 1px solid transparent;
}

.why-box:hover {
  background-color: #6c63ff;
  color: #fff;
  transform: translateY(-10px);
  border-color: #554de8;
  box-shadow: 0 15px 35px rgba(108, 99, 255, 0.2);
}

.why-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.why-box p {
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 50px 20px;
  }

  .why-header h2 {
    font-size: 28px;
  }

  .why-box {
    padding: 25px 20px;
  }
}


/* our Client  */

.clients-section {
  background: #f9f9f9;
  padding: 80px 40px;
  text-align: center;
}

.clients-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.clients-header p {
  color: #555;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.logo-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(250px * 10); /* Adjust based on logo count */
  animation: scroll 20s linear infinite;
  gap: 60px;
  align-items: center;
}

.logo-track img {
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-track img {
    width: 120px;
  }

  .logo-track {
    gap: 30px;
  }

  .clients-section {
    padding: 50px 20px;
  }

  .clients-header h2 {
    font-size: 24px;
  }
}


/* connect us services page  */



.connect-section {
  background: linear-gradient(135deg, #6c63ff, #7f74ff);
  padding: 80px 40px;
  color: #fff;
  text-align: center;
  margin-bottom: -100px !important;
}

.connect-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;

}

.connect-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.connect-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #f3f3f3;
}

.connect-form {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.connect-form:hover {
  transform: translateY(-5px);
}

.connect-form input,
.connect-form textarea {
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  background: #f3f3f3;
  font-size: 15px;
  color: #333;
  transition: 0.3s ease;
}

.connect-form input:focus,
.connect-form textarea:focus {
  outline: none;
  background: #e9e9e9;
}

.connect-form button {
  background: #6c63ff;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.connect-form button:hover {
  background: #5a55e0;
}

/* Responsive */
@media (max-width: 768px) {
  .connect-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .connect-section {
    padding: 60px 20px;
  }

  .connect-text h2 {
    font-size: 28px;
  }
}


/* Section Container */
.expertise-section {
  padding: 60px 20px;
  background-color: #f9fbfc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

/* Title Styling */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #083d77;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #0056b3;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Responsive Grid Layout */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Style */
.expertise-card {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Hover Effects */
.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  background: linear-gradient(145deg, #e0f0ff, #ffffff);
}

/* Icon Styling */
.expertise-card .icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #0a3871;
  transition: transform 0.3s ease;
}

.expertise-card:hover .expertise-card{
  transform: scale(1.2);
}

/* Title */
.expertise-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #102a43;
}

/* Paragraph */
.expertise-card p {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.5;
}

/* ⬇ Force 1-column layout for small devices */
@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .expertise-card {
    text-align: center;
    padding: 25px 15px;
  }

  .expertise-card h3 {
    font-size: 1.05rem;
  }

  .expertise-card p {
    font-size: 0.9rem;
  }
}


/* sandeep sir  */

.sandeep-approach {
  background-color: #f7f9fc;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.approach-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.approach-image img {
  width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.approach-content {
  flex: 1;
}

.approach-content h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.signature {
  font-size: 1rem;
  font-weight: bold;
  color: #555;
}


/* practise */

/* Advocate Practice Areas Section */
.advocate-practice-section {
  background-color: #f8f9fc;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.advocate-practice-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.advocate-practice-title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.advocate-practice-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.advocate-practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.advocate-practice-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advocate-practice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.advocate-practice-card img {
  width: 55px;
  height: 55px;
  margin-bottom: 20px;
}

.advocate-practice-card-title {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.advocate-practice-card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .advocate-practice-title {
    font-size: 2rem;
  }

  .advocate-practice-subtitle {
    font-size: 1rem;
  }

  .advocate-practice-card {
    padding: 20px;
  }
}


/* what we teach for developer  */

.specialization-section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.specialization-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.specialization-left {
  flex: 1;
  min-width: 350px;
}

.image-border {
  border: 4px solid #7ebf3d;
  padding: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.image-border img {
  max-width: 100%;
  max-height: 60%;
  display: block;
}

.specialization-right {
  flex: 1.2;
  min-width: 350px;
}

.title {
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.title .line {
  width: 40px;
  height: 3px;
  background-color: #7ebf3d;
  margin-right: 12px;
}

.subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.specialization-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 60px;
}

.special-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon {
  font-size: 28px;
  color: #7ebf3d;
  flex-shrink: 0;
  margin-top: 4px;
}

.special-box h4 {
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: bold;
  color: #222;
}

.special-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .specialization-container {
    flex-direction: column;
  }
  .specialization-grid {
    grid-template-columns: 1fr;
  }
}



/* show the projects  */


.projects-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.projects-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.projects-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
  filter: brightness(60%);
}

.project-item:hover img {
  filter: brightness(100%);
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  transition: all 0.3s ease;
}

.project-count {
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 20px;
  left: 20px;
}

.project-text h3 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 5px;
}

.project-text p {
  font-size: 14px;
  color: #ddd;
  margin: 0;
}

/* Responsive fix */
@media (max-width: 600px) {
  .project-count {
    font-size: 32px;
  }
}



.split-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  background-color: #f8f9fc;
}

.split-hero-left, .split-hero-right {
  flex: 1 1 500px;
  max-width: 50%;
  padding: 20px;
  box-sizing: border-box;
}

.split-hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

#split-hero-text {
  max-width: 500px;
  animation: textFade 1s ease-in-out;
}

#split-hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #222;
}

#split-hero-text p {
  font-size: 1.2rem;
  color: #444;
}

.split-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-hero-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  animation: zoomImage 7s ease-in-out infinite alternate;
  transition: opacity 0.5s ease;
}

/* Zoom Animation */
@keyframes zoomImage {
  0% {
    transform: scale(1);
    filter: blur(0px);
  }
  100% {
    transform: scale(1.08);
    filter: blur(1.5px);
  }
}

/* Text fade animation */
@keyframes textFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .split-hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .split-hero-left, .split-hero-right {
    max-width: 100%;
  }

  #split-hero-text h1 {
    font-size: 2rem;
  }

  #split-hero-text p {
    font-size: 1rem;
  }
}




