/*=====================
  Global Styles
====================*/

body {
    margin: 0;
    background-color: #EAF4FF;
    font-family: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

h1 {
    color: #0056B3;
    text-align: center;
    font-size: 42px;
    margin: 0 0 30px;
}

.container {

    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;

}

/*======================
  Navigation
  =================*/

.navbar {
    background-color: #003E7E;
    padding: 15px 0;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;

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

.brand img {
    height: 120px;
    width: auto;
    display: block;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

/* Mobile navigation button */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3 ease;
}

/*=====================
  Hero
  ==================*/

.hero {
    text-align: center;
    padding: 50px 38px;
}

.hero h1 {
    max-width: 1400px;
    margin: 0 auto 30px;
}

button {
    background-color: #0056B3;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;

    display: block;
    margin: 20px auto;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover{
    background-color: #003F82;
    transform: translateY(-3px);
}

.tagline {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
}


/*=====================
  Services
  ================*/

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(0,0,0,.15);
    flex: 1 1 300px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

/*====================
  Why Choose
  ================*/

.why-choose {
    padding: 70px 0;
}

.why-choose h2 {
    text-align: center;
    color: #0056B3;
    font-size: 36px;
    margin: 0 0 20px;
}

.why-intro {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-card {
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.why-card h3 {
    color: #0056B3;
    margin-top: 0;
    margin-bottom: 15px;
}

.why-card p {
    line-height: 1.6;
    margin-bottom: 0;
}

/*=====================
  About Page
  =================*/

  .about-hero {
    background-color: #0056B3;
    color: white;
    text-align: center;
    padding: 80px 0;
  }

  .about-hero h1 {
    color: white;
    margin-bottom: 20px;
  }

  .about-hero p {
    font-size: 22px;
    margin: 0;
  }

  .about-story {
    padding: 80px 0;
  }

  .about-story-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }

  .about-story-content {
    flex: 2;
  }

  .about-story-content h2 {
    color: #0056B3;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 25px;
  }

  .about-story-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .about-highlights {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .about-highlight {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .about-highlight h3 {
    color: #0056B3;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .about-highlight p {
    margin: 0;
    line-height: 1.5;
  }

  .about-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.20);
  }

  .about-mission {
    background-color: white;
    text-align: center;
    padding: 70px 0;
  }

  .about-mission h2 {
    color: #0056B3;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .about-mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.6;
  }

/*=====================
  Contact Page
  =================*/

  .contact-hero {
    background-color: #0056B3;
    color: white;
    text-align: center;
    padding: 50px 20px;
  }

  .contact-hero h1 {
    color: white;
    font-size: 56px;
    margin-top: 0;
    margin-bottom: 15px;
  }

  .contact-hero p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .contact-hero .hero-subtext {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-content {
    background-color: #F3F8FF;
    padding: 60px 20px;
  }

  .contact-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .20);
  }

  .contact-card h2 {
    color: #0056B3;
    margin-top: 0;
  }

  .contact-card p {
    line-height: 1.8;
  }

  .contact-card a {
    color: #0056B3;
    font-weight: bold;
    text-decoration: none;
  }

  .contact-card a:hover {
    text-decoration: underline;
  }

  .contact-form-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
    margin-top: 40px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

  .contact-form label {
    font-weight: bold;
    color: #003E7E;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
  }

  .contact-form textarea{
    resize: vertical;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #999;
  }

  .contact-form .pricing-button {
    width: 280px;
    align-self: center;
    margin-top: 15px;
    padding: 16px 30px;
    font-size: 18px;
  }

/*====================
  Thank You Page
  ==================*/

  .thank-you-content {
    background-color: #f3f8ff;
    min-height: 600px;
    padding: 100px 20px;
}

.thank-you-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.thank-you-card h1 {
    color: #0056b3;
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 20px;
}

.thank-you-card p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thank-you-card .pricing-button {
    margin-top: 20px;
}

/*======================
  Call To Action
  =================*/

  .cta {
    background-color: #0056B3;
    color: white;
    text-align: center;
    padding: 80px 0;
  }

  .cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 36px;
  }

  .cta p {
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.6;
    font-size: 20px;
  }

  .cta-button {
    display: inline-block;
    background-color: #0057B8;
    color: white;
    text-decoration: none;
    padding: 18px 42px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0,15);
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .cta-button:hover {
    background-color: #EAF4FF;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0,20);
  }

  /*====================
    Pricing Page
    ==============*/

.pricing-hero {
    background-color: #0056B3;
    color: white;
    padding: 80px 20px;
}

.pricing-hero h1 {
    color: white;
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 20px;
}

.pricing-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.6;
}

.pricing-content {
    background-color: #EAF4FF;
    padding: 50px 20px 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.20);
}

.pricing-card h2 {
    color: #0056B3;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 15px;
}

.pricing-card h3 {
    color: #003E7E;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.prcing-description {
    line-height: 1.6;
    margin-bottom: 0;
}

.pricing-card ul {
    padding-left: 22px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.pricing-button {
    display: inline-block;
    background-color: #0056B3;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 16px 22px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: auto;
    transition: all 0.3 ease;
}

.pricing-button:hover {
    background-color: #003E7E;
    transform: translateY(-3px);
}

.featured {
    border: 3px solid #0056B3;
    position: relative;
}

.featured:hover {
    border-color: #003E7E;
}

.popular-label {
    background-color: #0056B3;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    margin: 0 0 20px;
}

/*======================
  Portfolio Page
  =================*/

  .portfolio-hero {
    background-color: #0056B3;
    color: white;
    text-align: center;
    padding: 80px 20px;
  }

  .portfolio-hero h1 {
    color: white;
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .portfolio-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.6;
  }

  .portfolio-content {
    background-color: #EAF4FF;
    padding: 80px 20px;
  }

  .portfolio-content h2 {
    color: #0056B3;
    font-size: 36px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 45px;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .portfolio-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
  }

  .portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.20);
  }

 .portfolio-placeholder {
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

  .portfolio-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .portfolio-card h3 {
    color: #0056B3;
    font-size: 27px;
    margin-top: 0;
    margin-bottom: 8px;
  }

  .portfolio-type {
    color: #003E7E;
    font-weight: bold;
    margin-top: 0;
  }

  .portfolio-card-content p {
    line-height: 1.6;
  }

  .portfolio-card ul {
    padding-left: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .portfolio-button {
    display: inline-block;
    background-color: #0056B3;
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 16px 22px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: auto;
    transition: all 0.3s ease
  }

  .portfolio-button:hover {
    background-color: #003E7E;
    transform: translateY(-3px);
  }

  .portfolio-coming-soon {
    display: block;
    background-color: #EAF4FF;
    color: #0056B3;
    text-align: center;
    padding: 16px 22px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: auto;
  }

.portfolio-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #ffffff;
}

.portfolio-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

  .process-section {
    background-color: white;
    padding: 80px 20px;
    text-align: center;
  }

  .process-section h2 {
    color: #0056B3;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .process-intro {
    max-width: 750px;
    margin: 0 auto 45px;
    font-size: 20px;
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card {
    background-color: #EAF4FF;
    padding: 30px 25px;
    border-radius: 10px;
}

.process-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: #0056B3;
    color: white;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
}

.process-card h3 {
    color: #0056B3;
    font-size: 24px;
    margin-bottom: 12px;
}

.process-card p {
    margin-bottom: 0;
    line-height: 1.6;
}

/*======================
  Footer
  =================*/

.footer {
    background-color: #0056B3;
    color: white;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    margin: 0;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #BFE3FF;
}

/* ===========================
   Mobile Navigation
=========================== */

@media (max-width: 768px) {

.navbar {
    padding: 8px 0;
}

.nav-container {
    position: relative;
    padding: 0 20px;
}

.container {
    padding: 20px;
}

.brand img {
    height: 85px;
}

.nav-toggle {
    display: block;
    position: relative;
    z-index: 1002;
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1001;

    flex-direction: column;
    align-items: stretch;
    gap: 0;

    padding: 10px 20px 20px;
    background-color: #003E7E;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.nav-links.nav-open {
    display: flex;
}

.nav-links a {
    display: block;
    width: 100%;
    margin-left: 0;
    padding: 14px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-toggle-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    padding: 55px 20px 70px;
}

.hero h1 {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 44px;
    line-height: 1.08;
}

.hero p {
    font-size: 24px;
    line-height: 1.35;
}

.hero .pricing-button {
    width: 100%;
    max-width: 100%;
    padding: 18px 20px;
}

.why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
}

.why-card {
    width: 100%;
    min-height: auto;
    padding: 28px;
    box-sizing: border-box;
}

.pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
}

.pricing-card {
    width: 100%;
    padding: 28px;
    box-sizing: border-box;
}

.pricing-hero {
    padding: 55px 20px 65px;
}

.pricing-hero h1 {
    font-size: 44px;
    line-height: 1.08;
    margin-bottom: 24px;
}

.pricing-hero p {
    font-size: 22px;
    line-height: 1.45;
}

.pricing-content {
    padding: 40px 20px 60px;
}

.pricing-card {
    padding: 28px;
}

.pricing-card h2 {
    font-size: 32px;
    line-height: 1.15;
}

.pricing-card ul {
    padding-left: 22px;
}

.portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
}

.portfolio-card {
    width: 100%;
}

.portfolio-placeholder {
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.portfolio-card-content {
    padding: 28px;
}

.portfolio-image {
    height: 240px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.portfolio-content {
    padding: 45px 20px 60px;
}

.portfolio-content h2 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 35px;
}

.cta {
    padding: 55px 20px;
}

.cta p {
    font-size: 22px;
    line-height: 1.4;
}

.footer {
    padding: 35px 20px;
}

.footer-container {
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.footer p {
    width: 100%;
    line-height: 1.5;
}

.footer a {
    font-size: 18px;
    overflow-wrap: anywhere;
}
}

