@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--header-font);
  color: var(--heading-color);
}

.pad10 {
  padding: 15px 10rem;
}

.mag5 {
  margin: 5rem auto;
}

:root {
  --bg-color: #ffffff;
  --heading-color: #1a3a8f;
  --text-color: #2d3748;
  --accent: #0ba8fa;
  --secondary: #6c63ff;
  --surface: #f7fafc;
  --surface2: #edf2f7;
  --header-font: "Roboto", sans-serif;
  --body-font: "Roboto Mono", monospace;
}

.btn {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: var(--surface);
  padding: 1rem 2rem;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 168, 250, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 168, 250, 0.4);
}

.titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.titles p {
  font-size: 25px;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--accent);
}

.titles h2 {
  font-size: 5rem;
  margin-bottom: 5px;
}

.titles article {
  font-size: 16px;
}

/* SWIPER BACKGROUND STYLES */
.swiper-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* TOP NAV */
/* Modern Top Contact Bar */
.top-contact-modern {
  background: linear-gradient(135deg, var(--heading-color) 0%, #0f2a5e 100%);
  color: white;
  padding: 12px 0;
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.top-contact-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.top-modern-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* Contact Info Styles for clickable links */
.top-contact-main{
  display: flex;
  align-items: center;
  gap: 2rem;
}
 
.top-contact-main a.top-contact-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none; /* Remove underline */
  color: inherit; /* Keep text white */
}

.top-contact-main a.top-contact-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.top-contact-main a.top-contact-group:hover::after {
  width: 100%;
}

.top-contact-main a.top-contact-group:hover {
  transform: translateY(-2px);
}

/* Icon styles */
.top-contact-main a.top-contact-group .top-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.top-contact-main a.top-contact-group:hover .top-contact-icon {
  background: var(--accent);
  transform: scale(1.1);
}

/* Text styling */
.top-contact-main a.top-contact-group .top-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.top-contact-main a.top-contact-group .top-contact-label {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.top-contact-main a.top-contact-group .top-contact-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
}

/* Right Section Styles */
.top-modern-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-social-modern {
  display: flex;
  gap: 8px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.top-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.top-social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.top-social-link:hover::before {
  left: 100%;
}

.top-social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 168, 250, 0.3);
}

/* CTA Button */
.top-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.top-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.top-cta-btn:hover::before {
  left: 100%;
}

.top-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 168, 250, 0.4);
}

.top-cta-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.top-cta-btn:hover i {
  transform: translateX(3px);
}

/* Animation for page load */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top-contact-modern {
  animation: slideDown 0.5s ease-out;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  position: relative;
  background-color: #00000084;
}

.logo {
  width: 5rem;
}

.navlist {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navlink {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.navlink:hover {
  color: var(--accent);
}

.active {
  font-size: 2rem;
  color: var(--accent);
  transition: 0.5s;
}

.navBtn {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navToggle {
  display: none;
}

/* When navStick is active - change navlink colors */
.navStick .nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  transition: all 0.5s;
  z-index: 999;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.navStick .navlink {
  color: var(--text-color);
}

.navStick .navlink:hover {
  color: var(--accent);
}

.navStick .navlink.active {
  color: var(--accent);
}

/* Header */
.header {
  min-height: 85vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: #00000084;
}

.hTitle {
  font-size: 6rem;
  margin-bottom: 2rem;
  color: var(--surface);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hTitle span {
  color: var(--accent);
}

.hsub {
  font-size: 2rem;
  color: var(--surface2);
}

.hIcons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hIcons i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--surface2);
  font-size: 25px;
  border-radius: 5px;
  color: var(--accent);
}

/* SERVICE */
.srList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.srEachlist {
  background-color: var(--surface);
  padding: 3rem 2rem;
  border-radius: 1rem;
  border: 1px solid var(--surface2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.srEachlist:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26, 58, 143, 0.15);
  border-color: var(--accent);
}

.srEachlist::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 1s ease-in-out;
}

.srEachlist:hover::before {
  width: 100%;
}

.srEachlist i {
  font-size: 5rem;
  margin-bottom: 2rem;
  color: var(--accent);
  z-index: 1;
  transition: color 0.3s ease-in-out 0.3s;
}

.srEachlist h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  z-index: 1;
  transition: color 0.3s ease-in-out 0.4s;
}

.srEachlist p {
  font-size: 14px;
  z-index: 1;
  transition: color 0.3s ease-in-out 0.5s;
  margin-bottom: 2rem;
}

.srEachlist a {
  color: var(--text-color);
  font-size: 18px;
}

.srBtn:hover {
  color: var(--heading-color);
}

.srEachlist:hover i,
.srEachlist:hover h2,
.srEachlist:hover p,
.srEachlist:hover a {
  color: var(--surface2);
}

/* ABOUT */
.abOne {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
}

.abTitle {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 5rem;
  text-align: center;
}

.abImg {
  width: 100%;
  border-radius: 1rem;
}

.abText h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.abText p {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 3rem;
}

/* CHOOSE US */
.chooseus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reasons {
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  padding: 3rem 2rem;
  border-radius: 1rem;
}

.reasons h1 {
  font-size: 5rem;
  margin-bottom: 2rem;
  color: var(--surface);
}

.reasons h3 {
  font-size: 25px;
  margin-bottom: 1rem;
  color: var(--surface);
}

.reasons article {
  font-size: 15px;
  color: var(--surface);
}

/* PARTNERS */
.partner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 0;
}

.slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--surface2);
  border-radius: 12px;
  padding: 40px 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.partner-slide {
  flex: 0 0 50%;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-slide img {
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-slide img:hover {
  transform: scale(1.05);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--heading-color);
  transform: scale(1.1);
}

.slider-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* BLOGS */
.bBox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.videoBlog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.videoBlog video {
  width: 100%;
  border-radius: 5px;
}

.blog {
  background-color: var(--surface2);
  border-radius: 1rem;
  overflow: hidden;
}

.blog img {
  width: 100%;
  height: 50%;
  margin-bottom: 1rem;
}

.blogType {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1em 2rem;
  gap: 2px;
}

.blogType li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  padding: 0rem 2rem;
}

.blogLink {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  padding: 0rem 2rem;
}

/* TESTIMONIALS */
.testimonials {
  background-color: var(--surface2);
  padding: 5rem 0;
}

.testimonials-swiper-container {
  padding: 0 10rem;
  position: relative;
}

.testimonials-swiper {
  padding: 2rem 0;
}

.testimonial-card {
  background-color: var(--surface);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  transition: transform 0.3s ease;
  border-left: 4px solid var(--accent);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.client-image {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.client-info {
  flex: 1;
}

.client-name {
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.client-role {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 600;
}

.testimonial-content {
  padding-top: 1rem;
}

.testimonial-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  top: -2rem;
  left: -1rem;
  opacity: 0.3;
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  background: var(--surface);
  border: 2px solid var(--accent);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.2);
}

/* TEAM SECTION - REMOVED DUPLICATE */
.team {
  background-color: var(--surface2);
  padding: 8rem 0;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.team-member {
  background: var(--bg-color);
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-member:hover {
  transform: translateY(-1.5rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
}

.member-image {
  position: relative;
  overflow: hidden;
  height: 32rem;
}

.member-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-social {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 168, 250, 0.9) 0%,
    rgba(108, 99, 255, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}

.team-member:hover .member-social {
  opacity: 1;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: var(--bg-color);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  transform: translateY(2rem);
}

.team-member:hover .member-social a {
  transform: translateY(0);
}

.member-social a:nth-child(1) {
  transition-delay: 0.1s;
}
.member-social a:nth-child(2) {
  transition-delay: 0.2s;
}
.member-social a:nth-child(3) {
  transition-delay: 0.3s;
}
.member-social a:nth-child(4) {
  transition-delay: 0.4s;
}

.member-social a:hover {
  background: var(--heading-color);
  color: var(--bg-color);
  transform: translateY(-0.5rem);
}

.member-info {
  padding: 2.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-name {
  font-family: var(--header-font);
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.member-role {
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.member-role::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.2rem;
  background: var(--accent);
}

.member-desc {
  font-size: 1.4rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Gallery Slider */
.gallery-slider-container {
  position: relative;
  max-width: 1100px;
  margin: 5rem auto;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide {
  flex: 0 0 25%; /* Show 4 items by default */
  padding: 0 15px;
  display: flex;
  justify-content: center;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 20px 15px 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h3 {
  font-family: var(--header-font);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gallery-caption p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.slider-nav .slider-btn {
  margin: 0 15px;
}

.slider-nav .slider-dots {
  margin: 0 20px;
}

/* View More Button */
.view-more-container {
  margin-top: 50px;
  text-align: center;
}

.view-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-family: var(--header-font);
  box-shadow: 0 4px 10px rgba(11, 168, 250, 0.3);
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(11, 168, 250, 0.4);
}

/* CONTACT */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  padding: 40px;
  background: var(--bg-color);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.contact-info h2 {
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.contact-info p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 16px;
}

.contact-details {
  margin-top: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--surface2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--text-color);
  margin-bottom: 5px;
  font-size: 2rem;
}

.contact-text a {
  color: var(--text-color);
  font-size: 14px;
}

.social-links {
  display: flex;
  margin-top: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--surface2);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--surface2);
  transform: translateY(-3px);
}

.social-links a i {
  font-size: 2rem;
}

.contact-form {
  padding: 40px;
  background: var(--surface);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--surface2);
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: var(--body-font);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(11, 168, 250, 0.2);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.submit-btn {
  flex: 1;
  min-width: 160px;
  padding: 14px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--header-font);
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.gmail-btn {
  background: #ea4335;
  color: white;
}

.gmail-btn:hover {
  background: #d14836;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(234, 67, 53, 0.3);
}

.primary-btn {
  background: var(--accent);
  color: var(--surface);
}

.primary-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 168, 250, 0.3);
}

.submit-btn i {
  margin-left: 8px;
}

.map-container {
  margin-top: 50px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Animation for form elements */
.form-group {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
}

.form-group:nth-child(1) {
  animation-delay: 0.1s;
}
.form-group:nth-child(2) {
  animation-delay: 0.2s;
}
.form-group:nth-child(3) {
  animation-delay: 0.3s;
}
.form-group:nth-child(4) {
  animation-delay: 0.4s;
}
.form-group:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FOOTER SECTION */
.footer-section {
  background: linear-gradient(135deg, #1a3a8f 0%, #0ba8fa 100%);
  color: var(--surface);
  padding: 5rem 0 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--surface);
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 16px;
}
.contact-item span {
  font-size: 13px;
}

/* Logo Column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  width: 4rem;
  height: auto;
}

.footer-logo h3 {
  font-size: 2.2rem;
  color: var(--surface);
  font-weight: 700;
}

.footer-desc {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: white;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--surface);
  border-radius: 50%;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1.2rem;
}

.footer-links a {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-links a::before {
  content: "›";
  margin-right: 8px;
  color: var(--accent);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

/* Contact Info */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: white;
  font-size: 1.4rem;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 1.6rem;
  margin-top: 0.2rem;
  min-width: 2rem;
}

/* Footer Bottom */
.footer-bottom {
  padding: 2.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-bottom p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 5rem;
  height: 5rem;
  background: var(--accent);
  outline: none;
  border: none;
  color: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(11, 168, 250, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(11, 168, 250, 0.4);
}

/* Partners Swiper Styles */
.partners-swiper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 60px;
  background-color: var(--surface2);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partners-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}

.partners-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.partners-swiper .swiper-slide img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Gallery Swiper Styles */
.gallery-swiper {
  position: relative;
  max-width: 1100px;
  margin: 2rem auto;
  padding: 20px;
}

.gallery-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Swiper Navigation Buttons */
.partners-swiper .swiper-button-next,
.partners-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  background: var(--accent);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.partners-swiper .swiper-button-next:after,
.partners-swiper .swiper-button-prev:after,
.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

.partners-swiper .swiper-button-next:hover,
.partners-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
  background: var(--heading-color);
  transform: scale(1.1);
}

/* Swiper Pagination */
.partners-swiper .swiper-pagination,
.gallery-swiper .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.partners-swiper .swiper-pagination-bullet,
.gallery-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.partners-swiper .swiper-pagination-bullet-active,
.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.2);
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Extra Large Devices (Large Desktops) */
@media (max-width: 1200px) {
  /* Add any 1200px breakpoint styles here if needed */
}

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
  .top-contact-main {
    gap: 25px;
  }

  .top-modern-right {
    gap: 15px;
  }

  .gallery-slide {
    flex: 0 0 33.333%; /* Show 3 items on tablet */
  }
}

/* Large Tablets and Small Laptops */
@media (max-width: 1000px) {
  .pad10 {
    padding: 1rem 2rem;
  }

  .navlist {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;
    transition: 0.5s;
    background-color: var(--heading-color);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 2rem;
    z-index: 999;
  }

  .Mobilenav .navlist {
    left: 0;
  }

  .navlist .navlink {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
  }

  .navToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1000;
    cursor: pointer;
  }

  .navToggle .open,
  .navToggle .close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    font-size: 3rem;
    color: var(--accent);
  }

  .navToggle .open {
    opacity: 1;
    visibility: visible;
  }

  .navToggle .close {
    opacity: 0;
    visibility: hidden;
  }

  .Mobilenav .navToggle .open {
    opacity: 0;
    visibility: hidden;
  }

  .Mobilenav .navToggle .close {
    opacity: 1;
    visibility: visible;
  }

  .header {
    flex-direction: column;
    height: auto;
  }

  .srList,
  .chooseus,
  .bBox {
    grid-template-columns: 1fr 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info,
  .contact-form {
    padding: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .back-to-top {
    bottom: 2rem;
    right: 2rem;
    width: 4.5rem;
    height: 4.5rem;
  }
}

/* Tablets */
@media (max-width: 800px) {
  .abOne,
  .chooseus,
  .bBox {
    grid-template-columns: 1fr;
  }

  .abImg {
    grid-row: 1;
  }

  .testimonials-swiper-container {
    padding: 0 2rem;
  }

  .testimonial-card {
    padding: 2rem;
    margin: 1rem 0;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .client-image {
    width: 6rem;
    height: 6rem;
  }

  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next {
    display: none;
  }
}

/* Small Tablets and Large Mobile */
@media (max-width: 768px) {
  .top-contact-modern {
    padding: 15px 0;
  }

  .tHidden{
    display: none;
  }

  .top-modern-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .top-contact-main {
    /* flex-direction: column; */
    gap: 15px;
    width: 100%;
  }

  .top-contact-group {
    justify-content: center;
  }

  .top-modern-right {
    width: 100%;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
  }

  .top-social-modern {
    border-right: none;
    padding-right: 0;
  }

  .partner-slide {
    flex: 0 0 100%; /* Show 1 partner at a time on mobile */
  }

  .slider-container {
    padding: 30px 50px;
  }

  .gallery-slide {
    flex: 0 0 50%; /* Show 2 items on small tablets */
  }

  .team {
    padding: 6rem 0;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 40rem;
    margin: 0 auto;
    margin-top: 5rem;
  }

  .member-image {
    height: 28rem;
  }

  .member-info {
    padding: 2rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-legal {
    justify-content: center;
  }

  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }

  .partners-swiper {
    padding: 30px 50px;
  }

  .partners-swiper .swiper-slide {
    height: 100px;
  }

  .partners-swiper .swiper-slide img {
    max-height: 100%;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .srList,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-buttons {
    flex-direction: column;
  }

  .submit-btn {
    width: 100%;
  }

  .contact-info,
  .contact-form {
    padding: 20px;
  }

  .contact-info h2 {
    font-size: 28px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .top-modern-right {
    flex-direction: column;
    gap: 15px;
  }

  .top-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .slider-container {
    padding: 20px 40px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .partner-slide img {
    max-height: 60px;
  }

  .gallery-slide {
    flex: 0 0 100%; /* Show 1 item on mobile */
  }

  .gallery-section {
    padding: 40px 0;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .team {
    padding: 4rem 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .member-info {
    padding: 2rem;
  }

  .member-name {
    font-size: 2rem;
  }

  .member-social a {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.6rem;
  }

  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  .partners-swiper {
    padding: 20px 40px;
  }

  .partners-swiper .swiper-button-next,
  .partners-swiper .swiper-button-prev,
  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}
