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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #ecf0f1;
    background-color: #34495e;
    object-fit: cover;
}

.company-name {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
    color: #bdc3c7;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Navigation Styles */
.nav {
    background-color: #34495e;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}
.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
}
@media screen and (max-width: 768px) {
  .nav-list {
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    width: 100%;
  }
}
.nav-list li a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.nav-list li a:hover {
    background-color: #2c3e50;
    color: #3498db;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}

.hero-content {
    text-align: center;
    width: 100%;
    margin: 10 auto;
}

.hero-title {
    font-size: 2.5rem;
    text-align:center;
}
.hero-subtitle {
    padding-bottom: 20px;
} 
/* Footer Styles */

.footer {
    background-color: #f5f5f5;
    padding: 30px 0;
    margin-top: 80px;
    border-top: 1px solid #e0e0e0;
}

.footer-text {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.8;
}

.footer-text p {
    margin: 10px 0;
}

.footer-text a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #2980b9;
    text-decoration: underline;
}
.button-link {
  /* Layout and Aspect Ratio */
  margin-top: 40px;
  display: inline-flex;      /* Flexbox makes centering text easier */
  align-items: center;       /* Centers text vertically */
  justify-content: center;   /* Centers text horizontally */
  width: 180px;              /* Set any width you like */
  aspect-ratio: 2 / 1;       /* Ensures width is 2x the height */

  /* The "Rounded Rectangle" with thin border */
  border: 2px solid #FFFFFF;
  border-radius: 12px;       /* Adjusted for a rectangular look */
  
  /* Styling */
  background-color: rgba(255, 255, 255, 0);
  color: #0a2e54;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.button-link:hover {
  background-color: #007BFF;
  color: white;
}
