:root {
    --primary-dark: #0A2463;
    --primary-light: #3E92CC;
    --accent-gold: #FFD700;
    --accent-silver: #C0C0C0;
    --white: #FFFFFF;
    --dark-gray: #333333;
    --light-gray: #F5F5F5;
}

.text-success{
    color: #198754;
}
.text-danger{
    color: #dc3545;
}
.text-info{
    color: #0dcaf0;
}

.text-align-left{
    text-align: left;
}
.pb-5{
    padding-bottom: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo span {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.auth-buttons .btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 15px;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--primary-light);
    color: var(--primary-light);
}

.btn-login:hover {
    background: var(--primary-light);
    color: var(--white);
}

.btn-signup {
    background: var(--primary-light);
    border: 1px solid var(--primary-light);
    color: var(--white);
}

.btn-signup:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0px;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: #3e92cc 1px 1px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.slide-subcontent {
    color: #ffffff;
    background-color: #3e92cc9c;
    padding: 10px;
    font-weight: 500;
}

.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-gold);
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.slide-btn:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: var(--white);
}

/* About Section */
.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-title p {
    color: #777;
    max-width: 700px;
    margin: 0 auto;
    font-size: large;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 10px;
}

.about-text h3 {
    font-size: 30px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size:large;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding: 10px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Projects Section */
.projects {
    background-color: var(--white);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.project-img {
    height: 250px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    padding: 10px;
}

.project-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.project-info p {
    color: #777;
    margin-bottom: 15px;
    font-size: large;
}

.project-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 15px;
}

.gold {
    background: var(--accent-gold);
    color: var(--dark-gray);
}

.silver {
    background: var(--accent-silver);
    color: var(--dark-gray);
}

/* Testimonials */
.testimonials {
    background-color: var(--light-gray);
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial-card .quote {
    font-size: 22px;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.client-details p {
    color: var(--primary-light);
    font-size: 14px;
}

.rating {
    color: var(--accent-gold);
    margin: 15px 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #ddd;
    margin: 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    height: 250px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 10px;
}

.team-info h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.social-links {
    display: flex;
    justify-content: center;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-light);
    color: var(--white);
}

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

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.info-text p {
    color: #777;
    font-size: large;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-light);
    color: var(--white);
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.master-plan-image {
    text-align: center;
    margin-bottom: 0px;
}

.master-plan-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    object-fit: contain;
}

/* Lead Capture Form */
.lead-capture {
    background-image: url("../images/bg.png");
    background-position: center;
    /*background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));*/
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.lead-capture h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.lead-capture p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    opacity: 0.9;
}

.lead-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-col {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    margin-bottom: 20px;
}

.form-select {
    width: 100%;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: var(--dark-gray);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

/* Footer */
footer {
    background: var(--white);
    color: var(--primary-dark);
    padding: 80px 0 0px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-light);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
    font-size: large;
    padding-top: 10px;
}

.footer-links li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-links a {
    color: var(--primary-dark);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 4px;
    border: #3e92cc solid 2px;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
}

.newsletter-btn {
    background: var(--primary-light);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: var(--accent-gold);
    color: var(--dark-gray);
}

.footer-bottom {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-50px);
    transition: all 0.3s;
    position: relative;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #777;
    transition: all 0.3s;
}

.close-modal:hover {
    color: var(--primary-dark);
}

.modal-header {
    padding: 15px 20px 15px 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    color: var(--primary-dark);
}

.modal-body {
    padding: 10px;
}

.social-login {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 10px;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s;
}

.social-btn.google {
    background: #DB4437;
}

.social-btn.facebook {
    background: #4267B2;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.divider span {
    padding: 0 15px;
    color: #777;
}

.form-footer {
    text-align: center;
    margin-top: 10px;
}

.form-footer a {
    color: var(--primary-light);
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .slide-content h2 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 60%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .auth-buttons {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .slide-content {
        left: 5%;
        max-width: 90%;
    }

    .slide-content h2 {
        font-size: 30px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        flex: none;
        width: 100%;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 20px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .lead-capture h2 {
        font-size: 28px;
    }

    .lead-capture p {
        font-size: 16px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .newsletter-btn {
        border-radius: 30px;
        padding: 12px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

#successModal .successModal{
    width: 700px;
    display: flex ;
    justify-content: center;
    align-items: center;
}

#successModal #successModalLabel{
    text-align: center;
    color: var(--primary-dark);
    font-size: 25px;
}

#successModal .close-modal {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #777;
    transition: all 0.3s;
}

#successModal .modal-body {
    text-align: center;
    font-size: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
}
