/* ✅ GENERAL STYLES */

html {
    scroll-behavior: smooth;
  }
  
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* ✅ NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between; /* Keeps left, center, and right sections apart */
    align-items: center;
    padding: 15px 30px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ✅ LOGO */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* ✅ CENTERED NAV LINKS */
.nav-center {
    flex-grow: 1;
    display: flex;
    justify-content: center; /* Centering the links */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

/* ✅ SIGNUP/LOGIN (Kept on the right) */
.nav-right {
    display: flex;
    align-items: center;
}

/* ✅ DROPDOWN MENU */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    padding: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    min-width: 150px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 100;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: #f1f1f1;
}

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

/* ✅ HERO SECTION */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #007bff, #179cf4);
    color: white;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}


.btn:hover {
    background: #0056b3;
    color: white;
}



/* ✅ TRUSTED BY SECTION */
.trusted {
    text-align: center;
    padding: 50px;
}

.trusted .logos img {
    width: 100px;
    margin: 0 15px;
}

/* ✅ CALL TO ACTION */
.cta {
    text-align: center;
    padding: 80px;
    background: #007bff;
    color: white;
}

.cta .btn {
    background: white;
    color: #007bff;
}

/* ✅ FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
}

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

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}


.about-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #e3f2fd, #f1f8e9); /* soft blue to green gradient */
    text-align: center;
    border-top: 1px solid #ddd;
  }
  
  .about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .about-section h2 {
    font-size: 2.8em;
    color: #1E88E5;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .about-section p {
    font-size: 1.2em;
    color: #444;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .feature-item {
    background: #1e3a8a;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }
  
  .feature-item h3 {
    font-size: 1.3em;
    color: #ececec;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .feature-item p {
    font-size: 1em;
    color: #ece6e6;
    line-height: 1.6;
  }
  

  


/* ✅ Hero Text Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

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

/* ✅ Typewriter Effect */
.typewriter::after {
    content: "|";
    display: inline-block;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}


