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

:root {
    --primary-color: #011650;
    --secondary-color: #fcc825;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
}

body {
      font-family: 'Inter', sans-serif !important;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.navbar {
  width: 100%;
  background-color: white;
  padding: 10px 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 50px;
  width: auto;
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}
.nav-link:hover{
    color: var(--secondary-color);
}

.nav-btn {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}


.nav-btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: var(--primary-color);
  margin: 3px 0;
}


    /* Hero Section  */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
    padding: 0 24px;
}

.hero-content h1 {
  font-size: 3rem;
  color: #fcc825;
  text-shadow: 2px 2px 5px #011650; 
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #011650;
  
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
}


.hero-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

           /* Mission section */
.mission {
    padding: 100px 0;
    background: var(--white);
}

.mission h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #011650;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.mission-text {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin-bottom: 60px;
    line-height: 1.7;
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: #fccb21;
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #011650;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: #fccb21;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

    
.cta-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-primary {
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

          /* contact section  */
.contact {
    padding: 100px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #011650;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background: #011650;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fcc825;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

                /* footer  */
.footer {
    background: #011650;
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #011650;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 24px 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero p {
        font-size: 1.125rem;
    }

    .mission h2,
    .services h2,
    .testimonials h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: auto;
    }

    .mission-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

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

    .mission,
    .services,
    .testimonials,
    .contact {
        padding: 60px 0;
    }

    .contact-form {
        padding: 24px;
    }
}


html {
    scroll-behavior: smooth;
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}





/* about us section */
.about-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-us .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-us h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.about-us .about-text {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: #ff7a59; 
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px; 
  color: #222;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;     
  margin: 0;             
}



.about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #011650;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.about-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.highlight-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 280px;
    text-align: center;
    color: var(--primary-color);
}

.highlight-card i {
    font-size: 32px;
    color:var(--secondary-color);
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 20px;
    color: #011650;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 16px;
    color: #666;
}


  /* // testimonial-card which show clients  */


.testimonials {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #011650;
    border: 2px solid #fcc825;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.03);
}

.testimonial-image-only img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}



@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 2rem;
    }
}
/* // notifications bar after form submission */
.toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color:var(--secondary-color); 
  color: var(--primary-color);
  text-align: center;
  border-radius: 8px;
  padding: 12px;
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 9999;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(-10px);
}

