* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #f4f8fc, #e9f1fb);
    color: #1a2b49;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 200px;
    background: white;
    flex-wrap: wrap; 
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
}

.logo img{
    height: 50px;
    width: 70px;
}

.logo-text span {
    color: #15a5e7fd;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

nav a.active,
nav a:hover {
    color: #1a73e8;
}
/* Hide hamburger in desktop */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* Responsive */
@media (max-width:1030px){
  .navbar{padding:10px 20px;}
}
@media (max-width: 768px) {

    .navbar {
        padding: 10px 20px;
    }

    nav {
        position: static;
        margin-top: 10px;
        background: white;
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap:20px;

        
    }
   

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}
/* home */
.home {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 80px;
    background-image:url('images/background3.png') ;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-left {
    max-width: 50vw;
}

.home-left h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.home-left p {
    color: #5f6b7a;
    margin-bottom: 30px;
    line-height: 1.6;
    width: 380px;
}

.buttons button {
    padding: 14px 24px;
    margin-right: 15px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #123470, #3ea6ff);
    border: none;
    color: white;
}

.btn-outline {
    background: white;
    border: 2px solid #1a73e8;
    color: #1a73e8;
}

.home-right{
    height:350px;
    width: 500px;
}

.home-right img{
    height:400px;
    width: 550px;
    
}

@media (max-width: 992px) {

    .home {
        padding: 50px 30px;
    }

    .home-left {
        max-width: 100%;
    }

    .home-left p {
        width: 100%;
    }

    .home-right img {
        width: 100%;
        height: auto;
    }
}


/* Mobile */
@media (max-width: 768px) {

    .home {
        flex-direction: column;      /* important */
        text-align: center;
        padding: 40px 20px;
    }

    .home-left {
        max-width: 100%;
    }

    .home-left h1 {
        font-size: 22px;
    }

    .home-left p {
        width: 100%;
        font-size: 14px;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .buttons button {
        width: 80%;
        margin-right: 0;
    }

    .home-right {
        width: 100%;
        height: auto;
        margin-top: 30px;
    }

    .home-right img {
        width: 100%;
        height: auto;
    }
}

/* FEATURES */
.features {
    display: flex;
    justify-content: space-around;
    padding: 80px;
    background: white;
    background-image:url('images/background.png') ;
    background-repeat: no-repeat;
    background-size: cover;
}

.features-left {
    max-width: 50vw;
}

.features-left h2 {
    font-size: 34px;
}

.features-right{
    width: 500px;
}
.features-right ul {
    list-style: none;
    font-size: 18px;
    line-height: 2.2;
}

.features-right li {
    color: #1a2b49;
}
/* Tablet */
@media (max-width: 992px) {

    .features {
        padding: 60px 40px;
    }

    .features-left {
        max-width: 100%;
    }

    .features-right {
        width: 100%;
    }
}


/* Mobile */
@media (max-width: 768px) {

    .features {
        flex-direction: column;   /* important */
        text-align: center;
        padding: 40px 20px;
    }

    .features-left {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .features-left h2 {
        font-size: 20px;
    }

    .features-right {
        width: 100%;
    }

    .features-right ul {
        font-size: 16px;
        line-height: 2;
        padding: 0;
    }

    .features-right li {
        display: flex;
        gap: 10px;
    }
}
.trusted-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 100vw;
    margin: 0 auto;
    color: #1a2b49;
    font-family: 'Inter', sans-serif;
    background-image:url('images/background.png') ;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .trusted-section h2 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 50px;
    line-height: 1.3;
  }
  
  .trusted-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .card {
    background: white;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    border-radius: 14px;
    padding: 30px 25px;
    width: 280px;
    text-align: center;
  }
  
  
  .icon {
    font-size: 44px;
    color: #1a73e8;
    margin-bottom: 20px;
    display: flex;           
    justify-content: center;
    align-items: center;
  }
  
  .card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    text-align: center;
  }
  
  .card p {
    
    font-size: 14px;
    line-height: 1.5;
  }

  .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; text-align: center; }
  @media (max-width: 600px){
  .trusted-cards {
        
    max-width: 300px;
   
  }
}
  /* Top Section */
  .outbound-section {
      background: linear-gradient(135deg, #0a2351 0%, #1a56b8 100%);
      color: white;
      padding: 60px 0;
      background-image:url('images/backgroud2.png') ;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center top;
  }
  
  .outbound-section h2 { font-size: 24px; margin-bottom: 40px; font-weight: 400; }
  
  .logo-grid {
      display: flex;
      justify-content: center;
      gap: 10px 30px;
      flex-wrap: wrap;
      opacity: 0.4;
      width: 500px;
      margin: 0 auto;


  }
  .logo-grid img{
    width:100px;
    height:50px;

  }
  .logo-grid img {
    filter: brightness(0) invert(1);         
  }
  @media (max-width: 600px) {
    .outbound-section {
      padding: 60px 15px;
    }
  
    .outbound-section h2 {
      font-size: 22px;
    }
  
    .logo-grid {
      gap: 15px 20px;
      width:300px;
    }
  
    .logo-grid img {
      width: 80px;
    }
  }
  /* Testimonials Section */
  .testimonials {
      padding: 60px 0;
      background-color: #f4f7f9;
  }
  
  .testimonial-flex {
      display: flex;
      gap: 20px;
      justify-content: center;
     
  }
  
  .card {
      flex: 1;
      padding: 30px;
      border-radius: 12px;
      text-align: left;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .light-card { background: white; color: #333; }
  .dark-card { background: #123470; color: white; }
  .profile {
    display: flex;
    align-items: center; 
    gap: 15px;           
    margin-bottom: 15px;
  }
  .profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}
  .profile img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0;
  }
  
  .stars { color: #ffcc00; margin-bottom: 5px;     font-size: 13px;  }
  .card h3 { font-size: 18px; }
  .card h3 span { font-weight: normal; font-size: 14px; opacity: 0.7; }
  .card p { margin-top: 15px; line-height: 1.6; font-size: 15px; }  

  @media (max-width: 600px) {
    .testimonial-flex {
      flex-direction: column;
    }
  
    .card {
      width: 100%;
    }
  
    .testimonials {
      padding: 60px 15px;
    }
  
    .card p {
      font-size: 14px;
    }
  }
  .footer {
    background: #0a2351;
    color: #ffffff;
    padding: 70px 20px 30px; /* changed from 2px */
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr;
    gap: 40px;
    max-width: 1160px;
    margin: 0 auto; /* FIXED */
    width: 100%;
    text-align: left;
  }
  
  .footer h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
  }
  
  .footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer ul li {
    margin-bottom: 10px;
  }
  
  .footer ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s ease;
  }
  
  .footer ul li a:hover {
    opacity: 1;
    color: #4da3ff;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.7;
  }
  
  /* Tablet */
  @media (max-width:1030px){
    .footer{padding: 70px 20px 30px;}
  }
  @media (max-width: 992px) {
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr;
    }
  }
  
  /* Mobile */
  @media (max-width: 600px) {

    .footer-grid {
      grid-template-columns: 1fr 1fr;   
      grid-template-areas:
        "brand brand"   
        "company support"; 
      text-align: left;
    }
  
    .footer-brand {
      grid-area: brand;
    }
  
    .footer-links:nth-of-type(1) {
      grid-area: company;
    }
  
    .footer-links:nth-of-type(2) {
      grid-area: support;
    }
  
  }