 /*
Theme Name: ShanvikTech Solutions
Description: Custom WordPress theme for ShanvikTech Solutions LLP
Version: 1.0
*/
 

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f9f9f9;
  overflow-x: hidden;
}

/* ===== Top Header ===== */
.top-header {
  background-color: #63d8e9;
  color: #393A3C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;
  font-size: 14px;
}

.top-header .left span,
.top-header .right span {
  margin: 0 5px;
}

.top-header .right i {
  margin-right: 5px;
  color: #aeea00;
}

/* ===== Main Header ===== */
header {
  background-color: #393A3C;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-section img {
  height: 90px;
  max-width: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text h2 {
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.logo-text p {
  font-size: 12px;
  color: #63d8e9;
}

/* Responsive Dropdown Adjustments */
nav ul li.menu-item-has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

nav ul li.open > a::after {
  transform: rotate(180deg);
}

nav ul li .sub-menu {
  display: none;
  position: absolute;
  background: #111;
  min-width: 220px;
  left: 0;
  top: 100%;
  z-index: 999;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

nav ul li:hover > .sub-menu {
  display: block;
}

nav ul li.open > .sub-menu {
  display: block;
}

/* Mobile-friendly submenu */
@media (max-width: 768px) {
  nav ul li .sub-menu {
    position: static;
    background: #2c2c2c;
    box-shadow: none;
    border-radius: 0;
    padding-left: 15px;
  }
}



/* ===== Mobile Navigation ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 101;
}

/* ===== Inner Page / Hero Banner ===== */
.hero-banner {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-banner .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  background: rgba(0,0,0,0.35);
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.2rem;
  color: #b2ebf2;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: #00bcd4;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-btn:hover {
  background: #393A3C;
  transform: translateY(-2px);
}

/* Hero Caption Animations */
@keyframes spreadH2 {
  0% { transform: translateX(0) scale(0.8); opacity: 0; }
  100% { transform: translateX(-10px) scale(1); opacity: 1; }
}

@keyframes spreadP {
  0% { transform: translateX(0) scale(0.8); opacity: 0; }
  100% { transform: translateX(70px) scale(1); opacity: 1; }
}

@keyframes fadeUpBtn {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.hero-slider .slide.active .caption h2 { animation: spreadH2 5s ease forwards; }
.hero-slider .slide.active .caption p { animation: spreadP 5s ease 0.3s forwards; }
.hero-slider .slide.active .caption .hero-btn { animation: fadeUpBtn 5s ease 0.6s forwards; }

/* Inner Banner Responsive */
@media (max-width: 768px) {
  .hero-banner, .inner-banner, .hero-banner img {
    height: 300px;
  }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .hero-content { padding: 20px; }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  header, .top-header { padding: 10px 30px; }
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: #393A3C;
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }
  nav.active { left: 0; }
  nav ul { flex-direction: column; width: 100%; }
  nav ul li { width: 100%; text-align: left; }
  nav ul li a { padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 480px) {
  .logo-section { flex-direction: column; gap: 5px; }
  .logo-section img { height: 60px; }
}

    
    /* ===== About Us Section ===== */
    .about {
      padding: 80px 60px;
      background-color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .about-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1380px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .about-images {
      flex: 1;
      position: relative;
      min-height: 500px;
      margin-bottom: 30px;
      opacity: 0;
      transform: translateX(-50px);
      transition: all 1s ease;
    }

    .about-images.animate {
      opacity: 1;
      transform: translateX(0);
    }

    .image-main {
      width: 70%;
      height: 350px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      margin-left:5%;
    }

    .image-secondary {
      width: 70%;
      height: 380px;
      object-fit: cover;
      border-radius: 10px;
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 1;
      border: 8px solid white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .about-content {
      flex: 1;
      padding-left: 60px;
      opacity: 0;
      transform: translateX(50px);
      transition: all 1s ease;
    }

    .about-content.animate {
      opacity: 1;
      transform: translateX(0);
    }

    .about-content h2 {
      font-size: 33px;
      color: #63d8e9;
      margin-bottom: 20px;
      font-weight: 600;
      position: relative;
      display: inline-block;
    }

    .about-content h2:after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 4px;
      background-color: #393A3C;
      border-radius: 2px;
    }

    .about-content h3 {
      font-size: 18px;
      margin-bottom: 15px;
      color: #333;
    }

    .about-content p {
      font-size: 16px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 20px;
    }

    .about-features {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 30px;
    }

    .feature {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1 1 45%;
      padding: 10px;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .feature:hover {
      background-color: rgba(0, 150, 136, 0.05);
      transform: translateY(-3px);
    }

    .feature i {
      color: #009688;
      font-size: 20px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 150, 136, 0.1);
      border-radius: 50%;
    }

    .feature span {
      font-size: 15px;
      color: #333;
      font-weight: 500;
    }

    .about-stats {
      display: flex;
      justify-content: space-between;
      margin-top: 40px;
      padding-top: 30px;
      border-top: 1px solid #eee;
      flex-wrap: wrap;
    }

    .stat {
      text-align: center;
      flex: 1;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .stat.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .stat-number {
      font-size: 36px;
      font-weight: 700;
      color: #009688;
      margin-bottom: 5px;
    }

    .stat-label {
      font-size: 14px;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Read More button styles */
    .read-more-btn {
      background-color: #63d8e9;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 15px;
      border-radius: 4px;
      cursor: pointer;
      transition: 0.3s ease;
      margin-bottom: 20px;
    }
    .read-more-btn:hover {
      background-color: #393A3C;
      transform: translateY(-2px);
    }

    .more-text {
      display: none;
    }
    .show-text .more-text {
      display: inline;
    }

    /* ===== WHY CHOOSE US SECTION ===== */
    .whycore-section {
      padding: 100px 40px;
      background-color: #fff;
      font-family: "Poppins", sans-serif;
      overflow: hidden;
    }

    .whycore-container {
      max-width: 1300px;
      margin: 0 auto;
      text-align: center;
    }

    .whycore-subtitle {
      color: #63d8e9;
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .whycore-header h2 {
      font-size: 36px;
      color: #042A57;
      margin-bottom: 15px;
    }

    .whycore-underline {
      display: block;
      width: 80px;
      height: 3px;
      background-color: #63d8e9;
      margin: 0 auto 60px;
      border-radius: 2px;
    }

    .whycore-features {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 60px;
      flex-wrap: wrap;
    }

    .whycore-left, .whycore-right {
      display: flex;
      flex-direction: column;
      gap: 50px;
      max-width: 280px;
    }

    .whycore-box {
      text-align: left;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
    }

    .whycore-box.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .whycore-icon {
      width: 65px;
      height: 65px;
      background-color: #63d8e9;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      margin-bottom: 15px;
      color: white;
      font-size: 24px;
      box-shadow: 0 6px 15px rgba(99, 216, 233, 0.5);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .whycore-box:hover .whycore-icon {
      transform: rotate(10deg) scale(1.1);
      box-shadow: 0 10px 25px rgba(99, 216, 233, 0.6);
    }

    .whycore-box h3 {
      font-size: 20px;
      color: #042A57;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .whycore-box p {
      font-size: 15px;
      color: #555;
    }

    .whycore-image {
      opacity: 0;
      transform: scale(0.9);
      transition: all 0.8s ease;
    }

    .whycore-image.animate {
      opacity: 1;
      transform: scale(1);
    }

    .whycore-image img {
      width: 460px;
      max-width: 100%;
      border-radius: 15px;
      box-shadow: 0 25px 45px rgba(0,0,0,0.15);
      margin-top:50px;
    }

     /* ===== SOLUTIONS SECTION ===== */
    .sol-section {
      background: radial-gradient(circle at top left, #0b0b0b 0%, #111 100%);
      color: #fff;
      padding: 110px 40px;
      font-family: "Poppins", sans-serif;
      overflow: hidden;
    }

    .sol-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .sol-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 80px;
      flex-wrap: wrap;
    }

    .sol-text {
      flex: 1 1 600px;
      opacity: 0;
      transform: translateX(-50px);
      transition: all 1s ease;
    }

    .sol-text.animate {
      opacity: 1;
      transform: translateX(0);
    }

    .sol-text h2 {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .sol-text h2 span {
      color: #63d8e9;
    }

    .sol-intro {
      font-size: 16px;
      color: #bbb;
      line-height: 1.8;
      margin-bottom: 45px;
      max-width: 600px;
    }

    .sol-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px 40px;
    }

    .sol-box {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      padding: 15px 10px;
      border-left: 2px solid transparent;
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(20px);
    }

    .sol-box.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .sol-box:hover {
      border-left: 2px solid #63d8e9;
      transform: translateX(6px);
    }

    .sol-icon {
      background: rgba(99, 216, 233, 0.12);
      color: #63d8e9;
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px rgba(99, 216, 233, 0.3);
    }

    .sol-box:hover .sol-icon {
      background: #63d8e9;
      color: #0b0b0b;
      transform: scale(1.1);
      box-shadow: 0 0 25px rgba(99, 216, 233, 0.8);
    }

    .sol-info h3 {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 5px;
      color: #fff;
    }

    .sol-info p {
      color: #aaa;
      font-size: 14px;
      line-height: 1.6;
    }

    .sol-image {
      flex: 1 1 500px;
      position: relative;
      text-align: center;
      opacity: 0;
      transform: translateX(50px);
      transition: all 1s ease;
    }

    .sol-image.animate {
      opacity: 1;
      transform: translateX(0);
    }

    .sol-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 15px;
      position: relative;
      z-index: 2;
    }

    .sol-glow {
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(99,216,233,0.35), transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      filter: blur(100px);
      z-index: 1;
      opacity: 0.8;
    }

    /* ===== OUR SERVICES SECTION ===== */
    .our-services-v2 {
      padding: 100px 40px;
      background: #f9fbfd;
      font-family: "Poppins", sans-serif;
      text-align: center;
    }

    .os-header h2 {
      font-size: 38px;
      font-weight: 700;
      color: #042A57;
      margin-bottom: 10px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .os-header h2.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .os-subtitle {
      color: #63d8e9;
      font-weight: 600;
      margin-bottom: 15px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease 0.2s;
    }

    .os-subtitle.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .os-desc {
      color: #555;
      font-size: 15px;
      max-width: 750px;
      margin: 0 auto 60px;
      line-height: 1.7;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease 0.4s;
    }

    .os-desc.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .os-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .os-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      position: relative;
      opacity: 0;
      transform: translateY(40px);
    }

    .os-card.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .os-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(99, 216, 233, 0.3);
    }

    .os-image {
      position: relative;
    }

    .os-image img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      display: block;
    }

    .os-icon {
      position: absolute;
      bottom: -25px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #63d8e9, #007bbd);
      color: #fff;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      box-shadow: 0 10px 20px rgba(99, 216, 233, 0.4);
    }

    .os-content {
      padding: 50px 25px 30px;
    }

    .os-content h3 {
      font-size: 18px;
      font-weight: 700;
      color: #042A57;
      margin-bottom: 12px;
      text-transform:uppercase;
    }
    
    .os-content h4 {
      font-size: 18px;
      font-weight: 700;
      color: #042A57;
      margin-bottom: 12px;
    }

    .os-content p {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }

    /* ===== PARTNER SECTION ===== */
    .partner-section {
      position: relative;
      background: url('https://infonez.com/shanvitechwp/wp-content/uploads/2025/10/IT-Business-Partner.jpg') 
                  center/cover no-repeat;
      padding: 120px 20px;
      color: #fff;
      text-align: center;
      overflow: hidden;
      height: 500px;
    }

    .partner-section .overlay {
      position: absolute;
      inset: 0;
      background: rgba(3, 18, 40, 0.8);
      backdrop-filter: blur(4px);
    }

    .partner-container {
      position: relative;
      max-width: 850px;
      margin: 0 auto;
      z-index: 2;
      opacity: 0;
      transform: translateY(30px);
      transition: all 1s ease;
    }

    .partner-container.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .partner-container h2 {
      font-size: 38px;
      font-weight: 800;
      letter-spacing: 1px;
      margin-bottom: 15px;
      color: #ffffff;
    }

    .partner-container h3 {
      color: #00e1dd;
      font-weight: 600;
      font-size: 20px;
      margin-bottom: 25px;
    }

    .partner-container p {
      color: #dce6f7;
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 40px;
    }

    .partner-form {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .partner-form input {
      padding: 15px 25px;
      border-radius: 40px;
      border: none;
      outline: none;
      width: 350px;
      max-width: 100%;
      font-size: 15px;
      color: #042a57;
      background: rgba(255, 255, 255, 0.9);
    }

    .partner-form button {
      background: linear-gradient(90deg, #00e1dd, #0080c7);
      border: none;
      border-radius: 40px;
      padding: 14px 35px;
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .partner-form button:hover {
      background: linear-gradient(90deg, #0080c7, #00e1dd);
      transform: translateY(-2px);
    }

    /* ===== FOOTER SECTION ===== */
    .footer {
      background: linear-gradient(135deg, #009688, #006d6d);
      color: #ffffff;
      padding: 70px 20px 30px;
      position: relative;
      overflow: hidden;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

    .footer-column {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .footer-column.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .footer-column h3 {
      font-size: 20px;
      margin-bottom: 20px;
      position: relative;
      letter-spacing: 1px;
    }

    .footer-column h3::after {
      content: "";
      display: block;
      width: 40px;
      height: 3px;
      background: #ffffff;
      margin-top: 8px;
      border-radius: 2px;
    }

    .footer-column p {
      font-size: 14px;
      line-height: 1.8;
      color: #e6f5f5;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
      font-size: 14px;
      color: #e6f5f5;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.3s ease;
    }

    .footer-column ul li i {
      color: #fff;
    }

    .footer-column ul li a {
      color: #ffffff;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #ffe082;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    }

    /* ---------- SOCIAL ICONS ---------- */
    .social-icons {
      margin-top: 0px;
    }

    .social-icons a {
      display: inline-block;
      width: 22px;
      height: 22px;
      background: #393A3C;
		color:#fff;
      border-radius: 50%;
      text-align: center;
      line-height: 22px;
      margin-right: 10px;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      background: #009688;
      color: #fff;
      transform: translateY(-5px);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }

    /* ---------- FOOTER BOTTOM ---------- */
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      text-align: center;
      margin-top: 50px;
      padding-top: 20px;
      font-size: 14px;
      color: #e6f5f5;
    }

    /* ===== Dropdown Menu Styling ===== */
    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      text-decoration: none;
      color: #fff;
      padding: 12px 20px;
      display: block;
      transition: all 0.3s ease;
    }

    nav ul li:hover > a {
      background: #63d8e9;
      color: #fff;
      border-radius: 4px;
    }

    /* Dropdown */
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #111;
      min-width: 220px;
      box-shadow: 0 8px 15px rgba(0,0,0,0.2);
      border-radius: 4px;
      z-index: 999;
    }

    .dropdown-menu li a {
      color: #fff;
      padding: 10px 15px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown-menu li:last-child a {
      border-bottom: none;
    }

    .dropdown-menu li a:hover {
      background: #63d8e9;
    }

    /* Hover Show */
    .dropdown:hover .dropdown-menu {
      display: block;
    }

    /* Add small arrow icon rotation */
    .dropdown i {
      margin-left: 5px;
      transition: transform 0.3s ease;
    }

    .dropdown:hover i {
      transform: rotate(180deg);
    }

    /* Vision Mission Section */
    .vision-mission {
      display: flex;
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
      width: 90%;
      min-height: 220px;
      overflow: hidden;
      margin: 60px 0;
      border-radius:150px;
      margin-left:5%;
    }

    /* Left section (Vision) */
    .vision {
      flex: 1;
      background: linear-gradient(135deg, #63d8e9, #009688);
      color: #fff;
      padding: 80px 80px 80px 180px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    }

    /* Right section (Mission) */
    .mission {
      flex: 1;
      background: #393a3c;
      color: #fff;
      padding: 80px 120px 80px 180px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .vision h2, .mission h2 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 20px;
      letter-spacing: 1px;
    }

    .vision p, .mission p {
      font-size: 16px;
      line-height: 1.8;
      max-width: 450px;
    }

    .vision .icon, .mission .icon {
      font-size: 55px;
      opacity: 0.9;
      margin-left:15%;
    }

    .vision .icon {
      color: #fff;
    }

    .mission .icon {
      color: #fff;
    }

    /* ===== RESPONSIVE STYLES ===== */
    @media (max-width: 1200px) {
      .top-header, header {
        padding: 8px 40px;
      }
      .about {
        padding: 80px 40px;
      }
    }

    @media (max-width: 992px) {
      .about-container {
        flex-direction: column;
      }
      
      .about-images {
        width: 100%;
        margin-bottom: 40px;
        min-height: 400px;
      }
      
      .about-content {
        padding-left: 0;
        width: 100%;
      }

      .whycore-features {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .whycore-left, .whycore-right {
        max-width: 100%;
        align-items: center;
      }

      .sol-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 60px;
      }

      .sol-features {
        grid-template-columns: 1fr;
        justify-items: center;
      }

      .sol-image img {
        max-width: 380px;
      }

      .os-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .vision, .mission {
        padding: 60px 40px;
      }
    }

    @media (max-width: 768px) {
      .top-header {
        padding: 8px 20px;
        flex-direction: column;
        gap: 8px;
        font-size: 11px;
      }

      header {
        flex-direction: row;
        padding: 15px 20px;
        position: relative;
      }

      .logo-section img {
        height: 70px;
      }

      .logo-text h2 {
        font-size: 17px;
      }

      .logo-text p {
        font-size: 10px;
      }

      .mobile-menu-toggle {
        display: block;
      }

      nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: #393A3C;
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 99;
        overflow-y: auto;
      }

      nav.active {
        left: 0;
      }

      nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
      }

      nav ul li {
        width: 100%;
        text-align: left;
      }

      nav a {
        display: block;
        padding: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }

     

      .slider {
        height: 400px;
      }

      .slides img {
        height: 400px;
      }

      .about {
        padding: 40px 20px;
      }

      .about-images {
        height: 350px;
        min-height: 350px;
      }

      .image-main {
        height: 220px;
        width: 85%;
      }

      .image-secondary {
        height: 180px;
        width: 75%;
      }

      .about-content h2 {
        font-size: 28px;
      }

      .about-content h3 {
        font-size: 16px;
      }

      .about-content p {
        font-size: 14px;
      }

      .stat-number {
        font-size: 28px;
      }

      .stat-label {
        font-size: 12px;
      }

      .whycore-section {
        padding: 60px 20px;
      }

      .whycore-header h2 {
        font-size: 28px;
      }

      .whycore-box {
        text-align: center;
      }

      .whycore-image img {
        width: 100%;
        max-width: 300px;
      }

      .sol-section {
        padding: 60px 20px;
      }

      .sol-text h2 {
        font-size: 32px;
      }

      .sol-intro {
        font-size: 14px;
      }

      .our-services-v2 {
        padding: 60px 20px;
      }

      .os-header h2 {
        font-size: 28px;
      }

      .os-desc {
        font-size: 14px;
      }

      .os-grid {
        grid-template-columns: 1fr;
      }

      .partner-section {
        padding: 80px 20px;
        height: auto;
      }

      .partner-container h2 {
        font-size: 28px;
      }

      .partner-container p {
        font-size: 14px;
      }

      .partner-form {
        flex-direction: column;
      }

      .partner-form input {
        width: 100%;
      }

      .footer {
        padding: 50px 20px 20px;
      }

      .footer-container {
        text-align: center;
      }

      .footer-column ul li {
        justify-content: center;
      }

      .social-icons {
        justify-content: center;
      }

      .vision-mission {
        flex-direction: column;
        border-radius: 20px;
        margin-left: 5%;
        width: 90%;
      }

      .vision, .mission {
        clip-path: none;
        padding: 40px 30px;
      }

      .vision h2, .mission h2 {
        font-size: 28px;
      }

      /* Mobile Dropdown Menu */
      .dropdown-menu {
        position: static;
        background: #222;
        box-shadow: none;
        display: none;
        width: 100%;
      }

      .dropdown.active .dropdown-menu {
        display: block;
      }

      .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .dropdown > a:after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        transition: transform 0.3s ease;
      }

      .dropdown.active > a:after {
        transform: rotate(180deg);
      }

      nav ul li a {
        padding: 10px 15px;
      }
    }

    @media (max-width: 480px) {
      .top-header {
        font-size: 9px;
      }

      .logo-section {
        flex-direction: column;
        gap: 5px;
      }

      .logo-section img {
        height: 60px;
      }

      .logo-text h2 {
        font-size: 16px;
      }

      .slider {
        height: 300px;
      }

      .slides img {
        height: 300px;
      }

      .about-images {
        height: 250px;
        min-height: 250px;
      }

      .image-main {
        height: 160px;
        width: 90%;
      }

      .image-secondary {
        height: 130px;
        width: 80%;
      }

      .about-stats {
        flex-direction: column;
        gap: 20px;
      }

      .whycore-box {
        max-width: 100%;
      }

      .whycore-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }

      .whycore-box h3 {
        font-size: 18px;
      }

      .whycore-box p {
        font-size: 14px;
      }

      .sol-text h2 {
        font-size: 26px;
      }

      .sol-box {
        flex-direction: column;
        text-align: center;
      }

      .os-content {
        padding: 40px 15px 25px;
      }

      .partner-container h2 {
        font-size: 24px;
      }

      .partner-form input,
      .partner-form button {
        padding: 12px 20px;
      }

      .vision, .mission {
        padding: 30px 20px;
      }

      .vision h2, .mission h2 {
        font-size: 24px;
      }

      .vision .icon, .mission .icon {
        font-size: 40px;
        margin-left: 0;
        text-align: center;
      }
    }
/* Hero Banner Section */
.hero-banner {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

/* Individual Slides */
.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slider .slide.active {
   opacity: 1;
  z-index: 1;
}


/* Dark overlay for better text visibility */
.hero-banner .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* Adjust darkness: 0.4 = lighter, 0.7 = darker */
  z-index: 1;
}

.hero-banner .slide.active {
  opacity: 1;
}

/* Overlay Text */
.hero-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-90%, -90%);
  color: #fff;
  text-align: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.35); /* semi-transparent box behind text */
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 90%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
	margin-left:20%;
	
}

.hero-content p {
  font-size: 1.4rem;
  color: #b2ebf2;
}

/* Space between banner and next section */
.hero-banner + section {
  margin-top: 0;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-content {
    padding: 20px;
  }
}

/* Centered captions */
.caption, .banner-overlay {
  position: absolute;
  top: 30%;
  left: 17%;
  text-align: center;
  color: #fff;
  padding: 25px 40px;
  border-radius: 8px;
  max-width: 90%;
  z-index: 2;
}

.caption h2, .banner-overlay h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

.caption p {
  font-size: 18px;
  margin: 0;


}


.banner-overlay {
  width: 90%;
}

/* Responsive Inner Banner */
@media (max-width: 768px) {
  .hero-banner, .inner-banner, .hero-banner img {
    height: 300px;
  }
  .caption h2, .banner-overlay h1 {
    font-size: 24px;
  }
  .caption p {
    font-size: 14px;
  }
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: #00bcd4; /* Button color */
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-btn:hover {
  background: #393A3C; /* Darker shade on hover */
  transform: translateY(-2px);
}

/* Animate H2 from center to left */
@keyframes spreadH2 {
  0% {
    transform: translateX(0) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateX(-10px) scale(1);
    opacity: 1;
  }
}

/* Animate P from center to right */
@keyframes spreadP {
  0% {
    transform: translateX(0) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateX(5px) scale(1);
    opacity: 1;
  }
}

/* Animate button from bottom fade in */
@keyframes fadeUpBtn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Apply animation when slide is active */
.hero-slider .slide.active .caption h2 {
  animation: spreadH2 5s ease forwards;
}

.hero-slider .slide.active .caption p {
  animation: spreadP 5s ease 0.3s forwards; /* delayed slightly after h2 */
}

.hero-slider .slide.active .caption .hero-btn {
  animation: fadeUpBtn 5s ease 0.6s forwards; /* delayed after p */
}

/* About Section */
.solution {
  padding: 80px 5%;
  background: #fff;
}

/* Fixed container class name */
.solution-container {
  display: flex;
  align-items: flex-start; /* aligns image top with text */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px; /* adds space between columns */
  max-width:97%;
  margin-left:4%;
}

/* Left Column (Image) */
.solution-images {
  flex: 1 1 45%;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.solution-images img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Right Column (Content) */
.solution-content {
  flex: 1 1 50%;
}

.solution-content h2 {
  font-size: 32px;
  color: #63d8e9;
  margin-bottom: 15px;
  font-weight: 700;
}

.solution-content h3 {
  font-size: 20px;
  color: #393A3C;
  margin-bottom: 20px;
}

.solution-content p {
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* Responsive Layout */
@media (max-width: 991px) {
  .solution-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .solution-images,
  .solution-content {
    flex: 1 1 100%;
  }

  .solution-content {
    text-align: center;
  }

  .solution-content h2 {
    font-size: 28px;
  }

  .solution-content h3 {
    font-size: 18px;
  }

  .solution-images img {
    width: 90%;
  }
}

/* Inner Page Header Section */
.inner-header {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.inner-header-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.inner-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Page Title Overlay */
.inner-header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 40px;
  border-radius: 10px;
}

.inner-header-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .inner-header {
    height: 250px;
  }

  .inner-header-content h1 {
    font-size: 24px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .inner-header {
    height: 200px;
  }

  .inner-header-content h1 {
    font-size: 20px;
  }
}


/* Highlight Active Menu Item */
nav ul li.current-menu-item > a,
nav ul li.current_page_item > a,
nav ul li.current-menu-ancestor > a,
nav ul li.current_page_ancestor > a {
  position: relative;
  color: #63d8e9; /* Optional: Change text color when active */
}

nav ul li.current-menu-item > a::after,
nav ul li.current_page_item > a::after,
nav ul li.current-menu-ancestor > a::after,
nav ul li.current_page_ancestor > a::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 6px;
  width: 60%;
  height: 3px;
  background-color: #63d8e9;
  border-radius: 2px;
  transition: all 0.3s ease;
}

nav ul li.current-menu-item > a:hover,
nav ul li.current_page_item > a:hover,
nav ul li.current-menu-ancestor > a:hover,
nav ul li.current_page_ancestor > a:hover {
  color: #fff;
}



/* About Section Layout */
.solution {
  padding: 80px 5%;
  background-color: #f9f9f9;
}

.solution-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
	max-width:90%;
}

/* Left: Image */
.solution-images {
  flex: 1 1 45%;
}

.solution-images img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Right: Text */
.solution-content {
  flex: 1 1 50%;
}

.solution-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #63d8e9;
}

.solution-content h3 {
  font-size: 1.1rem;
  color: #393A3C;
  margin-bottom: 20px;
}

.solution-contentnew p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .solution-containernew {
    flex-direction: column;
    text-align: center;
  }

  .solution-imagesnew,
  .solution-contentnew {
    flex: 1 1 100%;
  }

  .solution-imagesnew img {
    max-width: 90%;
    margin: 0 auto 30px;
  }
}

.contact {
    padding: 80px 20px;
    background-color: #f4f4f4;
    font-family: 'Arial', sans-serif;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: #63d8e9;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    color: #fff;
    text-align: center;
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-form p {
    font-size: 16px;
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    margin-top: 5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}

.contact-form .btn-submit {
    background-color: #fff;
    color: #63d8e9;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.contact-form .btn-submit:hover {
    background-color: #f0f0f0;
    color: #63d8e9;
}

