/* Import styles from style.css */
@import url('style.css');

/* Header Styling - Minimalist Dark Style like About-Us */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2c3e50;
  backdrop-filter: none;
  border-bottom: none;
  padding: 20px 40px;
  box-shadow: none;
  transition: all 0.3s ease;
}

header.scrolled {
  background: #2c3e50;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

header.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Body styling */
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Noto Sans;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* Navigation Styles */
nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 12px 20px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

nav a:hover {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

nav a.active {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Services dropdown */
.services-dropdown {
  position: relative;
}

/* Dropdown arrow icons */
.services-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s ease;
}

.services-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: rgba(20, 30, 48, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.services-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  background: transparent;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: normal;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateX(4px);
}

/* Main content padding for header */
main {
  margin-top: 0;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2c3e50;
  color: white;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: white;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Section */
.content-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  background: #ffffff;
}

.content-wrapper h2 {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 900;
  color: #2c3e50;
  margin: 40px 0 20px 0;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.content-wrapper h3 {
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  color: #D4AF37;
  margin: 30px 0 15px 0;
  text-transform: uppercase;
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 20px 0;
  text-align: justify;
}

.content-wrapper ul {
  margin: 0 0 30px 30px;
  padding: 0;
}

.content-wrapper li {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.content-wrapper li strong {
  color: #2c3e50;
  font-weight: 700;
}

.contact-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #D4AF37;
}

.contact-list a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: #B89C72;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-section {
    padding: 60px 30px;
  }
  
  .hero-section {
    padding: 80px 30px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 20px 20px;
  }
  
  nav {
    gap: 4px;
  }
  
  nav a {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .header-logo {
    font-size: 16px;
  }
  
  .logo-image {
    width: 32px;
    height: 32px;
  }
  
  .hero-section {
    padding-top: 80px;
    padding: 80px 20px;
  }
  
  .content-section {
    padding: 60px 20px;
  }
  
  .contact-list li {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
  }
  
  nav a {
    padding: 6px 10px;
    font-size: 13px;
  }
  
  .header-logo span {
    display: none;
  }
  
  footer > div {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
}

/* Styling for justified text */
.content-wrapper {
  text-align: left;
}

.content-wrapper p {
  text-align: justify;
}

/* First heading special styling */
.content-wrapper h2:first-of-type {
  margin-top: 0;
}

/* Footer Styles */
.footer {
  background: #1a2332;
  color: white;
  padding: 60px 20px 40px;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-column h4 {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #D4AF37;
}

.footer-brand .brand-title {
  color: #D4AF37;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-brand .brand-description {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
}

.footer-contact {
  display: block;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-contact span {
  margin-right: 10px;
  font-size: 18px;
}

.footer-contact:hover {
  background: rgba(212,175,55,0.15);
  border-color: #D4AF37;
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  opacity: 1;
  transform: scale(1.1);
}

.social-icons img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding-top: 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;

  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


.footer-column ul {
  list-style: none;  
  padding-left: 0;    
  margin: 0;         
}
