@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Syne", sans-serif;
}
html{
  scroll-behavior: smooth;
}
body {
  color: #333;
  line-height: 1.6;
}
 
header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(14, 165, 233, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}
/* Navbar Base */
.navbar {
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  position: relative;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.7rem;
  color: #0c4a6e;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo a{
  background: #0284c7;
  border-radius: 10px;
}

.logo img {
  height: 55px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: rotate(-5deg) scale(1.05);
}

.logo span {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo i {
  color: #0ea5e9 !important;
  font-size: 1.9rem;
}

/* Nav Links (Desktop) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 5px;
}

.nav-links a {
  text-decoration: none;
  color: #64748b;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 50px;
  position: relative;
}

.nav-links a i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.nav-links a:hover i {
  transform: scale(1.15);
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #0ea5e9;
  transition: width 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 60%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.08);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #0c4a6e;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
    border-radius: 0 0 20px 20px;
  }

  .nav-links a {
    justify-content: center;
    padding: 12px 20px;
    width: 100%;
  }

  .nav-links a::before {
    display: none;
  }

  .nav-links.show {
    display: flex;
    animation: slideDown 0.4s ease forwards;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 120px 20px 80px;
  }

  .hero h2 {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1.15rem;
  }

  .btn-hero {
    padding: 16px 35px;
    font-size: 0.95rem;
    margin: 8px;
    display: block;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-hero:nth-child(2) {
    border-width: 2px;
  }

  .planning-box {
    flex-direction: column;
    padding: 40px 30px;
    gap: 30px;
  }

  .planning-box::before {
    display: none;
  }

  .planning-left p {
    font-size: 1.3rem;
  }
}

/* Mobile Nav Slide Animation */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}



/* Hero */
.hero {
  min-height: 100vh;
  background: url("images/img3.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 140px 20px 100px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.9) 0%,
    rgba(2, 132, 199, 0.85) 50%,
    rgba(3, 105, 161, 0.9) 100%
  );
  z-index: 1;
}



@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.08; }
  50% { transform: scale(1.1); opacity: 0.12; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h2 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.15;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
  font-size: 1.35rem;
  margin-bottom: 50px;
  line-height: 1.8;
  opacity: 0.95;
  font-weight: 400;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1s ease-out 0.4s both;
}
/* Hero buttons */
.btn-hero {
  display: inline-block;
  padding: 18px 45px;
  background: #ffffff;
  color: #0c4a6e;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 10px 15px;
  position: relative;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.2), transparent);
  transition: left 0.5s;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero:hover {
  background: #f0f9ff;
  color: #0ea5e9;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Secondary button style */
.btn-hero:nth-child(2) {
  background: transparent;
  color: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero:nth-child(2)::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.btn-hero:nth-child(2):hover {
  background: rgba(255, 255, 255, 0.95);
  color: #0ea5e9;
  border-color: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}
/* Sections */
.section {
  padding: 80px 20px;
  max-width: 1280px;
  margin: auto;
  text-align: center;
}
.section.gray {
  background: #f9fafb;
}
.section h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0ea5e9;
}

/* Cards */
.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card i {
  font-size: 40px;
  color: #0ea5e9;
  margin-bottom: 10px;
}

/* Why choose us */
.why-list {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: auto;
}
.why-list li {
  margin: 10px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.why-list i {
  color: #f8f8ff;
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Contact Section */
.contact-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

/* Contact Header */
.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #0c4a6e;
}

.contact-header p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
}

/* Flex container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  gap: 30px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.15);
}

/* Left Box */
.contact-info {
  flex: 1 1 350px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  padding: 50px 40px;
  color: #ffffff;
}

.contact-info h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}

.contact-info hr {
  width: 60px;
  border: none;
  height: 3px;
  background: #ffffff;
  margin: 0 0 30px 0;
  opacity: 0.8;
}

.contact-info div {
  font-size: 1.05rem;
  margin: 20px 0;
  /* display: flex; */
  /* align-items: center; */
  /* gap: 15px; */
}

.contact-info .icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Right Box */
.contact-form {
  flex: 2 1 500px;
  padding: 50px 40px;
  background: #ffffff;
}

.contact-form h3 {
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0c4a6e;
}

.contact-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #f8fafc;
  color: #0c4a6e;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Syne", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.contact-form input {
  flex: 1;
  min-width: 200px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  border: none;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.contact-form button:hover {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    border-radius: 15px;
  }

  .contact-info,
  .contact-form {
    padding: 40px 30px;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-form input {
    min-width: 100%;
  }
}


/* Footer */
/* Pre-Footer Section */
.pre-footer {
  background: #0b1a2d;
  padding: 50px 20px;
  color: #fff;
}

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

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
}

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

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #38bdf8; /* sky blue highlight color */
}

/* Social Links */
.social-links li {
  display: flex;
  align-items: center;
}

/* Main Footer */
.main-footer {
  background: #07111f;
  text-align: center;
  padding: 20px;
  color: #888;
  font-size: 0.9rem;
}


/* Two Column Gradient Box */
.planning-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 60px;
  margin: 80px auto;
  max-width: 1280px;

  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  border-radius: 20px;
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.3);

  position: relative;
}

/* Left Column */
.planning-left,
.planning-right {
  flex: 1;
  padding: 0 30px;
}

/* Vertical Divider */
.planning-box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
}

.planning-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Make left text bigger/bolder for emphasis */
.planning-left p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}

/* About Section */
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 10%;
  background: #0c4a6e; /* dark blue background */
  color: #e5e7eb;
  gap: 60px;
}

.about-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-left img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.about-right {
  flex: 1.2;
}

.about-right h5 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #38bdf8; /* sky blue accent */
  margin-bottom: 12px;
  text-transform: uppercase;
}

.about-right h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f8f8ff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-right p {
  font-size: 1rem;
  line-height: 1.7;
  color: #f8f8ff;
  max-width: 600px;
}


@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* AI Section */
.ai-section {
  position: relative;
  background: url("images/img4.jpg") no-repeat center center/cover;
  color: #ffffff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 20px;
}

.ai-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.92) 0%,
    rgba(2, 132, 199, 0.88) 50%,
    rgba(3, 105, 161, 0.92) 100%
  );
  z-index: 1;
}

.ai-overlay {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 20px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ai-content {
  margin-bottom: 60px;
}

.ai-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 25px;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ai-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.play-btn {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
  position: relative;
}

.play-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.play-btn:hover::before {
  opacity: 0.5;
}

.play-btn:hover {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
}

.play-btn i {
  margin-left: 4px;
}

/* Stats Bar */
.ai-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px 0;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: #0ea5e9;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item span {
  font-size: 0.95rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Services section */
.services {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.services-header {
  max-width: 1280px;
  margin: 0 auto 50px;
}

.subtitle {
  color: #0ea5e9;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0c4a6e;
}

.services-header .desc {
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background-color: #0ea5e9;
  color: #fff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn:hover {
  background-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 20px;
}

/* Service Card */
.service-card {
  height: 100%;
}

.card-inner {
  height: 100%;
}

.card-front, .card-back {
  position: relative;
  width: 100%;
  height: 100%;
  backface-visibility: visible;
}

.card-front {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(14, 165, 233, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-card:hover .card-front {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
  border-color: #0ea5e9;
}

.card-back {
  display: none;
}

.icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.service-card:hover .icon {
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.icon i {
  font-size: 28px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.service-card:hover .icon i {
  transform: scale(1.1);
}

.card-front h3 {
  font-size: 1.3rem;
  color: #0c4a6e;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}

.why-choose-us {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  color: #0c4a6e;
}

.why-choose-us .container {
  max-width: 1280px;
  margin: 0 auto;
}

.why-choose-us .section-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #0ea5e9;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.why-choose-us .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0c4a6e;
}

.why-choose-us .section-description {
  max-width: 1280px;
  margin: 0 auto 50px;
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1280px;
  margin: 40px auto 0;
  padding: 0 20px;
}


.icon-hex {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.icon-hex i {
  font-size: 28px;
  color: #ffffff;
  transition: transform 0.3s ease;
}
.feature-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(14, 165, 233, 0.1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
  border-color: #0ea5e9;
}

.feature-item:hover .icon-hex {
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.feature-item:hover .icon-hex i {
  transform: scale(1.1);
}

.feature-item h3 {
  font-size: 1.3rem;
  color: #0c4a6e;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-item p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}


.testimonials {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #cfecff, #93c9ee);
  color: #0c4a6e;
  text-align: center;
}

.overlay {
  padding: 0;
  background: transparent;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonials .section-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #0ea5e9;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.testimonials .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0c4a6e;
}

.carousel {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeSlide 1s ease-in-out;
}

.testimonial-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  padding: 50px 40px;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #0ea5e9;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #475569;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: #0ea5e9;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #0ea5e9;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
}

.testimonial-author div {
  text-align: left;
}

.testimonial-author h4 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  color: #0c4a6e;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.95rem;
  color: #64748b;
}

/* Carousel controls */
.carousel-controls {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.carousel-controls span {
  cursor: pointer;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  color: #0ea5e9;
  transition: all 0.3s ease;
}

.carousel-controls span:hover {
  background: #0ea5e9;
  color: #ffffff;
  border-color: #0ea5e9;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

/* Animations */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.carousel-dots .dot {
  width: 14px;
  height: 14px;
  background: #e2e8f0;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.carousel-dots .dot:hover {
  background: #38bdf8;
  border-color: #0ea5e9;
}

.carousel-dots .dot.active {
  background: #0ea5e9;
  transform: scale(1.3);
  border-color: #0ea5e9;
}


.faqs {
  padding: 100px 20px;
  background: #ffffff;
  color: #0c4a6e;
  text-align: center;
}

.faqs .section-subtitle {
  color: #0ea5e9;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.faqs .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0c4a6e;
}

.faq-list {
  max-width: 1280px;
  margin: 50px auto 0;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #0ea5e9;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
}

.faq-item.active {
  border-color: #0ea5e9;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0c4a6e;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  color: #0ea5e9;
}

.faq-question i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 50%;
  color: #0ea5e9;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  background: #0ea5e9;
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  background: #f8fafc;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 20px 28px 24px;
}


