/* General Styles */
body {
    color: var(--heading-color);
    font-family: var(--body-font);
    font-size: 14px;

}

/* Header */
main{
     padding: 2rem 4rem;
}
header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-30deg);
    animation: slideLight 5s linear infinite;
}
.Global-Career h2{
    font-size: 1.7rem;
    white-space: nowrap;
}

@keyframes slideLight {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Sections */
section {
    max-width: 100%;
    margin: 40px auto;
    padding: 20px;
    background: rgba(52, 151, 118, 0.142) ;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s forwards;
}

section:nth-child(even) {
    animation-delay: 0.3s;
}
section:nth-child(odd) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Headings */
h2, h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    /* background: #3498db; */
    margin-top: 8px;
    border-radius: 2px;
}

/* Lists */
ul {
    margin-left: 20px;
    padding-left: 10px;
}

li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9em;
}

/* Buttons (if you add them later) */
button, .btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

button:hover, .btn:hover {
    background: #2980b9;
    transform: scale(1.05);
}
.useful-links {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}
/* Responsive */
@media (max-width: 768px) {
    section {
        margin: 20px 10px;
    }
}

.nav-area-wrapper-relative {
  background-color: #19443C;
  min-height: 100px;
  position:fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
 
}

main section {
    padding: 40px 20px; /* Adjust values as needed */
    margin-bottom: 20px; /* Space between sections */
  }

  main {
    max-width: 1200px; /* Or a suitable max width */
    margin: 0 auto; /* Center the main content */
    padding: 20px; /* Some overall padding for the main area */
  }

  /* Add this to your georgia-full.css or a new style.css */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@600;700&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  color: #333; /* Darker text for readability */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: #004d40; /* A primary brand color for headings */
  margin-bottom: 15px;
  margin-top: 30px; /* Space above headings */
}

h2 {
  font-size: 2.2em; /* Example size */
  border-bottom: 2px solid #e0e0e0; /* Subtle line below headings */
  padding-bottom: 10px;
}

h3 {
  font-size: 1.6em;
  color: #00796b; /* Slightly lighter shade for subheadings */
}

b {
  font-weight: 700; /* Ensure bold text is clearly bold */
}

ul {
  list-style-type: disc; /* Or none, if you use custom icons */
  margin-left: 20px;
  margin-bottom: 15px;
}

.program-card {
    background-color: #f0f8f8; /* Light background */
    padding: 25px;
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    margin-bottom: 25px;
  }

  .why-choose-georgia-list li {
  list-style-type: none; /* Remove default bullet */
  padding-left: 30px; /* Space for custom icon */
  position: relative;
  margin-bottom: 10px;
}

.why-choose-georgia-list li::before {
  content: '✅'; /* Or a Font Awesome checkmark icon */
  position: absolute;
  left: 0;
  color: #28a745; /* Green for success */
  font-size: 1.2em;
}


.cta-button {
    display: inline-block;
    background-color: #ff6f00; /* Bright accent color */
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
  }

  .cta-button:hover {
    background-color: #e65100;
    transform: translateY(-2px); /* Subtle lift on hover */
  }