@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

/* CSS Variables - Kuwaiti-inspired color palette */
:root {
  --primary-blue: #0078be;
  --secondary-turquoise: #20b2aa;
  --warm-sand: #f4e4bc;
  --off-white: #fafafa;
  --deep-navy: #1a365d;
  --accent-green: #2d5a27;
  --text-dark: #2d3748;
  --text-light: #718096;
  --border-light: #e2e8f0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--secondary-turquoise));
  --gradient-sand: linear-gradient(135deg, var(--warm-sand), #e6d7a3);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--off-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--deep-navy);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.1); /* Light blur effect */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  z-index: 2;
  /* transition:  0.3s ease, box-shadow 0.3s ease; */
}

.navbar.scrolled {
  background: rgba(255, 179, 16, 0.205);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--deep-navy);
  letter-spacing: 0.5px;
}

.nav-logo img {
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 10px;
}

.nav-link:hover {
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  width: 100%;
}


.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* background: var(--gradient-primary); */
  padding: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.2);  */
  z-index: 1;
}



/* Specific styling for company name in hero */
.hero-title .highlight.company-name {
    color: var(--deep-navy);   
    font-weight: 700;               /* Bold */
    font-family: "Playfair Display", serif; /* Matches heading font for elegance */
    font-style: normal;             /* Overrides italic from .highlight */
    
}


.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
}

.desert-dunes {
  /* background: url("/placeholder.svg?height=800&width=1600") center / cover; */
  background-image: url(./assets/bg_home.jpg);
  opacity: 0.3;
  height: 100%;
}

.gulf-waters {
  /* background: url("/placeholder.svg?height=800&width=1600") center / cover; */
  background-image: url(./assets/bg_home.jpg);
  opacity: 0.6;
  height: 100%;
  mix-blend-mode: overlay;
}

.kuwait-towers {
  /* background: url("/placeholder.svg?height=800&width=1600") center / cover; */
  background-image: url(./assets/bg_home.jpg);
  background-position: center;
  opacity: 1;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: white;
  max-width: 900px;
}

.hero-title .highlight {
  color: var(--warm-sand);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* About Section */
.about {
  padding: 8rem 0;
  background: var(--off-white);
  background-image: url(./assets/Principles.jpg);
    background-position: center;
  background-size: cover;
  backdrop-filter: blur(100px);

}

.blurred-boxes {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem; /* Space below the boxes */
}

.blurred-box {
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
  backdrop-filter: blur(6px); /* Blur effect */
  -webkit-backdrop-filter: blur(12px); /* For Safari */
  padding: 1.5rem 2rem;
  border-radius: 20px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.blurred-box:hover {
  transform: translateY(-4px);
}


.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.principle-card {
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.principle-card.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.principle-number {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.principle-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.principle-card p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Services Section */
.services {
  padding: 8rem 0;
  background: white;
  background-image: url(./assets/services.jpg);
  background-position: center;
  background-size: cover;
  backdrop-filter: blur(100px);
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.services-text {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.services-text.aos-animate {
  opacity: 1;
  transform: translateX(0);
}

.services-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.services-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--deep-navy);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.services-cta:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
}

.services-image {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.services-image.aos-animate {
  opacity: 1;
  transform: translateX(0);
}

.services-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow-medium);
}

/* Stats Section */
.stats {
  padding: 6rem 0;
  background: var(--gradient-sand);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-card {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.stat-card.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Global Approach Section */
.global-approach {
  padding: 8rem 0;
  background: white;
}

.approach-content {
  text-align: center;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.approach-card {
  padding: 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.approach-card.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.approach-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.approach-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.approach-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Careers Section */
.careers {
  padding: 6rem 0;
  background: var(--deep-navy);
  color: white;
  text-align: center;
}

.careers-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.careers-content.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.careers .section-title {
  color: white;
}

.careers-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.careers-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--secondary-turquoise);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.careers-cta:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: var(--off-white);
  background-image: url(./assets/contact.jpg);
  background-position: center;
  background-size: cover;
  backdrop-filter: blur(100px);
}


.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.contact-info.aos-animate {
  opacity: 1;
  transform: translateX(0);
}

.contact-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item svg {
  color: var(--primary-blue);
  margin-top: 0.25rem;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--deep-navy);
}

.contact-item p {
  color: var(--text-light);
}

.contact-form {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.contact-form.aos-animate {
  opacity: 1;
  transform: translateX(0);
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group:last-of-type {
  grid-template-columns: 1fr;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--deep-navy);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--deep-navy);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo svg {
  color: var(--secondary-turquoise);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: var(--secondary-turquoise);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-group {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
