:root {
  --primary: #091853;
  --accent: #109ba0;
  --light: #f8f9fa;
  --dark: #051033;
  --text: #333;
  --text-light: #666;
  --gradient: linear-gradient(135deg, var(--primary) 0%, #0c2161 100%);
  --card-shadow1: 0 15px 30px rgba(9, 24, 83, 0.1);
  --card-shadow: 0 15px 30px rgba(9, 24, 83, 0.15);
  --text-light: #666;
  --gold: #d4af37;
  --silver: #c0c0c0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background-color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* padding: 20px 5%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  /* padding: 15px 5%; */
}
/*make only on laptop destop where menu display*/

.header-right {
  
    clip-path: polygon(5% 0%, 75% 0%, 100% 0%, 100% 100%, 80% 100%, 0% 100%);
    background-color: var(--accent);
    height: 100px;
    padding-left: 100px;
    display: flex;
    align-items: center;
    min-width: 70%;
    justify-content: flex-end;
    padding-right: 40px;
}

.header-right .nav-menu a {
  color: var(--light);
}

.header-left .logo {
      margin-left: 30px;
    max-width: 30%;
}


.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: auto;
  height: 60px;
  margin-right: 15px;
}

.logo-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--accent);
  position: relative;
}

.logo-text span:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin: 0 20px;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.nav-menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover:after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--primary);
  z-index: 1001;
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  height: 100vh;
  background: white;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 100px 30px 30px;
}

.mobile-nav .logo-img {
  position: absolute;
  top: 10px;
  left: 10px;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav .close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  margin-bottom: auto;
}

.mobile-nav ul li {
  margin-bottom: 20px;
}

.mobile-nav ul li a {
  color: var(--primary);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
      position: relative;
}

.mobile-nav ul li a:hover {
  color: var(--accent);
}

.mobile-nav ul li a:hover:after {
  width: 100%;
}

.mobile-nav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.mobile-footer {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-footer .contact-info {
  margin-bottom: 20px;
  padding: 10px 10px 10px 0;
  box-shadow: unset;
}

.mobile-footer .contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.mobile-footer .contact-info i {
  color: var(--accent);
  margin-right: 10px;
  width: 20px;
}

.mobile-footer .social-links {
  display: flex;
  gap: 15px;
}

.mobile-footer .social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

/* Sticky Background Container */

.sticky-bg-img {
  background-attachment: fixed;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sticky-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* z-index: 1; */
}

.type-1.sticky-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(16, 155, 160, 0.8) 0%,
    rgba(9, 24, 83, 0.85) 100%
  );
}

.type-2.sticky-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(5, 16, 51, 0.85) 0%,
    rgba(9, 24, 83, 0.9) 100%
  );
}

.type-3.sticky-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(5, 16, 51, 0.75) 0%,
    rgba(9, 24, 83, 0.52) 100%
  );
}

.type-4.sticky-bg-overlay {
  background: linear-gradient(
    135deg,
    rgb(255 255 255 / 88%) 0%,
    rgb(255 255 255 / 98%) 100%
  );
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgb(255 255 255 / 41%) 100%
  );
}

.sticky-bg-img .main-content {
  position: relative;
  z-index: 2;
}

.sticky-bg-img .main-content p.sbg {
  color: var(--silver);
}
.sticky-bg-img .main-content h2.sbg {
  color: var(--light);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
  padding: 0 5%;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    135deg,
    rgba(9, 24, 83, 0.85) 0%,
    rgba(9, 24, 83, 0.7) 100%
  );
  background: linear-gradient(
    135deg,
    rgb(9 24 83 / 48%) 0%,
    rgb(9 24 83 / 84%) 100%
  ); */
      background: linear-gradient(135deg, rgb(9 24 83 / 48%) 0%, rgb(9 24 83 / 30%) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.8rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 16px 42px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(16, 155, 160, 0.3);
}

.btn:hover {
  background: transparent;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(16, 155, 160, 0.4);
}

/* Section Styles */
.section {
  padding: 80px 5%;
  padding: 80px 5%;
  min-height: 100vh;
  display: flex;

  flex-direction: column;
  justify-content: center;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
}

.section-header p {
  max-width: 700px;
  margin: 30px auto 0;
  color: var(--text-light);
  font-size: 1rem;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.mv-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(9, 24, 83, 0.15);
}

.mv-card h4 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.mv-card h4 i {
  margin-right: 10px;
  color: var(--accent);
}

/* Core Values */
.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(9, 24, 83, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

/* Tabs Section */
.tabs-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.tabs-header {
  display: flex;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 0;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 20px 30px;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 160px;
  text-align: center;
}

.tab-btn.active {
  background: rgba(255, 255, 255, 0.15);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tab-content {
  display: none;
  padding: 40px;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.service-details h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  padding: 20px 0;
}

.service-features li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Why Choose Us */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(9, 24, 83, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: white;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 0px;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: var(--accent);
  opacity: 0.2;
  font-family: serif;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-light);
  padding-left: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
}

.author-info h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.author-info p {
  color: var(--accent);
  font-size: 0.9rem;
}

/* Swiper main wrapper fixes */
.swiper-container {
  position: relative;
  padding-bottom: 100px; /* Space for bottom buttons */
  overflow: hidden;
  max-width: calc(100vw - 5%);
}

/* Custom Buttons */
.custom-swiper-button-prev,
.custom-swiper-button-next {
  position: absolute;
  bottom: 10px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease;
}

/* Hover effect */
.custom-swiper-button-prev:hover,
.custom-swiper-button-next:hover {
  transform: scale(1.1);
}

/* Position Prev to left center, Next to right center */
.custom-swiper-button-prev {
  left: calc(50% - 60px);
}

.custom-swiper-button-next {
  right: calc(50% - 60px);
}

.stars {
  font-size: 1rem;
  color: #f5b50a; /* Gold */
}

/* Responsive */
@media (max-width: 768px) {
  .swiper {
    padding: 0 10px;
  }
}
/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-info {
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 24px;
  color: var(--accent);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-item div p {
  margin-bottom: 5px;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: var(--light);
  color: var(--text);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 155, 160, 0.1);
}

.form-group textarea {
  height: 150px;
  resize: none;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 80px 5% 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  margin-top: 20px;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;

  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

.legal-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.copyright {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 4rem;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 100px 5%;
  }

  .modal-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .mobile-toggle {
    display: block;
  }
   .nav-menu {
    display: none;
  }
  .header-right {
       display: none;
  }
  .header {
    
    padding: 20px 5%;
  }
}
@media (max-width: 768px) {
 

  .nav-menu {
    display: none;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.4rem;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .tabs-header {
    flex-direction: column;
  }

  .modal-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .header-left .logo {
    margin-left: 0px;
    max-width: unset;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .section {
    padding: 80px 5%;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .legal-info {
    flex-direction: column;
  }

  .footer-links {
    margin-top: 15px;
  }

  .footer-links a {
    margin-left: 0;
    margin-right: 20px;
  }
}

/* Premium Services Section */
.services-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.services-section:before {
  content: "";
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.03;
}

.services-grid {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px; */
   display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  position: relative;
   flex: 1 1 350px; /* Grow/shrink allowed, but minimum width is 350px */
   max-width: 350px;


}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(9, 24, 83, 0.15);
}

.service-header {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.service-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transition: transform 0.5s ease;
}

.service-card:hover .service-header img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--primary) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.service-title {
  font-size: 1.8rem;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.service-content {
  padding: 30px;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
}

.service-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}

.service-actions {
  display: flex;
  justify-content: space-between;
}

.btn-outline {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  font-size: 14px;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-whatsapp i {
  margin-right: 8px;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
}

/* Service Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  overflow-y: auto;
  padding: 30px;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 900px;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  height: 350px;
  position: relative;
}

.modal-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--primary) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.modal-title {
  font-size: 2.5rem;
  color: white;
  max-width: 80%;
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-modal:hover {
  transform: rotate(90deg);
  background: var(--accent);
  color: white;
}

.modal-body {
  padding: 50px;
}

@media (max-width: 576px) { 
  .modal-body {
  padding: 20px;
    }  
}

.modal-body h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
}

.modal-body h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent);
}

.modal-features {
  /* display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0; */
  display: flex;
  gap: 30px;
  margin: 30px 0;

  flex-wrap: wrap;
}

.modal-feature-item {
  display: flex;
  align-items: flex-start;
  flex: 1 1 calc(50% - 30px);
  min-width: 250px;
}

.modal-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.modal-actions .btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 1px;
  border: solid 0;
  box-shadow: unset;
}

.modal-actions .btn:hover {
  display: inline-flex;
  background: var(--primary);
  align-items: center;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 1px;
  border: solid 0;
  box-shadow: unset;
}

.premium-about-container {
  /* max-width: 1400px; */
  width: 100%;
  margin: 0 auto;
}

.pa-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.pa-section-header h2 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1px;
}

.pa-section-header h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
}

.pa-section-header p {
  max-width: 700px;
  margin: 30px auto 0;
  color: var(--text-light);
  font-size: 1.2rem;
  line-height: 1.8;
}

.pa-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
}

.pa-about-content:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 150px;
  height: 150px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  opacity: 0.5;
}

.pa-about-content:after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 150px;
  height: 150px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  opacity: 0.5;
}

.pa-about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(9, 24, 83, 0.15);
  /* height: 550px; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
}

.pa-about-image:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  pointer-events: none;
}

.pa-about-text {
  padding: 20px 0;
}

.pa-about-text h3 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.pa-about-text h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.pa-about-text p {
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
}

.pa-highlight {
  background: linear-gradient(
    120deg,
    rgba(16, 155, 160, 0.1) 0%,
    rgba(16, 155, 160, 0) 100%
  );
  background: linear-gradient(
    120deg,
    rgb(16 155 160 / 27%) 0%,
    rgb(16 155 160 / 2%) 100%
  );
  padding: 30px;
  border-left: 3px solid var(--accent);
  margin: 40px 0 0 0;
  border-radius: 0 8px 8px 0;
}

.pa-highlight p {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0;
}

.pa-values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 70px 40px;
  margin-top: 60px;
}

.pa-value-card {
  background: white;
  border-radius: 10px;
  padding: 55px 10px 10px;
  box-shadow: 0 15px 40px rgba(9, 24, 83, 0.08);
  transition: all 0.4s ease;
  position: relative;
  text-align: center;
  border-bottom: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.pa-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(9, 24, 83, 0.15);
}

.pa-value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 30px;
  color: white;
  transition: all 0.4s ease;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.pa-value-card:hover .pa-value-icon {
  transform: translateX(-50%) rotateY(360deg);
  box-shadow: 0 0 30px rgba(16, 155, 160, 0.4);
}

.pa-value-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.pa-value-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.pa-mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.pa-mv-card {
  background: white;
  border-radius: 10px;
  padding: 50px 40px;
  box-shadow: 0 20px 50px rgba(9, 24, 83, 0.1);
  position: relative;
  overflow: hidden;
}

.pa-mv-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent);
}

.pa-mv-card h4 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.pa-mv-card h4 i {
  margin-right: 15px;
  color: var(--gold);
  font-size: 28px;
}

.pa-mv-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

.pa-stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 80px;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.pa-stats-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/concrete-wall.png");
  opacity: 0.05;
}

.pa-stat-card {
  text-align: center;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.pa-stat-number {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.pa-stat-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pa-about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-image: url('/imgs/ShipProjectCargo.jpg');
  background-position: center;
}

.founder-section {
    background: #f9fbff;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(9, 24, 83, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 4.5rem;
    
}

.founder-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent); 
  }

.founder-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
}

.founder-image {
    flex: 1 1 40%;
    text-align: center;
}

.founder-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    aspect-ratio: 1/1;
}

.founder-content {
    flex: 1 1 50%;
    color: var(--text);
}

.founder-label {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}

.founder-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.founder-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.founder-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text);
}

.founder-quote {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    position: relative;
    margin-top: 20px;
    line-height: 1.6;
}

.founder-quote i {
    color: var(--accent);
    margin: 0 5px;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .founder-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .founder-content {
        text-align: center;
    }

    .founder-title {
        font-size: 1.6rem;
    }

    .founder-quote {
        font-size: 1.05rem;
    }
}


.about-card {
  text-align: center;
  padding: 20px;
  max-width: 500px;
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); */
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.about-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.about-title {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-text {
  font-size: 1.5rem;
  line-height: 2.5rem;
}

@media (max-width: 600px) {
  .about-card {
    padding: 15px;
  }

  .about-icon {
    font-size: 3rem;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-text {
    font-size: 0.95rem;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pa-about-content {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .pa-about-content {
    grid-template-columns: 1fr;
  }

  .pa-about-image {
    height: 400px;
  }

  .pa-mission-vision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pa-section-header h2 {
    font-size: 2.8rem;
  }

  .pa-stats-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .pa-stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .pa-section-header h2 {
    font-size: 2.3rem;
  }

  .pa-about-image {
    height: 300px;
  }

  .pa-value-card {
    padding: 40px 20px;
  }

  .pa-value-icon {
    width: 60px;
    height: 60px;
    font-size: 25px;
    top: -30px;
  }

  .pa-mv-card {
    padding: 40px 25px;
  }
}

.pf-compact-section {
  background: linear-gradient(135deg, #f0f5ff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.pf-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pf-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 2.5rem;
}

.pf-section-header h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.2px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.pf-section-header h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.pf-section-header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  padding-top: 3.5rem;
}

.pf-name-concept {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  margin: 4.5rem 0;
  flex-wrap: wrap;
}

.pf-name-breakdown {
  flex: 1;
  min-width: 300px;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  margin: 0 1rem;
  text-align: center;
  z-index: 2;
}

.pf-name-breakdown:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
}

.pf-name-breakdown h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.pf-name-breakdown p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pf-name-highlight {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.pf-plus-name {
  align-self: center;
  font-size: 2rem;
  color: var(--primary);
}

.pf-name-summary {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.07);
    border-left: 6px solid var(--accent);
    border-radius: 16px;
    padding: 30px 28px;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;    
    margin: 4.5rem 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.pf-name-summary::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, var(--accent), transparent 60%);
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.pf-name-summary p {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
}

.pf-name-summary strong {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
}

.pf-name-summary .pf-name-explain {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px 8px;
    align-items: center;
    justify-content: center;
}
.pf-name-summary .pf-name-explain .strong{
  color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
}

.pf-tagline {
    display: flex;
    flex-direction: row;
    gap: 25px;
    font-style: normal;
    margin-top: 15px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.pf-tagline-sub {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    background: linear-gradient(135deg, var(--light), #fff);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pf-tagline-sub i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Optional: subtle animation on hover */
.pf-tagline-sub:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 155, 160, 0.15);
}



.pf-services-showcase {
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fit, minmax(calc(100vw / 5), 1fr)); */
  gap: 1.2rem;
  max-width: 100%;
  margin: 0 auto 3rem;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.pf-service-badge {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(9, 24, 83, 0.05);
  /* display: inline-grid; */
  /* justify-self: center; */
  /* max-width: 140px; */
  width: 154px;
}

.pf-service-badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(9, 24, 83, 0.15);
}

.pf-service-badge i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.pf-service-badge h4 {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.pf-cta-container {
  text-align: center;
  margin-top: 2rem;
}

.pf-cta-button {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(9, 24, 83, 0.2);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.pf-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(9, 24, 83, 0.3);
}

.pf-cta-button:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.pf-cta-button:hover:after {
  left: 100%;
}

.pf-decoration {
  position: absolute;
  z-index: 1;
  opacity: 0.03;
}

.pf-dec-1 {
  top: 10%;
  left: 5%;
  font-size: 12rem;
  color: var(--primary);
  transform: rotate(-15deg);
}

.pf-dec-2 {
  bottom: 15%;
  right: 5%;
  font-size: 10rem;
  color: var(--accent);
  transform: rotate(20deg);
}

@media (max-width: 768px) {
  .pf-name-concept {
    flex-direction: column;
  }

  .pf-name-breakdown {
    margin: 1rem 0;
  }

  .pf-section-header h2 {
    font-size: 1.8rem;
  }

  .pf-name-breakdown h3 {
    font-size: 2rem;
  }

  .pf-services-showcase {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

.premium-why-choose {
  width: 100%;
}

.pwc-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.pwc-header h2 {
  font-size: 3.5rem;
  color: var(--light);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.5px;
  z-index: 2;
}

.pwc-header h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--accent);
  border-radius: 5px;
}

.pwc-header p {
  max-width: 700px;
  margin: 40px auto 0;
  color: var(--light);
  font-size: 1.3rem;
  line-height: 1.8;
    z-index: 2;
    filter: drop-shadow(2px 4px 6px black);
    font-weight: 600;
}

.pwc-features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
}

.pwc-feature {
  background: white;
  border-radius: 20px;
  padding: 50px 35px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 2;
  border: 1px solid rgba(9, 24, 83, 0.05);
}

.pwc-feature:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(9, 24, 83, 0.2);
}

.pwc-feature:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.pwc-feature:hover:before {
  transform: scaleX(1);
}

.pwc-icon-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  transition: all 0.4s ease;
}

.pwc-feature:hover .pwc-icon-container {
  transform: scale(1.1);
}

.pwc-icon-container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.1;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.pwc-feature:hover .pwc-icon-container:before {
  transform: scale(1.1);
  opacity: 0.2;
}

.pwc-icon {
  font-size: 42px;
  color: var(--accent);
  position: relative;
  z-index: 2;
}

.pwc-feature h3 {
  font-size: 1.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.pwc-feature p {
  color: #666;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 320px;
  margin: 0 auto;
  
}

.pwc-decoration {
  position: absolute;
  z-index: 1;
  /* opacity: 0.03; */
  opacity: 0.7;
  display: block;
}

@media (max-width: 992px) { 
    .pwc-decoration { 
        display: none;
    }
}

.pwc-d-1 {
  top: 30%;
  left: 15%;
  font-size: 3.5rem;
  color: var(--silver);
  animation: float 12s infinite ease-in-out;
}

.pwc-d-2 {
  bottom: 15%;
  right: 7%;
  font-size: 4rem;
  color: var(--accent);
  animation: float 15s infinite ease-in-out;
  animation-delay: 1s;
}

.pwc-d-3 {
  top: 40%;
  right: 15%;
  font-size: 3rem;
  color: var(--silver);
  animation: float 10s infinite ease-in-out;
  animation-delay: 0.5s;
}

.pwc-d-4 {
  bottom: 30%;
  left: 5%;
  font-size: 3.5rem;
  color: var(--accent);
  animation: float 14s infinite ease-in-out;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(5deg);
  }

  50% {
    transform: translateY(0) rotate(0deg);
  }

  75% {
    transform: translateY(-15px) rotate(-5deg);
  }
}

@media (max-width: 992px) {
  .pwc-header h2 {
    font-size: 3rem;
  }

  .pwc-features-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .pwc-header h2 {
    font-size: 2.5rem;
  }

  .pwc-header p {
    font-size: 1rem;
  }

  .pwc-feature {
    padding: 40px 25px;
  }

  .pwc-icon-container {
    width: 80px;
    height: 80px;
  }

  .pwc-icon {
    font-size: 36px;
  }

  .pwc-feature h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .pwc-header h2 {
    font-size: 2.2rem;
  }

  .pwc-features-container {
    grid-template-columns: 1fr;
  }
}

.contact-info .map-container {
  margin-top: 40px;
  background: #f0f7ff;
  padding: 25px;
  border-radius: 10px;
}

.contact-info .map-container h4 {
  margin-bottom: 15px;
  color: var(--primary);
}

.contact-info .map-container .map-box i {
  font-size: 24px;
  margin-right: 10px;
}

.contact-info .map-container .map-box {
  height: 300px;
  background: #e1e9f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 500;
}

/* Decorative grid fillers */
.grid-filler {
  visibility: hidden;
  /* Makes them invisible but still take up space */
  height: 100%;
}

.filler-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(9, 24, 83, 0.7) 0%,
    rgba(5, 16, 51, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.grid-filler:hover .filler-overlay {
  opacity: 1;
}

.grid-item,
.grid-filler {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.grid-item:nth-child(1),
.grid-filler:nth-child(1) {
  animation-delay: 0.1s;
}

.grid-item:nth-child(2),
.grid-filler:nth-child(2) {
  animation-delay: 0.2s;
}

.grid-item:nth-child(3),
.grid-filler:nth-child(3) {
  animation-delay: 0.3s;
}

.grid-item:nth-child(4),
.grid-filler:nth-child(4) {
  animation-delay: 0.4s;
}

.grid-item:nth-child(5),
.grid-filler:nth-child(5) {
  animation-delay: 0.5s;
}

.grid-item:nth-child(6),
.grid-filler:nth-child(6) {
  animation-delay: 0.6s;
}

.grid-item:nth-child(7),
.grid-filler:nth-child(7) {
  animation-delay: 0.7s;
}

.grid-item:nth-child(8),
.grid-filler:nth-child(8) {
  animation-delay: 0.8s;
}

/* General filler styling */
.grid-filler {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: var(--card-shadow1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  /* padding: 10px; */
  text-align: center;
}

/* Image filler */
.grid-filler.image {
  background-size: cover;
  background-position: center;
      background-position: right top;
}

/* Video filler */
.grid-filler.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* YouTube iframe */
.grid-filler.youtube iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}


/* Quote filler - Elegant style */
.grid-filler.quote {
  background: linear-gradient(
    135deg,
    rgba(9, 24, 83, 0.8) 0%,
    rgba(16, 155, 160, 0.6) 100%
  );
  border: 0px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(9, 24, 83, 0.3);
  position: relative;
  text-align: center;
}
.services-grid .grid-filler.quote { 
  background: linear-gradient(
    135deg,
    rgba(9, 24, 83, 1) 0%,
    rgba(16, 155, 160, 1) 100%
  );

}

.grid-filler.quote div::before {
  content: "“";
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
}
.grid-filler.quote div::after {
  content: "“";
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
}

.grid-filler.quote div::before {
  top: 10px;
  left: 15px;
}

.grid-filler.quote div::after {
  content: "”";
  bottom: 10px;
  right: 15px;
}

/* Textcard filler - Premium style */
.grid-filler.textcard {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(16, 155, 160, 0.3);
  padding: 20px 15px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-filler.textcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(16, 155, 160, 0.5);
}

/* ICON stays as you gave: */
.grid-filler.textcard i {
  width: 100px;
  height: 100px;
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); */
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: white;
  box-shadow: 0 4px 12px rgba(16, 155, 160, 0.4);
}

/* Title Text */
.grid-filler.textcard h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 10px 0 15px;
  text-align: center;
  color: #fff;
}

/* Button updated — smaller, elegant */
.grid-filler.textcard a {
  padding: 10px 28px;
  background: #fff;
  color: var(--primary);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.grid-filler.textcard a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(16, 155, 160, 0.4);
}

  .loader {
            border: 6px solid #f3f3f3;
            border-top: 6px solid var(--accent);
            border-radius: 50%;
            width: 36px;
            height: 36px;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        #formAlert {
            border-radius: 8px;
            padding: 14px 16px;
            background: var(--alert-bg, #eef6f5);
            color: var(--alert-fg, #1b3130);
            box-shadow: 0 4px 16px #0001;
            font-size: 1rem;
            text-align: center;
        }

        #formAlert.success {
            background: #d9fbe7;
            color: #125824;
        }

        #formAlert.error {
            background: #fee2e2;
            color: #891515;
        }

        
.pa-about-image .pa-image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  max-height: 100%;
    max-width: 100%;
}

.service-card.only-bg {
  background-image: url('/imgs/others/services.jpg');
    flex: 2 2 700px;
    max-width: 740px;
    width: 100%;
  
}

/* LEGAL MODAL STYLES */
/* LEGAL MODAL STYLES - Using CSS variables */
.legal-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(9,24,83, 0.70); /* keep as is for overlay */
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.legal-modal.active { display: flex; }

.legal-modal .modal-content {
    background: var(--light);
    color: var(--primary);
    border-radius: 20px;
    width: 94%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--card-shadow);
    animation: modalPopIn .25s cubic-bezier(.4,0,.2,1);
}

@keyframes modalPopIn {
    from { transform: translateY(40px) scale(0.97); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.legal-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 1.2em 1.5em 0.8em 1.5em;
    background: var(--light);
    border-radius: 20px 20px 0 0;
        max-height: 100px;
}

.legal-modal .modal-header h3 {
    font-size: 1.4em;
    margin: 0;
    color: var(--primary);
}

.legal-modal .close-modal {
    cursor: pointer;
    font-size: 1.4em;
    color: var(--primary);
}

.legal-modal .modal-body {
    padding: 1.5em;
    font-size: 1em;
    line-height: 1.8;
    max-height: 62vh;
    overflow-y: auto;
    color: var(--text);
}

.legal-modal .modal-footer {
    border-top: 1px solid #eee;
    padding: 1em 1.5em;
    background: var(--light);
    border-radius: 0 0 20px 20px;
}

.legal-link {
    color: var(--accent);
    text-decoration: underline;
    margin: 0 0.25em;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.2s;
}
.legal-link:hover {
    color: var(--primary);
}

.legal-info .designed-by {
    font-size: 0.97em;
    color: var(--text-light);
    font-weight: 500;
}
.legal-info .designed-by a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.legal-info .designed-by a:hover {
    color: var(--primary);
    text-decoration: underline;
}
