/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #0070C0;
    --secondary-color: #e8f4fc;
    --text-color: #000000;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
}

body {
    font-family: 'Roboto';
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Header Styles */
.header {
    box-shadow: 0px 3px 23.2px 0px #00000040;
    position: relative;
    z-index: 2;
    background-color: white;
}

.logo {
    height: 40px;
    width: auto;
}

.login-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
}

/* Hero Section with Overlay */
.hero {
    padding: 119px 0;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Basic Color Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 70%);
    /* Using primary color with opacity */
    z-index: -1;
}

/* Updated text styling for better contrast */
.hero h1 {
    /* color: white; */
    max-width: 725px;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.181); */
}

.hero p {
    /* color: var(--secondary-color); */
    font-size: 1.2rem;
    /* max-width: 600px; */
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 2rem;
    /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
}

/* Alternative Overlay Styles (uncomment to use) */

/* Gradient Overlay */
/*
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 178, 0.9) 0%, rgba(0, 80, 145, 0.7) 100%);
    z-index: -1;
  }
  */

/* Diagonal Overlay */
/*
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 178, 0.9) 0%, transparent 70%);
    z-index: -1;
  }
  */

/* Vignette Overlay */
/*
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.7);
    z-index: -1;
  }
  */

/* Multiple Layer Overlay */
/*
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(rgba(0, 102, 178, 0.6), rgba(0, 102, 178, 0.6)),
      repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.05) 10px, rgba(0, 0, 0, 0.05) 20px);
    z-index: -1;
  }
  */


/* Benefits Section */
.benefits-list {
    list-style-type: none;
    padding-left: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.benefits-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

.section-title {
    position: relative;
    margin-bottom: 20px;
    color: inherit;
}

/* Expectation Section */
.expectation {
    background: url(bg2.png), var(--primary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Image Placeholder */
.img-placeholder {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

/* Footer Styles */
.footer {
    background-color: var(--light-gray);
    padding: 3rem 0;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--dark-gray);
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.disclaimer {
    font-size: 0.85rem;
    /* color: var(--dark-gray); */
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    width: 186px;
    font-size: 20px;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #005091;
    border-color: #005091;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: white;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .hero {
        padding: 3rem 0;
    }

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

@media (max-width: 767.98px) {
    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .benefits-list li {
        margin-bottom: 10px;
    }

    .img-placeholder {
        display: flex;
        justify-content: center;
    }
}