:root {
  --color-dark: rgb(3, 24, 53);    /* Dark blue-grey for text and dark backgrounds */
  --color-gold: #d3bd81;    /* Gold for accents and highlights */
  --color-grey: #CBD0D8;    /* Light grey for secondary elements */
  --color-light: #F4F3EA;   /* Off-white for backgrounds */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 10%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: linear-gradient(65deg, 
  #0140a9 0%,
  #146fc0 50%,  
  #07a5e4 100%
  );
  background-size: 200% 200%;
  animation: gradient-wave 15s ease infinite;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  text-decoration: none;
}

.logo-image {
  height: 120px;
  width: auto;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: var(--color-light);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

nav a:hover {
  color: var(--color-gold);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a[aria-current='page']::after {
  width: 100%;
}

main {
  margin-top: 0;
}

/* Hero Slider Styles */
.hero-slider {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

.slide-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide-content {
  color: var(--color-light);
  max-width: 800px;
  padding: 2rem;
}

@font-face {
  font-family: 'EFCO';
  src: url('./images/EFCO.ttf') format('woff');
}
.slide-content h1 {
  font-family: 'EFCO';
  font-weight: 700;
  font-size: 7rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.slide-divider {
  width: 150px;
  height: 3px;
  background-color: var(--color-gold);
  margin: 0 auto 1.5rem auto;
}

.slide-content p {
  font-size: 1.8rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Style the navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  color: white;
}

/* Style the pagination bullets */
.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Intro Section */
.intro {
  padding: 5rem 10%;
  text-align: center;
  background-color: var(--color-grey);
}

.intro-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.rotating-logo {
  width: 150px;
  height: 150px;
  animation: rotate 10s linear infinite;
  background-color: #0b121c;
  border-radius: 50%;
}

.rotating-logo.left {
  animation-direction: normal;
}

.rotating-logo.right {
  animation-direction: reverse;
}

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

.intro h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

/* Our Story Section */
.our-story {
  padding: 50px;
  background-color: var(--color-light);
}

.story-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-image {
  flex: 1;
  padding: 10px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.story-content {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.story-content h2 {
  font-size: 2.5rem;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.story-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.story-content em {
  font-style: italic;
  color: var(--color-gold);
  font-size: 1.1em;
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: var(--color-light);
  text-align: center;
  padding: 2rem 0;
}

footer a {
  color: var(--color-gold);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Scroll Effect for Header */
.scrolled {
  background: linear-gradient(45deg, 
    #146fc0 0%, 
    #0140a9 50%, 
    #07a5e4 100%
  );
  background-size: 200% 200%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scrolled .logo-image {
  height: 40px;
}

.scrolled nav a {
  color: var(--color-light);
  text-shadow: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
    background-color: rgb(3, 24, 53, 0.95);
  }
  
  .logo-image {
    height: 60px;
  }
  
  nav a {
    color: var(--color-light);
    text-shadow: none;
  }
  
  nav {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .slide-content h1 {
    font-size: 3rem;
  }
  
  .slide-content p {
    font-size: 1.4rem;
  }
  
  .story-container {
    flex-direction: column;
  }
  
  .story-image {
    min-height: 300px;
  }
  
  .rotating-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
}

html {
  scroll-padding-top: 100px; /* Adjust this value based on your header height */
  scroll-behavior: smooth;
}

/* Services Section */
.services {
  padding: 50px;
  background-color: var(--color-grey);
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-dark);
  margin-bottom: 2rem;
}

.services-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  flex: 1;
  height: 400px;
  perspective: 1000px;
  padding: 15px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-front {
  background-color: var(--color-light);
}

.card-front img {
  width: 100%;
  height: 75%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.card-front h3 {
  padding: 20px;
  margin: 0;
  color: var(--color-dark);
}

.card-back {
  background-color: var(--color-dark);
  color: var(--color-light);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.card-back h3 {
  margin-bottom: 20px;
  color: var(--color-gold);
}

.card-back ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.card-back li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}

.card-back li:before {
  content: "•";
  color: var(--color-gold);
  position: absolute;
  left: 0;
}

/* Responsive design for services */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
  }

  .service-card {
    height: 350px;
  }
}

/* Fix mobile viewport issues */
html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .services-container,
  .story-container,
  .intro-content {
    width: 100%;
    margin: 0;
    padding: 15px;
  }
  
  .services,
  .our-story,
  .intro {
    padding: 30px 0;
  }
}

/* Pricing Section */
.pricing {
  padding: 80px 20px;
  background-color: var(--color-light);
}

.pricing h2 {
  text-align: center;
  color: var(--color-dark);
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-table {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.gold {
  border: 2px solid var(--color-gold);
}

.recommended {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  color: var(--color-dark);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.price {
  font-size: 2.5rem;
  color: var(--color-dark);
}

.currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.duration {
  font-size: 1rem;
  color: #666;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.features li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  color: var(--color-dark);
}

.features li:last-child {
  border-bottom: none;
}

.one-time-fee {
  text-align: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--color-dark);
}

@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 30px;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 20px;
  background-color: var(--color-light);
}

.why-choose-us h2 {
  text-align: center;
  color: var(--color-dark);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.why-choose-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  align-items: center;
}

.why-choose-content {
  flex: 1;
}

.why-choose-list {
  list-style: none;
  padding: 0;
}

.why-choose-list li {
  margin-bottom: 30px;
}

.why-choose-list h3 {
  color: var(--color-dark);
  margin-bottom: 10px;
  font-size: 1.3rem;
  position: relative;
  padding-left: 25px;
}

.why-choose-list h3::before {
  content: "•";
  color: var(--color-gold);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

.why-choose-list p {
  color: var(--color-dark);
  line-height: 1.6;
}

.why-choose-image {
  flex: 1;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision {
  padding: 80px 20px;
  background-color: var(--color-grey);
}

.mission-vision h2 {
  text-align: center;
  color: var(--color-dark);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.mission-vision-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.mission-box, .vision-box {
  flex: 1;
  background-color: var(--color-light);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mission-box:hover, .vision-box:hover {
  transform: translateY(-10px);
}

.mission-box h3, .vision-box h3 {
  color: var(--color-dark);
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.mission-box h3::after, .vision-box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--color-gold);
}

.mission-box p, .vision-box p {
  color: var(--color-dark);
  line-height: 1.8;
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background-color: var(--color-light);
}

.contact h2 {
  text-align: center;
  color: var(--color-dark);
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.contact-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Business Info Column - 30% */
.contact-info {
  flex: 0 0 50%;
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: 30px;
  border-radius: 15px;
  height: fit-content;
}

.contact-info h3 {
  color: var(--color-gold);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}

.info-item i {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-top: 5px;
}

/* Enquiry Form Column - 30% */
.enquiry-form-container {
  flex: 0 0 50%;
  background-color: white;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: fit-content;
}


/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info,
  .enquiry-form-container {
    flex: 0 0 50%;
  }

  .why-choose-container {
    flex-direction: column-reverse;
  }

  .why-choose-image {
    margin-bottom: 30px;
  }

  .mission-vision-container {
    flex-direction: column;
  }

  .mission-box, .vision-box {
    margin-bottom: 30px;
  }
}
.google-form-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  padding-bottom: 4%; /* Adjust this value to control the aspect ratio */
  overflow: hidden;
}

.google-form-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .google-form-wrapper {
    padding-bottom: 150%; /* Increase height on mobile */
  }
}

/* Add this new animation keyframes near your other @keyframes */
@keyframes gradient-wave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}