  /* ===========================
     Base Styles
  ============================ */
  body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #222;
    background: #fff;
    overflow-x: hidden;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

/* ===========================
   Header (Logo + Navigation)
=========================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
header .logo {
  display: block;
}
header .logo img {
  width: 180px;
  height: 60px;
  object-fit: contain;
  display: block;
}

/* Nav links */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
nav li {
  display: inline-block;
}
nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #8224e3;
}
nav a i {
  margin-right: 6px;
  color: #640ac0;
}

/* ===========================
   Mobile Adjustments
=========================== */
@media (max-width: 480px) {
  /* Crop logo to square using same rectangle file */
  header .logo {
    width: 59px;   /* slightly tighter crop */
    height: 60px;
    overflow: hidden; /* crop the image */
  }
  header .logo img {
    width: auto;            /* keep natural width */
    height: 100%;           /* fill vertically */
    object-fit: cover;      /* crop right side */
    object-position: left;  /* keep far-left part */
  }

  /* Keep nav horizontal but remove icons */
  nav ul {
    flex-direction: row;
    gap: 15px;
  }
  nav a i {
    display: none;
  }
}


/* ===========================
   Mobile Adjustments
=========================== */
@media (max-width: 480px) {
  /* Crop logo to square using same rectangle file */
  header .logo {
    width: 59px;   /* slightly tighter crop */
    height: 60px;
    overflow: hidden; /* crop the image */
  }
  header .logo img {
    width: auto;            /* keep natural width */
    height: 100%;           /* fill vertically */
    object-fit: cover;      /* crop right side */
    object-position: left;  /* keep far-left part */
  }

  /* Keep nav horizontal but remove icons */
  nav ul {
    flex-direction: row;
    gap: 15px;
  }
  nav a i {
    display: none;
  }
}


/* ===========================
   Mobile Adjustments
=========================== */
@media (max-width: 480px) {
  /* Crop logo to 60x60 square using same rectangle file */
  header .logo {
    width: 59px;   /* slightly tighter crop */
    height: 60px;
    overflow: hidden; /* crop the image */
  }
  header .logo img {
    width: auto;            /* keep natural width */
    height: 100%;           /* fill vertically */
    object-fit: cover;      /* crop right side */
    object-position: left;  /* keep far-left part */
  }

  /* Keep nav horizontal but remove icons */
  nav ul {
    flex-direction: row;
    gap: 15px;
  }
  nav a i {
    display: none;
  }
}


/* ===========================
   Responsive Adjustments
=========================== */
@media (max-width: 768px) {
  /* Crop logo to 60x60 square */
  header .logo {
    width: 60px;
    height: 60px;
    overflow: hidden; /* crop the image */
  }
  header .logo img {
    width: auto;       /* keep natural width */
    height: 100%;      /* fill container vertically */
    object-fit: cover; /* crop right side */
    object-position: left; /* keep far-left part */
  }

  /* Keep nav horizontal but remove icons */
  nav ul {
    flex-direction: row;
    gap: 15px;
  }
  nav a i {
    display: none;
  }
}

/* ===========================
   Responsive Adjustments
=========================== */
@media (max-width: 480px) {
  /* Crop logo to square */
  header .logo {
    width: 59px;   /* square container */
    height: 60px;
  }
  header .logo img {
    width: auto;   /* keep original proportions */
    height: 100%;  /* fill vertically */
    object-fit: cover; /* crop right side */
  }

  /* Keep nav horizontal but remove icons */
  nav ul {
    flex-direction: row;
    gap: 15px;
  }
  nav a i {
    display: none;
  }
}


  /* ===========================
     Hero Section
  ============================ */
  .hero {
    width: 100%;
    background: linear-gradient(135deg, #8224e3, #640ac0);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    box-sizing: border-box;
  }
  .hero h1 {
    font-family: 'Exo', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
  }

  /* ===========================
     Services (3-column boxes)
  ============================ */
  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 60px 0;
  }
  .service {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
  }
  .service i {
    font-size: 40px;
    color: #8224e3;
    margin-bottom: 15px;
  }
  .service h2 {
    font-weight: 700;
    color: #640ac0;
    margin-bottom: 10px;
  }



  /* ===========================
     Footer
  ============================ */
  footer {
    width: 100%;
    background: #222;
    color: #fff;
    padding: 40px 20px;
    box-sizing: border-box;
  }
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-column {
    flex: 1 1 30%;
    min-width: 250px;
    margin: 10px;
  }
  .footer-column h3 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #f9f9f9;
  }
  .footer-column p {
    line-height: 1.6;
    font-size: 14px;
  }
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-column ul li {
    margin-bottom: 10px;
  }
  .footer-column a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  .footer-column a:hover {
    color: #8224e3;
  }
  .footer-column a i {
    margin-right: 8px;
  }

  /* ===========================
     Responsive Adjustments
  ============================ */
  @media (max-width: 768px) {
    .services {
      grid-template-columns: 1fr;
    }
    .contact-embed iframe {
      height: 600px;
    }
    .footer-columns {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-column {
      flex: 1 1 100%;
      margin-bottom: 20px;
    }
  }
  @media (max-width: 480px) {
    .contact-embed iframe {
      height: 700px;
    }
  }
  
  /* ===========================
     Contact Form (Zoho Embed)
  ============================ */
  .contact-embed {
    width: 100%;
    background: #181D37; /* match Zoho form background */
    padding: 40px 0;
    box-sizing: border-box;
  }
  .contact-embed .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  .contact-embed h2 {
    text-align: center;
    font-family: 'Exo', sans-serif;
    color: #fff; /* white heading for dark background */
    margin-bottom: 20px;
  }
  .contact-embed iframe {
    width: 100%;
    height: 1200px; /* same height as form */
    border: none;
    display: block;
  }
