:root {
	--primary-color: #2196f3;
	--primary-glow: rgba(33, 150, 243, 0.8);
	--secondary-color: #9c27b0;
	--text-color: #ffffff;
	--bg-color: #0a0a12;
	--nav-bg: rgba(16, 16, 26, 0.7);
	--dropdown-bg: rgba(20, 20, 35, 0.8);
	--hover-color: #3f51b5;
	--border-color: rgba(255, 255, 255, 0.08);
	--shadow-color: rgba(0, 0, 0, 0.3);
	--neon-glow: 0 0 10px rgba(33, 150, 243, 0.5),
		0 0 20px rgba(33, 150, 243, 0.3),
		0 0 30px rgba(33, 150, 243, 0.1);
	--transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	--gradient-bg: linear-gradient(135deg, var(--bg-color), #151530);
	--glass-effect: saturate(180%) blur(10px);
	--border-radius: 12px;
	--text-description: rgba(255, 255, 255, 0.7);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: var(--gradient-bg);
	color: var(--text-color);
	line-height: 1.6;
	min-height: 100vh;
}

/* Header and Navbar */
.headers {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
background-color: white;
}

.navbars {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Logo */
.nav-brands img {
    width: 110px;
}

/* Navigation Menu */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-lists {
	display: flex;
	gap: 1.5rem;
	list-style: none;
    margin: 0 0;
}

.nav-items {
	position: relative;
}

.nav-linkw {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-linkw:hover,
.nav-linkw.active {
	color: #07b4e3;
	text-shadow: var(--neon-glow);
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-2px);
}



/* Icons */

.chevron-icon {
	transition: transform var(--transition-medium);
}

.has-dropdowns:hover .chevron-icon {
	transform: rotate(180deg);
}


/* Dropdown Menus */
.has-dropdowns {
	position: relative;
}

.dropdowns {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 300px;
	background: var(--dropdown-bg);
	backdrop-filter: var(--glass-effect);
	-webkit-backdrop-filter: var(--glass-effect);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 0.5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px) scale(0.98);
	transition: all var(--transition-medium);
	box-shadow: 0 10px 30px var(--shadow-color);
	z-index: 100;
}

.has-dropdowns:hover .dropdowns {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.dropdowns::before {
	content: '';
	position: absolute;
	top: -6px;
	left: 20px;
	width: 12px;
	height: 12px;
	background: var(--dropdown-bg);
	border-left: 1px solid var(--border-color);
	border-top: 1px solid var(--border-color);
	transform: rotate(45deg);
	backdrop-filter: var(--glass-effect);
	-webkit-backdrop-filter: var(--glass-effect);
}

.dropdowns li {
	list-style: none;
}

.dropdowns a {
	color: var(--text-color);
	text-decoration: none;
	padding: 0.7rem 1rem;
	display: block;
	border-radius: var(--border-radius);
	transition: all var(--transition-medium);
	margin-bottom: 2px;
}

.dropdowns a:hover {
	background: rgba(33, 150, 243, 0.15);
	color: var(--primary-color);
	transform: translateX(5px);
}

/* Search Bar */


/* Hamburger Menu */
.nav-toggles {
	display: none;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 0.6rem;
	transition: var(--transition-medium);
}

.nav-toggles:hover {
	background: rgba(255, 255, 255, 0.15);
}

.hamburger {
	width: 24px;
	height: 20px;
	position: relative;
}

.hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: black;
	position: absolute;
	transition: all var(--transition-medium);
	border-radius: 10px;
}

.hamburger span:first-child {
	top: 0;
}

.hamburger span:nth-child(2) {
	top: 9px;
	width: 70%;
}

.hamburger span:last-child {
	top: 18px;
}

/* Mobile Menu Active State */
.nav-active .hamburger span:first-child {
	transform: rotate(45deg);
	top: 9px;
}

.nav-active .hamburger span:nth-child(2) {
	opacity: 0;
	width: 0;
}

.nav-active .hamburger span:last-child {
	transform: rotate(-45deg);
	top: 9px;
}
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1250px !important;
}
/* Active state ke liye */
.nav-linkw.active {
    color: rgb(4, 186, 236) !important;
    background: rgba(4, 186, 236, 0.1);
}
  .footer {
    background: #13132c;
    color: #bbb;
    font-size: 14px;
    padding: 60px 0 20px;
    width: 100%;
    box-shadow: 0px 0px 241px rgb(0 137 255);
}
a {
    text-decoration: none !important;
}
    .footer h5 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 20px;
      font-weight: 600;
    }
    .footer a {
      color: #bbb;
      text-decoration: none;
    }
    .footer a:hover {
      color: #fff;
    }
    .footer .about p {
      font-size: 14px;
      color: #bbb;
    }
    .footer .read-more {
      color: #fff;
      font-weight: 500;
    }

   
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 20px;
      padding-top: 15px;
      font-size: 13px;
      text-align: center;
    }
    .footer-bottom a {
      color: #bbb;
      margin: 0 8px;
    }
    .footer-bottom a:hover {
      color: #fff;
    }
    .careers-job-card p {
    color: black;
}
    .subscribe-box {
    background: #fff;
    border-radius: 30px;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 350px;
    margin: -85px auto 40px auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 9;
}
    .subscribe-box input {
      border: none;
      outline: none;
      flex: 1;
      padding: 8px 10px;
      border-radius: 30px;
    }
    .subscribe-box button {
    border: none;
    background: linear-gradient(90deg, #0056ff, #00cfff);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 20px;
    cursor: pointer;
}










  .hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    animation: zoomIn 20s infinite alternate ease-in-out; /* subtle zoom animation */
  }

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(3 40 108 / 73%) !important;
    z-index: 1;
    animation: pulseOverlay 4s infinite alternate;
}
  .hero .container {
    position: relative;
    z-index: 2;
  }

  .hero h5 {
    font-size: 16px;
    color: white;
    background: rgb(0 194 255);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    animation: slideInLeft 1.2s ease forwards;
    opacity: 0;
}

  .hero h1 {
    font-size: 47px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    animation: fadeInUp 1.5s ease forwards;
    opacity: 0;
  }

  .hero h1 span {
    color: #00cfff;
    animation: blink 0.7s infinite;
  }
 @keyframes blink {
    0%, 50%, 100% { border-color: #ff5722; }
    25%, 75% { border-color: transparent; }
  }
  .hero p {
    font-size: 16px;
    color: #f0f0f0;
    margin: 20px 0 30px;
    max-width: 500px;
    animation: fadeIn 2s ease forwards;
    opacity: 0;
  }

  .btn-pink {
    background: linear-gradient(90deg, #0056ff, #00cfff);
    color: #fff;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    margin-right: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    z-index: 99;
}
  .btn-pink:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 195, 255, 0.4);
    color: black;
  }

  .btn-outline {
    background: #fff;
    border: 2px solid #00cfff;
    color: #00cfff;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
  }

  .btn-outline:hover {
    background: #00cfff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 195, 255, 0.4);
  }

  .rating-box {
    margin-top: 40px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: inline-block;
    animation: popIn 1s ease forwards;
    opacity: 0;
  }

  .rating-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 5px;
  }

  .rating-box span {
    font-size: 14px;
    color: #555;
  }

  .hero-img {
    position: relative;
    animation: floatImage 6s ease-in-out infinite alternate;
  }

  .hero-img img {
    max-width: 100%;
    border-radius: 20px;
    transition: transform 0.5s;
}

.hero_main_image {
    overflow: hidden;
}


  

  .award-box {
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    font-size: 14px;
    position: absolute;
    bottom: -40px;
    right: 20px;
    animation: bounceAward 2s infinite alternate;
    z-index: 2;
}
  .award-box span {
    display: block;
    font-size: 13px;
    color: #555;
  }    .service-wrapper {
      height: 100%;
    }

    .service-card {
      position: relative;
      background: #ffffff;
      border-radius: 10px;
      padding: 15px 20px;
      text-align: center;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      height: 100%;
      z-index: 1;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Hover background animation: bottom to top */
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, #5b2be0, #3d0ecf);
      z-index: -1;
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.5s ease-in-out;
      border-radius: 10px;
    }
section#servise {
    margin-top: -92px;
}
    .service-card:hover::before {
      transform: scaleY(1);
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(91, 43, 224, 0.2);
    }
.service-card:hover .service-title  {
	color: white;
} 
    .service-icon {
      font-size: 36px;
      color: #5b2be0;
      margin-bottom: 15px;
      z-index: 2;
      transition: transform 0.4s ease;
    }

    .service-card:hover .service-icon {
      transform: scale(1.1);
	  color: white;
    }

    .service-title {
      font-size: 16px;
      font-weight: 600;
      color: #333;
      margin: 0;
      z-index: 2;
    }
 .about-section {
    padding: 50px 0;
}
    .about-subtitle {
      color: #007bff;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .about-title {
      font-size: 32px;
      font-weight: 700;
      color: white;
      line-height: 1.4;
      margin-bottom: 15px;
    }
    .about-description {
      color: #ffffff;
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 25px;
      max-width: 550px;
    }
    .about-contact {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    .contact-icon {
      font-size: 22px;
      color: #fff;
      background-color: #007bff;
      padding: 12px;
      border-radius: 6px;
    }
    .contact-text small {
      font-size: 13px;
      color: #ffffff;
    }
    .contact-text p {
      margin: 0;
      font-size: 15px;
      font-weight: 600;
      color: #007bff;
    }
   
    .about-img {
      max-width: 100%;
      border-radius: 8px;
    }

    
    
    .choose-section {
    background: #03286f;
    padding: 50px 0px;
}
    .feature-icon {
      background-color: #0098ff;
      width: 55px;
      height: 55px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      font-size: 22px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px #0098ff55;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }
    .feature-icon:hover {
      background-color: #007acc;
      box-shadow: 0 6px 18px #007acc99;
    }
    .feature-title {
      font-weight: 700;
      font-size: 18px;
      color: #031a43;
      margin-bottom: 10px;
      font-family: 'Segoe UI Semibold', sans-serif;
    }
    .feature-desc {
      font-size: 14px;
      color: #555555;
      line-height: 1.5;
      font-family: 'Segoe UI', sans-serif;
    }
    .feature-col {
    padding: 20px 25px;
    border-radius: 12px;
    background-color: #f9faff;
    box-shadow: 0 5px 15px rgba(0, 152, 255, 0.1);
    transition: box-shadow 0.3s ease;
    height: 100%;
    cursor: pointer;
}
    .feature-col:hover {
    box-shadow: 0 10px 30px rgb(0 152 255);
}
    .center-image {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 0;
    }
    .center-image img {
      width: 100%;
      border-radius: 16px;
      max-height: 350px;
      object-fit: cover;
      box-shadow: 0 8px 30px rgb(0 0 0 / 0.12);
      transition: transform 0.3s ease;
    }
    .center-image img:hover {
      transform: scale(1.05);
    }
	    .new-servises-section {
      padding: 60px 0;
    }.new-servises-header p {
    width: 100%;
    margin: 13px auto;
}

    /* 🔹 Title Background */
    .new-servises-header {
    position: relative;
    margin-bottom: 10px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 26px;
}
   
    .new-servises-header h6 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 8px;
      letter-spacing: 1px;
      color:white;
    }
    

    /* 🔹 Service Cards with Background Images */

.new-servises-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: absolute;
    bottom: -119px;
    left: 0;
    right: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.new-servises-card:hover .new-servises-buttons {
  bottom: 0px; /* slide up on hover */
}
    .new-servises-card,
    .new-servises-quote {
      position: relative;
      background-size: cover;
      background-position: center;
      padding: 30px 25px;
      border-radius: 14px;
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      overflow: hidden;
      color: #fff;
    }
    .new-servises-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.55);
      border-radius: 14px;
      z-index: 1;
    }
    .new-servises-card * {
      position: relative;
      z-index: 2;
    }
    .new-servises-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }

    .new-servises-icon {
      background: rgba(0,170,255,0.9);
      width: 70px;
      height: 70px;
      margin: 0 auto 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
    }
    .new-servises-icon img {
      width: 36px;
      height: 36px;
      filter: brightness(0) invert(1);
    }
    .new-servises-card h4 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .new-servises-card p {
      font-size: 14px;
      line-height: 22px;
      flex-grow: 1;
    }

    /* 🔹 Quote Box */
    .new-servises-quote {
      background: linear-gradient(135deg, #00aaff, #0077cc);
      color: #fff;
      justify-content: center;
    }
    .new-servises-quote::before {
      display: none;
    }
    .new-servises-quote h5 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .new-servises-quote p {
      font-size: 14px;
      margin-bottom: 20px;
      line-height: 22px;
    }
    .new-servises-quote a {
      font-size: 20px;
      font-weight: bold;
      color: #fff;
      text-decoration: none;
      padding: 10px 20px;
      border: 2px solid #fff;
      border-radius: 8px;
      transition: all 0.3s ease;
      display: inline-block;
    }
    .new-servises-quote a:hover {
      background: #fff;
      color: #0077cc;
    }

    /* 🔹 All Services Button */
    .all-services-btn {
      margin-top: 40px;
      text-align: center;
    }
.all-services-btn button {
    background: linear-gradient(90deg, #0056ff, #00cfff);
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    transition: 0.3s ease;
}
    .all-services-btn button:hover {
    
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }    .testimonial-section {
    padding: 50px 0;
    background: #07276f;
}

    .testimonial-title {
      text-align: center;
      margin-bottom: 60px;
    }
.testimonial-section .swiper {
    padding-bottom: 43px;
}
    .swiper-pagination-bullet {
    background: #0cb6eb !important;
    opacity: 0.7;
}
.social-links li a {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-left: -52px;
}

/* Icon circle setup */
.social-links li a i {
  opacity: 0;
  transform: translateX(-20px);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}button.btn-pink.Become {
    position: relative;
    z-index: 99;
}

/* Hover: icon slides in with background */
.social-links li a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Hover: text color change */
.social-links li.linkedin a:hover { color: #0077B5; }
.social-links li.github a:hover { color: #333; }
.social-links li.twitter a:hover { color: #1DA1F2; }
.social-links li.dribbble a:hover { color: #EA4C89; }

/* Circle background color on hover */
.social-links li.linkedin a:hover i { background-color: #0077B5; }
.social-links li.github a:hover i { background-color: #333; }
.social-links li.twitter a:hover i { background-color: #1DA1F2; }
.social-links li.dribbble a:hover i { background-color: #EA4C89; }
    
    /* Card Design */
    .testimonial-card {
      background: #f5faff;
      border-radius: 12px;
      padding: 25px;
      text-align: left;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      border-top: 5px solid #0077cc;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      min-height: 320px;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .testimonial-header img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }

    .testimonial-header h5 {
      font-size: 16px;
      font-weight: 700;
      color: #0077cc;
      margin: 0;
    }

    .testimonial-header span {
      font-size: 14px;
      color: #555;
      display: block;
    }

    .testimonial-card p {
      font-size: 14px;
      color: #333;
      line-height: 22px;
      margin-top: 10px;
      flex-grow: 1;
    }

    /* Swiper Controls */
    .swiper {
      padding-bottom: 60px;
      position: relative;
    }

    .swiper-pagination-bullet {
      background: #0077cc;
      opacity: 0.7;
    }

    .swiper-pagination-bullet-active {
      background: #005fa3;
      opacity: 1;
    }

    .swiper-button-next, .swiper-button-prev {
      color: #0077cc;
      top: 45%;
    }

    .swiper-button-next:hover, .swiper-button-prev:hover {
      color: #005fa3;
    }
	
.our-team-section {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}
.our-team-section:before {
    position: absolute;
    top: -0;
    left: 0;
    content: " ";
    background: url(img/service-section-bottom.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}
.our-team {
    padding: 30px 0 40px;
    background: #f9f9f9;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-bottom: 5px solid #00325a;
}
.our-team:hover{
    border-bottom: 5px solid #2f2f2f;
}

.our-team .pic{
    display: inline-block;
    width: 130px;
    height: 130px;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
}
.our-team .pic:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #05266f;
    position: absolute;
    bottom: 135%;
    right: 0;
    left: 0;
    opacity: 1;
    transform: scale(3);
    transition: all 0.3s linear 0s;
}
.our-team:hover .pic:before{
 height: 100%;
    background: #04baec; 
 }
.our-team .pic:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #04baec;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s linear 0s;
}
.our-team:hover .pic:after{
    background: #05266f;
}
.our-team .pic img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
    position: relative;
    z-index: 2;
}
.our-team:hover .pic img{
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
}
.our-team .team-content{ margin-bottom: 30px; }
.our-team .title{
    font-size: 22px;
    font-weight: 700;
    color: #4e5052;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.our-team .post{
    display: block;
    font-size: 15px;
    color: #4e5052;
    text-transform:capitalize;
}
.our-team .social {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #05266f;
    position: absolute;
    bottom: -100px;
    left: 0;
    transition: all 0.5s ease 0s;
}
.our-team:hover .social{ bottom: 0; }
.our-team .social li{ display: inline-block; }
.our-team .social li a{
    display: block;
    padding: 10px;
    font-size: 17px;
    color: #fff;
    transition: all 0.3s ease 0s;
}
.our-team .social li a:hover{
    color: #2f2f2f;
    background: #f7f5ec;
}


.blog-banner {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    border-bottom: 5px solid #0077cc;
    background-size: cover;
    background-position: center;
}
.blog-banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
}
.blog-banner h2 {
  position: relative;
  z-index: 1;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: box-shadow 0.4s ease; /* smooth shadow */
}
.blog-card:hover {
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Blog Detail Content */
.blog-detail img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
}

.blog-detail h3 {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 700;
  color: #0077cc;
}
.blog-detail p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #ffffff;
}
.blog-detail blockquote {
  font-style: italic;
  background: #e6f2ff;
  padding: 18px 22px;
  border-left: 5px solid #0077cc;
  margin: 25px 0;
  border-radius: 6px;
  color: #004080;
}

/* Only image zoom on hover */
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog_img {
    overflow: hidden;
}
.blog-card:hover .blog_img img {
    transform: scale(1.2);
}
.blog-content {
  padding: 22px;
}
.blog-category {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}
.blog-meta span {
  margin-right: 15px;
}
.blog-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}
.blog-content h5 a {
  text-decoration: none;
  color: #111;
  transition: color 0.3s ease;
}
.blog-content h5 a:hover {
  color: #0077cc;
}

/* Sidebar */
.sidebar h4 {
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 3px solid #0077cc;
  display: inline-block;
  padding-bottom: 5px;
  font-weight: 600;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar ul li {
  margin-bottom: 12px;
}
.sidebar ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: color 0.3s ease;
}
.sidebar ul li a:hover {
  color: #0077cc;
}

.recent-post {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.recent-post:hover {
  transform: translateX(5px);
}
.recent-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 12px;
}
.recent-post h6 {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

.tag-cloud a {
  display: inline-block;
  background: #f0f0f0;
  color: #333;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  margin: 5px 5px 0 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tag-cloud a:hover {
  background: #0077cc;
  color: #fff;
}

/* Plain text */
.sidebar p {
  font-size: 14px;
  color: white;
  margin-top: 10px;
}
section#blog {
    padding: 50px 0px;
}
.sidebar {
    background: #05276f;
    color: honeydew;
    padding: 20px 25px;
}
    .overmission {
    background: #05276d;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

    .overmission-header h2 {
      font-size: 30px;
      color: #111;
      margin-bottom: 10px;
    }

    
    .overmission-header p {
      color: #666;
      max-width: 600px;
      line-height: 1.5;
    }

    .overmission-card {
      position: relative;
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 30px;
      box-shadow: 0 0 15px rgba(0,0,0,0.05);
    }

    .overmission-shape {
      width: 100%;
      height: 100px;
      margin-bottom: 20px;
      clip-path: polygon(0 100%, 50% 0, 100% 100%, 80% 100%, 50% 40%, 20% 100%);
    }

    .overmission-shape.red {
      background: linear-gradient(45deg, #ff416c, #ff4b2b);
    }

    .overmission-shape.blue {
      background: linear-gradient(45deg, #1e3c72, #2a5298);
    }

    .overmission-shape.green {
      background: linear-gradient(45deg, #56ab2f, #a8e063);
    }

    .overmission-icon {
      font-size: 26px;
      margin-bottom: 10px;
    }

    .overmission-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .overmission-desc {
      color: #444;
      font-size: 14px;
      line-height: 1.5;
      flex-grow: 1;
    }

    .overmission-number {
      position: absolute;
      bottom: 20px;
      left: 20px;
      font-size: 40px;
      font-weight: bold;
      color: rgba(0,0,0,0.08);
    }
        .values {
      display: flex;
      justify-content: space-between;
      flex-wrap: nowrap;
      gap: 10px;
      position: relative;
    }

    /* The dotted horizontal connecting line */
    .horizontal-line {
      position: absolute;
      top: 55px;
      left: 5%;
      right: 5%;
      border-top: 2px dotted #627d98;
      z-index: 1;
    }

    .value-box {
    background: #1f2f47;
    width: 208px;
    padding: 31px 9px 44px 9px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

    /* The dotted vertical line above each circle */
    .value-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      height: 55px;
      border-left: 2px dotted #627d98;
      z-index: 3;
    }

    /* Remove line from first box */
    .value-box:first-child::before {
      display: none;
    }

    .circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: #18293f;
      position: relative;
      margin-bottom: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow:
        0 0 0 4px #000,
        0 0 15px 4px transparent;
      cursor: default;
    }

    /* Outer gradient ring - Using before pseudo */
    .circle::before {
      content: "";
      position: absolute;
      top: -8px;
      left: -8px;
      width: 106px;
      height: 106px;
      border-radius: 50%;
      z-index: -1;
      background: conic-gradient(
        from 90deg at 50% 50%,
        #9b3eff,
        #ff6a00,
        #e1fc02,
        #4354ff,
        #ff6a00,
        #ff6a00,
        #ff6a00,
        #ff6a00,
        #ff6a00
      );
      animation: spin 8s linear infinite;
    }

    /* Icon inside circle */
    .icon {
      font-size: 32px;
      color: #cbd5e1;
      z-index: 2;
    }

    /* Small colored dot below circle */
    .small-dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      margin: 8px 0 15px 0;
      box-shadow: 0 0 5px rgba(255,255,255,0.2);
    }

    /* Specific colors for small dots */
    .dot-1 { background: #7f00ff; }
    .dot-2 { background: #ff8a00; }
    .dot-3 { background: #d7ff02; }
    .dot-4 { background: #678dff; }
    .dot-5 { background: #ff6a00; }

    /* Title below */
    .title {
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 8px;
      letter-spacing: 1px;
      color: #cbd5e1;
    }

    /* Description text */
    .desc {
      font-size: 11px;
      color: #8496b0;
      line-height: 1.3;
      padding: 0 6px;
    }
#VALUES {
    padding: 50px 0px;
}    .section-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      margin-top: 40px;
    }

    .section-title .light {
      font-weight: 300;
      color: #ccc;
    }

    .timeline-container {
    position: relative;
    padding: 60px 0 100px;
    background: #072970;
}
    .timeline-container::before {
      content: '';
      position: absolute;
      bottom: 60px;
      left: 5%;
      width: 90%;
      height: 4px;
      background-color: #666;
      transform: rotate(-5deg);
      z-index: 0;
    }

    .timeline-item {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .icon-box {
      width: 70px;
      height: 70px;
      border-radius: 20px;
      margin: 0 auto 15px;
      background-color: #2d2d2d;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: white;
      box-shadow: 0 0 0 5px;
    }

    .teal .icon-box {
      box-shadow: 0 0 0 5px #00bfa5;
    }
    .teal .year { color: #00bfa5; }

    .orange .icon-box {
      box-shadow: 0 0 0 5px #ffb300;
    }
    .orange .year { color: #ffb300; }

    .pink .icon-box {
      box-shadow: 0 0 0 5px #e91e63;
    }
    .pink .year { color: #e91e63; }

    .purple .icon-box {
      box-shadow: 0 0 0 5px #9c27b0;
    }
    .purple .year { color: #9c27b0; }

    .blue .icon-box {
      box-shadow: 0 0 0 5px #00acc1;
    }
    .blue .year { color: #00acc1; }

    .timeline-item h5 {
    font-weight: 500;
    margin-bottom: 10px;
    color: white;
}
    .timeline-item p {
      font-size: 0.9rem;
      color: #aaa;
    }

    .year {
      margin-top: 15px;
      font-weight: bold;
      font-size: 1.2rem;
    }
    .card-container2 {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      position: relative;
    }

    .card-icon2 {
      background-color: #333;
      border-radius: 50px 0 0 50px;
      width: 140px;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 3.5rem;
      box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
    }

    /* Colored backgrounds */
    .startups .card-icon2 { background-color: var(--color-startups); }
    .education .card-icon2 { background-color: var(--color-education); }
    .tourism .card-icon2 { background-color: var(--color-tourism); }
    .healthcare .card-icon2 { background-color: var(--color-healthcare); }
    .retail .card-icon2 { background-color: var(--color-retail); }
    .garment .card-icon2 { background-color: var(--color-garment); }
    .lifestyle .card-icon2 { background-color: var(--color-lifestyle); }
    .food .card-icon2 { background-color: var(--color-food); }
    .ecommerce .card-icon2 { background-color: var(--color-ecommerce); }
    .realestate .card-icon2 { background-color: var(--color-realestate); }
    .sports .card-icon2 { background-color: var(--color-sports); }
    .car .card-icon2 { background-color: var(--color-car); }
    .media .card-icon2 { background-color: var(--color-media); }
    .community .card-icon2 { background-color: var(--color-community); }

    .label-line2 {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 12px;
    }

    .label-line2::before {
      content: "";
      position: absolute;
      top: -35px;
      width: 2px;
      height: 25px;
      border-left: 2px dotted #666;
      left: 50%;
      transform: translateX(-50%);
      z-index: 0;
    }

    .dot2 {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background-color: white;
      border: 3px solid;
      margin-bottom: 12px;
      z-index: 10;
    }

    /* Dot border colors */
    .startups .dot2 { border-color: var(--color-startups); }
    .education .dot2 { border-color: var(--color-education); }
    .tourism .dot2 { border-color: var(--color-tourism); }
    .healthcare .dot2 { border-color: var(--color-healthcare); }
    .retail .dot2 { border-color: var(--color-retail); }
    .garment .dot2 { border-color: var(--color-garment); }
    .lifestyle .dot2 { border-color: var(--color-lifestyle); }
    .food .dot2 { border-color: var(--color-food); }
    .ecommerce .dot2 { border-color: var(--color-ecommerce); }
    .realestate .dot2 { border-color: var(--color-realestate); }
    .sports .dot2 { border-color: var(--color-sports); }
    .car .dot2 { border-color: var(--color-car); }
    .media .dot2 { border-color: var(--color-media); }
    .community .dot2 { border-color: var(--color-community); }

    .label2 {
    font-weight: 700;
    font-size: 1rem;
    max-width: 130px;
    color: #ffffff;
    word-wrap: break-word;
}
   .Fintech {
    padding: 40px;
    background: rgba(15, 15, 15, 0.95);
    box-shadow: 0px 0px 25px rgb(0 137 255 / 78%);
    border: 1px solid rgb(4 185 235 / 27%);
}

    .stack-row {
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      margin-bottom: 22px;
      background: linear-gradient(145deg, #111, #0b0b0b);
      box-shadow: inset 0px 0px 10px rgba(0,255,170,0.05), 0px 2px 12px rgba(0,0,0,0.6);
      transition: all 0.3s ease;
    }
    .stack-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 195, 255, 0.4);
    border-color: rgb(11 183 233);
}
    .stack-row .category {
    background: rgb(12 183 233 / 13%);
    font-size: 18px;
    font-weight: 600;
    padding: 18px;
    text-align: center;
    border-right: 1px solid rgb(4 186 236);
    color: #04b7e9;
    letter-spacing: 0.5px;
    height: 100%;
}
    .stack-row .items {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 16px 25px;
      gap: 35px;
      justify-content: space-around;
    }
    .stack-row .items span {
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #eaeaea;
      transition: color 0.3s ease;
    }
    .stack-row .items span:hover {
    color: #16b8e9;
}
    .stack-row .items img {
      width: 38px;
      height: 38px;
      filter: drop-shadow(0px 0px 6px rgba(0,255,170,0.3));
      transition: transform 0.3s ease;
    }
    .stack-row .items img:hover {
      transform: scale(1.1);
    }
    /* Section background with gradient and shapes */
    .partner-section {
    background: linear-gradient(135deg, #04286d 0%, #0eb8eb 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    color: #fff;
}

    /* Decorative shapes */
    .partner-section::before,
    .partner-section::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      opacity: 0.2;
      background: #fff;
    }

    .partner-section::before {
      width: 300px;
      height: 300px;
      top: -50px;
      left: -50px;
    }

    .partner-section::after {
      width: 400px;
      height: 400px;
      bottom: -100px;
      right: -100px;
    }

    .partner-logo-card {
    background: linear-gradient(135deg, #03286d, #32c2ec);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    font-weight: 600;
    color: #fff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
    .partner-logo-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: rgba(255,255,255,0.2);
      transform: rotate(45deg);
      transition: all 0.5s ease;
    }

    .partner-logo-card:hover::before {
    top: -337px;
    left: -20%;
}

    .partner-logo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .partner-logo-card i {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .partner-avatar-img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 10px;
      border: 2px solid #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .partner-avatar-img:hover {
      transform: scale(1.2);
    }

    .partner-btn {
      background: linear-gradient(90deg, #ff7e5f, #feb47b);
      color: #fff;
      padding: 12px 30px;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      font-weight: 600;
      text-decoration: none;
      margin-top: 20px;
      transition: all 0.3s ease;
    }

    .partner-btn:hover {
      background: linear-gradient(90deg, #feb47b, #ff7e5f);
      transform: translateY(-3px);
    }

    .partner-btn i {
      margin-left: 10px;
    }

    .partner-section-title i {
      color: #fff;
      font-size: 1.5rem;
      margin-right: 10px;
    }

    .partner-section-title {
      color: #fff;
      font-size: 1.8rem;
      margin-bottom: 30px;
    }
      /* Section Background */
.case-study2-solutions {
    background-color: #04296e;
}
.case-study2-card {
    background: white;
}
/* Card Style */
.case-study2-card {
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  min-height: 100%;
}

.case-study2-card:hover {
  transform: translateY(-5px);
}

/* Header */
.case-study2-card-header img {
  margin-bottom: 10px;
}

.case-study2-card-header h4 {
  color: #333;
  font-weight: bold;
}

/* Body */
.case-study2-card-body p {
  margin-bottom: 10px;
  color: #444;
  font-size: 14px;
}

.case-study2-card-body ul li {
  margin-bottom: 6px;
  color: #444;
}
 .newclass-section {
      padding: 50px 20px;
    }

    .case-study-title {
    color: white;
    font-size: 43px;
    font-weight: 700;
}

    .newclass-subheading {
      font-size: 24px;
      font-weight: 400;
      color: #7d7d7d;
    }

    .newclass-step {
      text-align: center;
      padding: 20px;
    }

    .newclass-step-number {
    font-size: 32px;
    font-weight: 700;
    color: #03baeb;
}
.newclass-heading {
    color: white;
}
    .newclass-step-title {
    font-size: 23px;
    font-weight: 700;
    margin-top: 10px;
    color: white;
}
    .newclass-step-text {
      font-size: 14px;
      color: #fffdfd;
    }

    .newclass-box {
      background-color: #f9f9f9;
      padding: 15px;
      border-radius: 12px;
      text-align: left;
      height: 100%;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .newclass-box img {
      max-width: 40px;
      margin-right: 10px;
    }

    .newclass-box-title {
      font-size: 15px;
      font-weight: 600;
      margin: 0;
    }

    .newclass-case-study {
      font-size: 14px;
      text-align: right;
      font-weight: 600;
      margin-top: 20px;
      display: inline-block;
      color: #007bff;
      text-decoration: none;
    }

    .newclass-footer-box {
      background-color: #1d1d2f;
      color: #fff;
      padding: 40px 20px;
      border-radius: 16px;
      margin-top: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .newclass-footer-box h3 {
      font-size: 20px;
      font-weight: 600;
      margin: 0;
    }

    .newclass-footer-box button {
      background-color: #007bff;
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      color: white;
      font-size: 14px;}



          /* Hero Section */
    .development-hero {
    position: relative;
    padding: 30px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
   height: 100%;
    background-position: center;
    background-size: cover;
}

  /*  .development-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 1;
    }
*/
    .development-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
    }

    .development-content h1 {
    font-size: 63px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgb(3 185 235);
    animation: fadeInUp 1s ease forwards;
    color: white;
}

    .development-content .title {
      font-size: 22px;
      font-weight: 400;
      color: #f0f0f0;
      margin-bottom: 20px;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
      animation: fadeInUp 1.3s ease forwards;
    }

    .development-content .description {
      font-size: 16px;
      line-height: 1.8;
      color: #d1d1d1;
      margin-bottom: 30px;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
      animation: fadeInUp 1.6s ease forwards;
    }

   
    /* Stats Cards */
    .development-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 40px;
      animation: fadeInUp 2.2s ease forwards;
    }

    .stat-card {
    background: linear-gradient(90deg, #0056ff, #00cfff);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(143, 52, 195, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
    padding: 7px 12px;
    text-align: center;
    flex: 1 1 200px;
}

    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(143, 52, 195, 0.6);
    }

    .stat-card .number {
      font-size: 36px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    }

    .stat-card .label {
      font-size: 18px;
      color: #f0f0f0;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    }

    /* Animations */
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
   /* Large tablets and smaller desktops */

   :root {
      --color-startups: #3d5cb8;
      --color-education: #873f9e;
      --color-tourism: #302626;
      --color-healthcare: #ef3d2d;
      --color-retail: #1da1f2;
      --color-garment: #72be44;
      --color-lifestyle: #4335aa;
      --color-food: #afcb2c;
      --color-ecommerce: #ff9800;
      --color-realestate: #f26444;
      --color-sports: #4b3b2d;
      --color-car: #5d7753;
      --color-media: #a32046;
      --color-community: #4a2e2e;
    }
    section#Industries {
    padding: 50px 0px;
    background: #05276e;
}
    /* Hide extra industries */
    .more-industries { display: none; }

    /* Button Style */
.view-btn2 {
    background: linear-gradient(90deg, #0056ff, #00cfff);
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    transition: 0.3s ease;
    margin: 0 auto;
    display: flex;
}
    .view-btn2:hover {
       transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

        /* Hero */
    .careers-hero {
      color: #fff;
      padding: 100px 20px;
      text-align: center;
    }
    .careers-hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
    }
    .careers-hero p {
      font-size: 1.2rem;
      margin-top: 10px;
    }
    /* Section Title */
    .careers-section-title {
    font-size: 30px;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
    position: relative;
}
    /* Job Cards */
    .careers-job-card {
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s;
      background: #fff;
      min-height: 220px; /* same height for all cards */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .careers-job-card:hover {
      transform: translateY(-5px);
    }
 
    
    /* Culture Section */
    .careers-culture-card {
      border-radius: 15px;
      transition: all 0.3s ease-in-out;
      background: #fff;
      min-height: 250px; /* same height for all culture cards */
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      padding: 20px;
    }
    .careers-culture-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }
    .careers-culture-icon-wrapper {
      width: 70px;
      height: 70px;
      margin: 0 auto;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .careers-culture-card h5 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-top: 15px;
    }
    .careers-culture-card p {
      font-size: 0.95rem;
      color: #555;
    }
    /* CTA Section */
    .careers-cta-section {
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      transition: all 0.3s ease-in-out;
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: #fff;
      padding: 60px 20px;

      margin: 50px 0;
      text-align: center;
    }
    .careers-cta-section:hover {
      transform: translateY(-5px);
    }
    .careers-cta-section h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .careers-cta-section p {
      font-size: 1.1rem;
      margin-bottom: 25px;
    }
    .careers-cta-btn {
      background: #fff;
      color: #007bff;
      font-weight: 600;
      border-radius: 30px;
      padding: 12px 30px;
      transition: all 0.3s ease-in-out;
      border: none;
    }
    .careers-cta-btn:hover {
      background: #0056b3;
      color: #fff;
    }
    .careers-cta-section a {
      color: #fff;
      text-decoration: underline;
    }
    .careers-cta-section a:hover {
      text-decoration: none;
    }

          Gallery Section
--------------------------------------*/
.portfolio-section {
  padding: 50px 0;
  background-color: #000;
}

.portfolio-menu {
  text-align: center;
}
.control {
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border: 1px solid #343a40;
  border-radius: 3px;
  margin: 5px;
  cursor: pointer;
  -webkit-transition: all 05s ease;
  -moz-transition: all 05s ease;
  -ms-transition: all 05s ease;
  -o-transition: all 05s ease;
  transition: all 0.5s ease;
}
.control:hover {
  background: #343a40;
}
.mixitup-control-active {
  color: #fff;
  background: #343a40;
}
.fancybox-container button:focus {
  outline: 0;
  box-shadow: none;
}
.portfolio-item {
  padding-top: 30px;
}
.pd {
  padding: 0;
  padding: 10px;
  overflow: hidden;
}
.pd img {
  height: 180px;
  transition: all 0.5s;
  width: 100%;
}
.portfolio-overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  text-align: center;
  visibility: hidden;
  transition: all 0.5s;
  transform: scale(0);
}
.portfolio-overlay p,
.portfolio-overlay a {
  position: relative;
  z-index: 4;
}
.portfolio-overlay::before {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  left: 10%;
  top: 10%;
  transition: 50ms height ease 150ms;
  z-index: 3;
}
.portfolio-overlay::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  right: 10%;
  bottom: 10%;
  transition: 100ms width ease 200ms;
  z-index: 3;
}
.portfolio-item:hover .portfolio-overlay::before {
  width: 80%;
  height: 80%;
  border-top: 1px solid #50977f;
  border-right: 1px solid #50977f;
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}
.portfolio-item:hover .portfolio-overlay::after {
  width: 80%;
  height: 80%;
  border-bottom: 1px solid #50977f;
  border-left: 1px solid #50977f;
  transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}
.portfolio-item li:hover .portfolio-overlay {
  visibility: visible;
  transform: scale(1);
}
.portfolio-overlay .category {
  margin-top: 70px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.portfolio-overlay .magnify-icon {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background: #50977f;
  margin: 0 5px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
}
.portfolio-overlay .magnify-icon:hover {
  background: #000;
}
.portfolio-overlay .magnify-icon p span i {
  font-size: 15px;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
}
    /* --- Top Section --- */
    .partner-top-section {
      padding: 60px 15px 50px 15px;
      margin: 0 auto;
    }
    .partner-label {
    font-size: 14px;
    font-weight: 600;
    color: #05b7eb;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

    .partner-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 20px;
    color: white;
}
    .partner-desc {
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
      max-width: 420px;
      margin-bottom: 30px;
      color: #d6d6d6;
    }

    /* --- Ratings badges --- */
    .partner-ratings {
    background: #fff;
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    width: fit-content;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    width: 180px !important;
}
    .partner-ratings .star {
      background: #ffd500;
      border-radius: 3px;
      padding: 2px 6px;
      font-weight: 700;
      color: #000;
      font-size: 14px;
    }
    /* --- Top right images grid --- */
    .partner-top-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 12px;
    }
    .partner-top-right img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
      height: 260px;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.2);
    }
        .process-section {
      padding: 60px 0;
      position: relative;
    }

    .process-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .process-title h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #00BFFF;
    }
    .process-title p {
      font-size: 16px;
      color: #e0f7ff;
    }

    /* Swiper Slide Cards */
    .process-slide-card {
      background: rgba(224, 247, 255, 0.05);
      border-radius: 15px;
      padding: 25px 20px;
      text-align: left;
      height: 380px;
      position: relative;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: #00BFFF rgba(224, 247, 255, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .process-slide-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 191, 255, 0.6);
    }

    .process-slide-card::-webkit-scrollbar {
      width: 6px;
    }
    .process-slide-card::-webkit-scrollbar-thumb {
      background: #00BFFF;
      border-radius: 10px;
    }
    .process-slide-card::-webkit-scrollbar-track {
      background: rgba(224, 247, 255, 0.05);
    }

    .process-slide-card::before {
      content: "";
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      border-radius: 18px;
      border: 3px solid transparent;
      background: linear-gradient(90deg, #00BFFF, #003366, #00BFFF) border-box;
      -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      animation: borderMove 4s linear infinite;
      z-index: 1;
    }

    @keyframes borderMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .process-slide-card > * {
      position: relative;
      z-index: 2;
    }

    .process-slide-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(135deg, #00BFFF, #003366);
      animation: float 3s ease-in-out infinite;
      transition: transform 0.3s ease;
    }
    .process-slide-icon:hover {
      transform: scale(1.2) rotate(10deg);
    }
    .process-slide-icon img {
      width: 40px;
      height: 40px;
      filter: invert(1);
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    .process-slide-card h4 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #00BFFF;
      background: rgba(224, 247, 255, 0.1);
      padding: 8px 12px;
      border-radius: 8px;
    }
    .process-slide-card ul {
      padding-left: 20px;
      max-height: 240px;
    }
   .process-slide-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    padding-left: 15px;
    color: white;
}
    .process-slide-card ul li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: #00BFFF;
    }
#interactive .swiper {
    padding: 40px 0;
}
#interactive {
    padding: 60px 0px;
}



 /* ================= Modern Contact Section ================= */
  .contact-page-sec {
    padding: 60px 0;
   
  }

  /* Contact Cards */
.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgb(11 184 234 / 43%);
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; /* stretch to equal height */
}

  .contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
  }
  .contact-info-card .icon {
    font-size: 50px;
    color: #0bb8ea;
    margin-bottom: 15px;
}
  .contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #071c34;
  }
  .contact-info-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 5px;
  }

  /* Contact Form */
  .contact-form-wrapper {
    background: rgba(255,255,255,0.95);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  .contact-form-wrapper h2 {
    font-size: 26px;
    color: #071c34;
    margin-bottom: 25px;
    font-weight: 700;
  }
  .contact-form-wrapper input, 
  .contact-form-wrapper textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 15px;
    transition: all 0.3s ease;
  }
  .contact-form-wrapper input:focus, .contact-form-wrapper textarea:focus {
    border-color: #05276f;
    box-shadow: 0 0 10px rgb(4 183 233 / 67%);
}
  .contact-form-wrapper textarea {
    min-height: 140px;
    resize: none;
  }
  

  /* Map Wrapper */
  .contact-map-wrapper iframe {
    border-radius: 15px;
    transition: transform 0.3s ease;
  }
  .contact-map-wrapper iframe:hover {
    transform: scale(1.02);
  }
   

    .top_service {
    background: rgb(255 255 255 / 4%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgb(33 183 228);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: slideUp 1s ease;
}

    .top_service:hover {
      box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    }

    .top_service img {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
    margin: 0 auto;
}

    .top_service h5 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    margin-top: 25px;
}
#to_serves {
    background: #05276e;
    padding: 40px 0px;
}
    .top_service p {
      font-size: 14px;
      color: #cccccc;
      flex-grow: 1;
    }

      /* Hero Section */
    .Empowering-hero {
      position: relative;
      background-size: cover;
      background-position: center;
      padding: 80px 0;
      color: #fff;
      overflow: hidden;
      background-attachment: fixed;
    }

    .Empowering-hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .Empowering-hero h1 {
      font-weight: bold;
      color: #fff;
    }

    .Empowering-hero p {
      font-size: 16px;
      color: #f0f0f0;
    }


    .Empowering-illustration .Empowering-Become {
      border-radius: 15px;
    }

    /* Centered QR Code Styling */
    .Empowering-qr-code-center {
      position: absolute;
      top: 50%;
      right: 50px;
      transform: translateY(-50%);
      background-color: rgba(255, 255, 255, 0.95);
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0,0,0,0.4);
      z-index: 10;
      max-width: 220px;
    }
        .Empowering-qr-code-centers {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    z-index: 10;
    max-width: 220px;
}
/* Modal Design */
    .contact7-modal-content {
      border-radius: 15px;
      padding: 20px;
      background: #fff;
      box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    }
    .contact7-title {
    font-weight: 700;
    color: #011437;
    margin-bottom: 15px;
    text-align: center;
}
    .contact7-form .form-control {
      border-radius: 10px;
      padding: 12px;
      border: 1px solid #ddd;
    }
    .contact7-form .form-control:focus {
      border-color: #025c75;
      box-shadow: 0 0 5px rgba(#025c75);
    }
/* Popup Overlay */
.apply2-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Popup Box */
.apply2-popup-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: apply2-fadeIn 0.4s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

@keyframes apply2-fadeIn {
  from {opacity: 0; transform: translateY(-30px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Close Button */
.apply2-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}
.apply2-close:hover { color: #f44336; }

/* Heading */
.apply2-popup-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
  color: #071c34;
  text-align: center;
}

/* Form */
.apply2-form input,
.apply2-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f9f9f9;
}
.apply2-form input:focus,
.apply2-form textarea:focus {
  border-color: #fda40b;
  box-shadow: 0 0 8px rgba(253,164,11,0.4);
}
.apply2-form textarea {
  resize: none;
  min-height: 100px;
}

/* Submit Button */
.apply2-submit {
    background: linear-gradient(90deg, #0056ff, #00cfff);
    color: #fff;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    margin-right: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    width: 100%;
}
.apply2-submit:hover {
  background: #071c34;
}
.apply2-btn-open {
    background: linear-gradient(90deg, #0056ff, #00cfff);
    color: #fff;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    margin-right: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.apply2-btn-open:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 195, 255, 0.4);
    color: black;
}
.Internship2-modal .modal-content {
      border-radius: 15px;
      border: none;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      background: #fff;
      padding: 20px;
    }
    .Internship2-modal-header {
      border: none;
      text-align: center;
      padding-bottom: 0;
    }
    .Internship2-modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #031436;
}
    .Internship2-form-label {
      font-weight: 500;
      color: #333;
    }
    .Internship2-form-control {
      border-radius: 8px;
      padding: 10px;
      border: 1px solid #ddd;
      transition: border 0.3s;
    }
    .Internship2-form-control:focus {
      border-color: #ff2e63;
      box-shadow: 0 0 0 0.2rem rgba(255,46,99,0.2);
    }
  
    .Empowering-qr-code-center h6 {
      margin-bottom: 10px;
      font-size: 16px;
      color: #0b1f55;
      font-weight: 600;
    }

    .Empowering-qr-code-center p {
      font-size: 14px;
      color: #333;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .Empowering-qr-code-center img {
      max-width: 180px; 
      height: auto;
    }
   .Empowering-qr-code-centers h6 {
      margin-bottom: 10px;
      font-size: 16px;
      color: #0b1f55;
      font-weight: 600;
    }

    .Empowering-qr-code-centers p {
      font-size: 14px;
      color: #333;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .Empowering-qr-code-centers img {
    max-width: 180px;
    height: auto;
    cursor: pointer;
}

    
    /* Spin animation for gradient ring */
    @keyframes spin {
      0% { transform: rotate(0deg);}
      100% { transform: rotate(360deg);}
    }

  /* Keyframes for animations */
  @keyframes zoomIn {
    0% { background-size: 100%; }
    100% { background-size: 110%; }
  }
  @keyframes pulseOverlay {
    0% { background: rgba(0, 123, 255, 0.6); }
    100% { background: rgba(0, 123, 255, 0.4); }
  }
  @keyframes slideInLeft {
    0% { transform: translateX(-50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
  }
  @keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  @keyframes bounceIn {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  @keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  @keyframes floatImage {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
  }
  @keyframes bounceAward {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }

/* Responsive Design */

/* Extra large tablets / small laptops */
@media (max-width: 992px) {
  .development-hero {
    padding: 80px 20px;
  }
  .development-content h1 {
    font-size: 40px;
  }

  .Empowering-qr-code-center,
  .Empowering-qr-code-centers {
    position: relative;
    right: auto;
    transform: none;
    margin: 20px auto 0 auto;
  }

  .contact-info-card {
    margin-bottom: 20px;
  }

  .our-team {
    margin-bottom: 30px;
  }
}

/* Medium tablets / large phones */

/* Small tablets / large phones */
@media (max-width: 600px) {
  .card-icon2 {
    width: 110px;
    height: 110px;
    font-size: 2.5rem;
  }
  .label2 {
    font-size: 0.85rem;
  }
  .dot2 {
    width: 12px;
    height: 12px;
    border-width: 2px;
    margin-bottom: 8px;
  }
  .label-line2::before {
    height: 20px;
    top: -28px;
  }
}

/* Mobile devices */
@media (max-width: 576px) {
  .development-hero {
    padding: 60px 20px;
  }
  .development-content h1 {
    font-size: 32px;
  }
  .development-content .hire-btn {
    width: 100%;
  }

  .navbars {
    padding: 1rem;
  }
  .nav-menu {
    width: 100%;
  }

 

  .underline {
    width: 70px;
    height: 6px;
  }
  .underline::after {
    width: 10px;
    height: 6px;
    right: -18px;
  }
  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .feature-title {
    font-size: 14px;
  }
  .feature-desc {
    font-size: 12px;
  }
  .feature-col {
    padding: 15px 15px;
  }
  .center-image img {
    max-height: 200px;
  }
}

/* Responsive Design for Nav */
@media (max-width: 968px) {
  .nav-toggles {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    align-items: flex-start;
    background: var(--nav-bg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    width: 80%;
    height: calc(100vh - 70px);
    padding: 2rem;
    transition: right var(--transition-slow);
    box-shadow: -10px 0 30px var(--shadow-color);
    border-left: 1px solid var(--border-color);
  }

  .nav-active .nav-menu {
    right: 0;
  }

  .nav-lists {
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
  }

  .nav-items {
    width: 100%;
  }

  .nav-linkw {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    background: white;
  }

  .nav-linkw.active::after {
    display: none;
  }

  .nav-linkw.active {
    background: rgba(33, 150, 243, 0.15);
  }

  .dropdowns {
    position: static;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0;
    padding-left: 1rem;
    margin-left: 1rem;
    display: none;
    box-shadow: none;
    border-left: 1px solid var(--border-color);
    transform: none;
    transition: all var(--transition-medium);
  }

  .dropdowns::before {
    display: none;
  }

  .has-dropdowns.active .dropdowns {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdowns a {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }

  .theme-toggle {
    align-self: flex-start;
  }

  .chevron-icon {
    position: absolute;
    right: 1rem;
  }

  .has-dropdowns.active .chevron-icon {
    transform: rotate(180deg);
  }
}

/* Responsive Adjustments for Features */
@media (max-width: 991px) {
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .feature-title {
    font-size: 16px;
  }
  .feature-desc {
    font-size: 13px;
  }
  .feature-col {
    padding: 18px 20px;
  }
  .center-image img {
    max-height: 280px;
  }
}

/* Values Section */
@media (max-width: 800px) {
  .values {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .value-box {
    width: 160px;
    margin-bottom: 10px;
  }

  .value-box::before {
    display: none;
  }

  .horizontal-line {
    display: none;
  }
}
