.intro-section,
.team-section,
.services-section,
.testimonial-section,
.newsletter {
  padding: 80px 10%;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.video-box {
  height: 280px;
  background: #ccc;
}

.stats-section {
  background: linear-gradient(135deg, #f7f9fc 0%, #e8f4f8 100%);
  padding: 80px 10%;
  animation: slideUp 0.8s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  gap: 30px;
}

.stat span {
  display: block;
  font-size: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  height: 250px;
  background: #ddd;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-strip {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  padding: 80px 10%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
  }
  50% {
    background: linear-gradient(135deg, #0056b3, #00a8d8);
  }
}

.image-box {
  width: 100%;
  max-width: 520px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.image-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.image-box:hover img {
  transform: scale(1.02);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.image-box {
  align-self: center;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .image-box {
    max-width: 100%;
    margin: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .team-section,
  .services-section,
  .testimonial-section,
  .newsletter,
  .stats-section,
  .contact-strip {
    padding: 50px 5% !important;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .image-box {
    max-width: 100%;
    margin: auto;
  }

  .intro-content h2 {
    font-size: 24px;
  }

  .intro-content h3 {
    font-size: 16px;
  }

  .intro-section,
  .team-section,
  .services-section,
  .testimonial-section,
  .newsletter,
  .stats-section,
  .contact-strip {
    padding: 40px 4% !important;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .stat {
    padding: 15px 10px;
    transition: all 0.3s ease;
  }

  .stat:active {
    transform: scale(0.98);
  }

  .testimonial-card {
    padding: 20px;
    margin-bottom: 10px;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
  }

  .service-card {
    padding: 20px;
    transition: all 0.3s ease;
  }

  .service-card:active {
    transform: scale(0.98);
  }
}

/* Mobile animations for smooth transitions */
@media (max-width: 600px) {
  .intro-section,
  .team-section,
  .services-section,
  .testimonial-section,
  .newsletter,
  .stats-section,
  .contact-strip {
    animation: fadeIn 0.6s ease;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .intro-content {
    animation: fadeInRight 0.6s ease 0.1s both;
  }

  .intro-content small {
    animation: slideInDown 0.5s ease;
  }

  .intro-content h2 {
    animation: slideInDown 0.5s ease 0.05s both;
    font-size: 28px;
  }

  .intro-content h3 {
    animation: slideInDown 0.5s ease 0.1s both;
    font-size: 18px;
  }

  .image-box {
    animation: scaleIn 0.5s ease 0.15s both;
  }
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.intro-content small {
  color: #00c6ff;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  animation: slideInDown 0.6s ease;
}

.intro-content h2 {
  font-size: 36px;
  color: #0b1a3a;
  margin: 15px 0 10px 0;
  animation: slideInDown 0.6s ease 0.1s both;
}

.intro-content h3 {
  font-size: 20px;
  color: #00c6ff;
  font-weight: 400;
  margin-bottom: 20px;
  animation: slideInDown 0.6s ease 0.2s both;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-content p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.btn-about {
  display: inline-block;
  width: auto;
  background: linear-gradient(135deg, #f2f2f2 0%, #e0e0e0 100%);
  color: #0b1a3a;
  margin-top: 20px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-about:hover {
  background: linear-gradient(135deg, #0b1a3a 0%, #1a2a4a 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .btn-about {
    padding: 12px 22px;
    font-size: 15px;
  }

  .intro-content h2 {
    font-size: 28px;
  }

  .intro-content h3 {
    font-size: 18px;
  }
}

/* ===== STATS SECTION ===== */

.stats-section {
  background: linear-gradient(135deg, #f7f9fc 0%, #e8f4f8 100%);
  padding: 80px 10%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.stat-box {
  background: linear-gradient(135deg, #0b1a3a 0%, #16213e 100%);
  padding: 40px 20px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 198, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-box:hover::before {
  left: 100%;
}

.stat-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(11, 26, 58, 0.15);
  background: linear-gradient(135deg, #16213e 0%, #1f2c4a 100%);
}

.stat-box h3 {
  font-size: 36px;
  font-weight: 600;
  color: #00c6ff;
  position: relative;
  z-index: 1;
}

.stat-box h3::after {
  content: "+";
  font-size: 22px;
  margin-left: 3px;
}

.stat-box p {
  margin-top: 10px;
  font-size: 15px;
  color: #b0b8c4;
  position: relative;
  z-index: 1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-box {
    padding: 30px 15px;
  }

  .stat-box h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ===== SCROLL REVEAL EFFECTS ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  animation: revealPulse 0.6s ease 0.4s;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  animation: revealPulse 0.6s ease 0.4s;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  animation: revealPulse 0.6s ease 0.4s;
}

@keyframes revealPulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1.1;
  }
  100% {
    opacity: 1;
  }
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: linear-gradient(135deg, #f7f9fc 0%, #e8f4f8 100%);
  padding: 80px 10%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUp 0.6s ease;
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.image-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #999;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 198, 255, 0.1);
  transition: top 0.4s ease;
}

.team-card:hover .image-placeholder {
  background: linear-gradient(135deg, #c0c0c0 0%, #b0b0b0 100%);
}

.team-card:hover .image-placeholder::before {
  top: 100%;
}

.team-card h3 {
  font-size: 22px;
  color: #0b1a3a;
  padding: 20px 20px 10px;
  margin: 0;
}

.team-card p {
  font-size: 14px;
  color: #666;
  padding: 0 20px 20px;
  margin: 0;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-section {
    padding: 50px 5%;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  background: linear-gradient(135deg, #f7f9fc 0%, #e8f4f8 100%);
  padding: 80px 10%;
  animation: fadeIn 0.8s ease;
  width: 100%;
}

.partners-section h2 {
  text-align: center;
  font-size: 36px;
  color: #0b1a3a;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.partners-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00c6ff, #0056b3);
  border-radius: 2px;
}

.partners-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
  margin-top: 35px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUp 0.6s ease;
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.partner-image {
  width: 100%;
  height: 450px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
  background: #f5f5f5;
}

.partner-card:hover .partner-image {
  transform: scale(1.05);
}

.partner-image-placeholder {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #999;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: #888;
  flex-direction: column;
}

.partner-image-placeholder::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.1), rgba(0, 86, 179, 0.1));
  transition: top 0.4s ease;
}

.partner-card:hover .partner-image-placeholder {
  background: linear-gradient(135deg, #c0c0c0 0%, #b0b0b0 100%);
}

.partner-card:hover .partner-image-placeholder::before {
  top: 100%;
}

.partner-image-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 20px;
}

.partner-info {
  padding: 35px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.partner-info h3 {
  font-size: 24px;
  color: #0b1a3a;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.partner-designation {
  font-size: 14px;
  color: #00c6ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.partner-bio {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* ===== RESPONSIVE PARTNERS ===== */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .partners-section {
    padding: 50px 5%;
  }

  .partners-section h2 {
    font-size: 28px;
  }

  .partner-image {
    height: 350px;
  }

  .partner-image-placeholder {
    height: 350px;
  }

  .partner-info {
    padding: 25px;
  }

  .partner-info h3 {
    font-size: 20px;
  }

  .partner-bio {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .partners-section h2 {
    font-size: 24px;
  }

  .partners-subtitle {
    margin-bottom: 40px;
  }

  .partner-image {
    height: 300px;
  }

  .partner-image-placeholder {
    height: 300px;
  }

  .partner-info {
    padding: 20px;
  }

  .partner-info h3 {
    font-size: 18px;
  }
}

/* ===== FOOTER STYLES ===== */
.site-footer-main {
  background: linear-gradient(135deg, #0b1a3a 0%, #16213e 100%);
  color: #fff;
  padding: 60px 10%;
  margin-top: 40px;
  animation: fadeIn 0.8s ease;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.8s ease;
}

.footer-brand p {
  color: #b0b8c4;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 15px;
}

.footer-logo img {
  max-width: 120px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #00c6ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b8c4;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00c6ff;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #00c6ff;
}

.footer-links a:hover::before {
  width: 100%;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-item strong {
  font-size: 14px;
  color: #00c6ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.contact-item p {
  color: #b0b8c4;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.contact-link {
  color: #00c6ff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  word-break: break-word;
}

.contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 198, 255, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #b0b8c4;
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: #b0b8c4;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00c6ff;
  transition: width 0.3s ease;
}

.footer-legal a:hover {
  color: #00c6ff;
}

.footer-legal a:hover::before {
  width: 100%;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .site-footer-main {
    padding: 50px 5%;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-section {
    animation: fadeInUp 0.6s ease;
  }

  .footer-section h4 {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-brand p {
    font-size: 14px;
    margin-top: 12px;
  }

  .footer-logo img {
    max-width: 100px;
  }

  .contact-item {
    align-items: flex-start;
    text-align: left;
  }

  .contact-item strong {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
  }

  .contact-item p {
    font-size: 14px;
    word-break: break-word;
    word-wrap: break-word;
  }

  .contact-link {
    font-size: 14px;
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  .footer-legal a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .site-footer-main {
    padding: 30px 4%;
    margin-top: 60px;
  }

  .footer-container {
    gap: 25px;
  }

  .footer-section h4 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .contact-details {
    gap: 12px;
  }

  .contact-item {
    gap: 4px;
    align-items: flex-start;
    text-align: left;
  }

  .contact-item strong {
    font-size: 12px;
    display: block;
    margin-bottom: 4px;
  }

  .contact-item p {
    font-size: 12px;
    word-break: break-word;
    word-wrap: break-word;
    white-space: normal;
  }

  .contact-link {
    font-size: 12px;
    display: block;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 12px;
    text-align: center;
  }

  .footer-legal {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .footer-legal a {
    font-size: 12px;
  }
}

/* ===== SERVICES DETAIL PAGE ===== */
.services-detail-section {
  padding: 80px 10%;
  background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
  width: 100%;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-card {
  background: #fff;
  padding: 50px;
  margin-bottom: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 5px solid #00c6ff;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.6s ease;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 198, 255, 0.05), transparent);
  transition: left 0.6s ease;
}

.service-detail-card:hover::before {
  left: 100%;
}

.service-detail-card:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  transform: translateY(-8px);
  border-left-color: #0056b3;
}

.service-detail-card h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b1a3a;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-detail-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.service-features li {
  font-size: 15px;
  color: #333;
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  transition: transform 0.3s ease;
}

.service-features li:hover {
  transform: translateX(5px);
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00c6ff;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
}

.service-features li:hover:before {
  color: #0056b3;
  transform: scale(1.2);
}

.services-cta {
  background: linear-gradient(135deg, #0b1a3a, #16213e);
  color: #fff;
  padding: 60px 10%;
  text-align: center;
  margin-top: 40px;
  animation: fadeIn 0.8s ease;
}

.services-cta h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  animation: slideInDown 0.6s ease;
}

.services-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #b0b8c4;
  animation: slideInDown 0.6s ease 0.1s both;
}

/* ===== ABOUT DETAIL PAGE ===== */
.about-detail-section {
  padding: 80px 10%;
  background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
  width: 100%;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.about-content {
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b1a3a;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0056b3);
  border-radius: 2px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  margin-top: 25px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

.about-list li {
  font-size: 16px;
  color: #333;
  padding: 15px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
  transition: transform 0.3s ease;
}

.about-list li:hover {
  transform: translateX(8px);
}

.about-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #00c6ff;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
}

.about-list li:hover:before {
  color: #0056b3;
  transform: translateX(5px);
}

/* ===== CONTACT DETAIL PAGE ===== */
.contact-detail-section {
  position: relative;
  padding: 100px 10%;
  background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
  z-index: 10;
  clear: both;
  width: 100%;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  animation: fadeInUp 0.8s ease 0.1s both;
  will-change: opacity, transform;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b1a3a;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0056b3);
  border-radius: 2px;
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
  margin-top: 25px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-method {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #00c6ff;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-method:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-left-color: #0056b3;
}

.contact-method h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0b1a3a;
  margin-bottom: 10px;
}

.contact-method a {
  color: #00c6ff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-method a:hover {
  color: #0b1a3a;
}

.contact-method p {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.phone-list {
  margin: 12px 0;
  padding-left: 0;
}

.phone-list p {
  font-weight: 600;
  color: #0b1a3a;
  margin: 8px 0 4px 0;
  font-size: 13px;
}

.phone-list a {
  display: inline-block;
  margin-right: 12px;
  color: #00c6ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.phone-list a:hover {
  color: #0b1a3a;
  text-decoration: underline;
}

.contact-form-section {
  animation: fadeInUp 0.8s ease 0.2s both;
  will-change: opacity, transform;
}

.contact-form-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b1a3a;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.contact-form-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00c6ff, #0056b3);
  border-radius: 2px;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-top: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0b1a3a;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00c6ff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 198, 255, 0.1);
  transform: translateY(-2px);
}

.contact-form .btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  margin-top: 10px;
}

/* ===== CONTACT SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-detail-section {
    padding: 60px 5%;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info h2,
  .contact-form-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .contact-info > p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .contact-methods {
    gap: 30px;
  }

  .contact-method {
    padding: 25px;
  }

  .contact-method h3 {
    font-size: 16px;
  }

  .contact-form {
    padding: 30px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
    padding: 11px 13px;
  }

  .contact-form .btn {
    padding: 13px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .services-detail-section,
  .about-detail-section,
  .contact-detail-section {
    padding: 30px 4%;
  }

  .service-detail-card h2,
  .about-content h2,
  .contact-info h2,
  .contact-form-section h2 {
    font-size: 18px;
  }

  .contact-content {
    gap: 30px;
  }

  .contact-form {
    padding: 15px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
    padding: 10px 12px;
  }

  .contact-form .btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .contact-info > p,
  .contact-method p {
    font-size: 14px;
  }

  .contact-method {
    padding: 20px;
    border-left-width: 3px;
  }

  .contact-info h2::after {
    width: 50px;
    height: 2px;
  }
}

@media (max-width: 600px) {
  .contact-detail-section {
    margin-top: 0;
  }

  .contact-info {
    animation: fadeInUp 0.6s ease 0.05s both;
  }

  .contact-form-section {
    animation: fadeInUp 0.6s ease 0.15s both;
  }

  .contact-methods {
    gap: 25px;
  }

  .contact-method {
    transition: all 0.3s ease;
  }

  .contact-method:hover {
    transform: translateY(-4px);
  }
}




