/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    text-align: center;
    margin: 0;
    padding: 0;
}


* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }  
        body { background: #f8f8f8; color: #333; } 
  
 
               
                /* Navbar */
        .navbar { 
            position: fixed; 
            top: 0; left: 0; width: 100%; 
            display: flex; justify-content: space-between; align-items: center; 
            padding: 15px 10%; background: white; 
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); 
            z-index: 1000;
        }
 
        .navbar {
    border-bottom: 1px solid #FF0000;  /* Change color as needed */
}
        .logo img { height: 40px; }

        .nav-links { 
            list-style: none; 
            display: flex; gap: 20px; 
        }
        .nav-links li { display: inline; }
        .nav-links a { 
            color: #333; text-decoration: none; font-size: 16px; font-weight: bold; 
        }
        .btn-login { 
            background: #FF0000; padding: 8px 15px; 
            border-radius: 5px; color: white; 
            text-decoration: none; font-weight: bold; 
        }

        /* Hamburger Menu */
        .menu-icon {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .menu-icon { display: block; position: relative; z-index: 1100; }
            
            .nav-links { 
                position: absolute; top: 75px; right: 0; 
                background: white; width: 100%; 
                flex-direction: column; 
                text-align: center; padding: 0;
                box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
                
                /* Initially hidden */
                height: 0;
                overflow: hidden;
                transition: height 0.5s ease-in-out;
            }
            .nav-links.active { height: auto; padding: 10px 0; }
            
            .nav-links li { padding: 10px; border-bottom: 1px solid #ddd; }
        }
       
       
       #userEmail {
    max-width: 180px;  /* ✅ Increased width */
    overflow: hidden;  
    text-overflow: ellipsis; /* ✅ Shows "..." when text overflows */
    white-space: nowrap;  
    display: inline-block;
    font-size: 16px; /* ✅ Slightly bigger text */
    font-weight: 500;
    vertical-align: middle;
    padding: 0 10px; /* ✅ Add some spacing */
}
/* Hero Section */
.hero-section {
    background: #ff0000;
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    font-size: 42px;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  
}

.hero-section p {
    font-size: 20px;
    margin-top: 10px;
    opacity: 0.9;
    
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    background: white;
    padding: 30px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-form h2 {
    font-size: 28px;
    color: #cc0000;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-form input, 
.contact-form textarea, 
.contact-form select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ff0000;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.contact-form input:focus, 
.contact-form textarea:focus, 
.contact-form select:focus {
    border-color: #cc0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    outline: none;
}

.contact-form button {
    background: #ff0000;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.contact-form button:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0px 4px 10px rgba(255, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .contact-form {
        padding: 20px;
    }
}


/* Contact Section */
  #reach {
    padding: 50px 10%;
    background: #FFF5F5;
    /* Light Red */
    text-align: center;
  }
  
  #reach h2 {
    font-size: 32px;
    color: #FF0000;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  
  .contact-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
  }
  
  .contact-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 0, 0, 0.2);
  }
  
  .icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-container img {
    width: 45px;
  }
  
  .contact-card h3 {
    font-size: 20px;
    font-weight: bold;
  }
  
  .contact-card p {
    font-size: 16px;
    color: #555;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      align-items: center;
    }
  }


    /* Footer Styles */
    footer {
        position: relative;
       background: linear-gradient(135deg, #FFB3B3, #FFD1C1);


        color: #333;
        padding: 60px 10%;
        overflow: hidden;
    }

    /* Title & Description */
    .footer-intro {
        max-width: 800px;
        text-align: left;
    }

    .footer-intro h2 {
        font-size: 28px;
        color: #FF0000;
        margin-bottom: 10px;
    }

    .underline {
        width: 460px;
        height: 2px;
        background: #FF0000;
        margin-bottom: 15px;
    }

    .footer-intro p {
        font-size: 18px;
        color: #555;
    }

    /* Animated Background Icons */
    .footer-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://www.transparenttextures.com/patterns/circles-light.png'); /* Subtle Pattern */
        opacity: 0.1;
        animation: bgAnimation 8s infinite alternate;
    }

    @keyframes bgAnimation {
        0% { background-position: 0 0; }
        100% { background-position: 50px 50px; }
    }

    .footer-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        position: relative;
        z-index: 1;
        margin-top: 30px;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
        text-align: left;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
        text-transform: uppercase;
        font-weight: bold;
        color: #FF0000;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }

    .footer-section ul li {
        margin: 5px 0;
    }

    .footer-section ul li a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-section ul li a:hover {
        color: #FF0000;
    }

    .footer-section p a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-section p a:hover {
        color: #FF0000;
    }

    /* Social Icons */
    .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 15px;
    }

    .social-icons a {
        display: inline-block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s;
    }

    .social-icons a:hover {
        background: rgba(255, 0, 0, 0.3);
    }

    .social-icons img {
        width: 24px;
    }

    /* Bottom Footer */
    .footer-bottom {
        margin-top: 30px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 0, 0, 0.3);
    }

    .footer-bottom p {
        font-size: 14px;
        color: #333;
        text-align: center;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            text-align: left;
        }

        .footer-section {
            text-align: left;
        }

        .social-icons {
            justify-content: left;
        }
    }

    @media (max-width: 600px) {
        .footer-intro h2 {
            font-size: 24px;
        }
        .footer-intro p {
            font-size: 16px;
        }
    }