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

body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    width: 100%;
    position: absolute; 
    top: 0;
    z-index: 1000;
    background: transparent; 
}

.nav-menu .dropdown > a {
    position: relative;
}

.nav-menu .dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    transform: rotate(45deg);
    margin-left: 7px;
    position: absolute;
    top: 50%;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.3s;
}

.nav-menu .dropdown:hover > a::after {
    transform: translateY(-50%) rotate(-135deg);
}

/* Dropdown Menu Styling */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0c1e3e;
    padding: 15px 0;
    border-radius: 4px;
    list-style: none;
    min-width: 200px;
    z-index: 10;
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu .dropdown-menu li {
    padding: 12px 20px;
}

.nav-menu .dropdown-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 300;
}

.nav-menu .dropdown-menu li a:hover {
    color: #4983C3;
}

/* Navbar Links */
.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 45px;
}

.navbar nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 300;
    font-size: 1em;
    transition: color 0.3s;
}

.navbar nav ul li a.active {
    color: #254173;
}

.navbar nav ul li a:hover {
    color: #254173;
}

.consultation-button {
    background-color: #254173;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.consultation-button:hover {
    background-color: #102A43;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .navbar {
        padding: 10px 20px;
    }

    .nav-menu {
        display: none; /* Hide menu on mobile initially */
        flex-direction: column;
        gap: 10px;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        right: 30px;
        padding: 20px;
        border-radius: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex; 
    }
}


@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }
}

.hero-section {
    display: flex;
    align-items: center;
    text-align: left;
    height: 80vh;
    background-color: #0c1e3e;
    color: white;
    padding: 0 30px;
}

.hero-content {
    max-width: 800px;
    margin-left: 50px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .navbar {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 0.9em;
    }
}


  .industry-section {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            margin: 50px;
        }
        .text-content {
            flex: 2;
            text-align: justify;
            padding-right: 20px;
        }



.footer {
    background-color: #0c1e3e;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-logo-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

.footer-description {
    color: #AAB7C4;
    font-size: 1.1em;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 220px;
}

.footer-links {
    display: flex;
    flex: 3;
    justify-content: space-between;
    gap: 20px;
}

.footer-column h4 {
    font-size: 1.1em;
    color: white;
    margin-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #AAB7C4;
    text-decoration: none;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid #1F2E3E;
    padding-top: 20px;
}


.social-icons a {
    margin-right: 15px;
    font-size: 1.5em; 
    transition: color 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    color: #254173;
}

.privacy-policy {
    color: #254173;
    margin-right: auto;
    text-decoration: none;
    font-size: 0.9em;
}

.privacy-policy:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

