/* variables from maniksultan.com Zyro site */
:root {
  --color-primary: #2e81f6;
  --color-dark: #1a1a1a;
  --color-gray: rgb(176, 176, 176);
  --color-white: #ffffff;
  --color-text: #1a1a1a;

  --font-primary: 'Prosto One', sans-serif;
  --font-secondary: 'Catamaran', sans-serif;
  --font-body: 'Catamaran', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.72;
  font-size: 16px;
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 48px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

p,
.body {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0.01em;
}

.body-large {
  font-size: 18px;
}

@media (max-width: 900px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }
}

a {
  text-decoration: none;
  font-family: var(--font-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-gray);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 139px;
}

.logo-link img {
  width: 350px;
  height: auto;
}

.desktop-nav ul {
  display: flex;
  gap: 47px;
  list-style-type: none;
}

.desktop-nav a {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: rgb(125, 112, 112);
}

.desktop-nav a.active {
  color: var(--color-text);
}

.hamburger-menu {
  display: none;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  background-color: rgb(73, 88, 103);
  padding: 16px 40px;
  border-radius: 999px;
  transition: background-color 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background-color: rgb(48, 63, 78);
}

/* Our Story Section */
.story-section {
  background-color: var(--color-white);
  padding: 120px 0;
  min-height: 656px;
  display: flex;
  align-items: center;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.story-content {
  padding-right: 20px;
}

.story-content .eyebrow {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.story-content h2 {
  font-size: 48px;
  color: rgb(0, 0, 0);
  margin-bottom: 32px;
}

.story-content p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgb(0, 0, 0);
}

.story-image img {
  width: 100%;
  max-width: 606px;
  object-fit: cover;
  margin-left: auto;
}

/* Hero Section / Excellence in Solutions */
.hero-section {
  background-color: var(--color-gray);
  padding: 100px 0;
  min-height: 689px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-content h1 {
  font-size: 48px;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-image img {
  border-radius: 39px;
  object-fit: cover;
  width: 100%;
  max-width: 606px;
  margin-left: auto;
}

/* Quality Products Section */
.quality-products-section {
  background-color: var(--color-white);
  padding: 100px 0;
  min-height: 501px;
}

.quality-header h2 {
  font-size: 48px;
  color: rgb(10, 16, 21);
  text-align: center;
  margin-bottom: 80px;
}

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

.quality-item {
  text-align: center;
}

.quality-item h3 {
  font-size: 20px;
  color: rgb(10, 16, 21);
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 700;
}

.quality-item p {
  font-size: 16px;
  color: rgb(10, 16, 21);
  font-family: var(--font-body);
}

/* Satisfied Clients */
.testimonials-section {
  background-color: var(--color-gray);
  padding: 100px 0;
  min-height: 648px;
  display: flex;
  align-items: center;
}

.testimonials-wrapper h2 {
  font-size: 48px;
  color: var(--color-white);
  margin-bottom: 80px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 100px;
}

.testimonial {
  display: flex;
  gap: 30px;
}

.testimonial .vertical-dashed-line {
  min-width: 4px;
  background-image: linear-gradient(to bottom, var(--color-primary) 50%, transparent 50%);
  background-size: 4px 20px;
  background-repeat: repeat-y;
}

.test-content {
  flex: 1;
}

.testimonial p.quote {
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.testimonial p.author {
  font-size: 18px;
  color: var(--color-white);
}

/* About Section */
.about-section {
  background-color: var(--color-white);
  padding: 120px 0;
  min-height: 624px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* For circle overlap */
}

.about-wrapper {
  position: relative;
  width: 100%;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 1130px;
}

.about-content h2 {
  font-family: var(--font-body);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.3;
  color: rgb(10, 16, 21);
  text-align: left;
}

.blue-circle {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 306px;
  height: 306px;
  background-color: var(--color-primary);
  border-radius: 50%;
  z-index: 1;
}

/* Footer Section */
.site-footer {
  background-color: var(--color-gray);
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1.5fr 1.5fr 3fr;
  gap: 40px;
}

.footer-logo {
  width: 260px;
  margin-bottom: 24px;
}

.brand-col p {
  font-size: 16px;
  color: rgb(0, 0, 0);
  font-family: var(--font-secondary);
  line-height: 1.3;
}

.footer-col h5 {
  font-size: 18px;
  color: rgb(10, 16, 21);
  margin-bottom: 24px;
  font-weight: 700;
  font-family: var(--font-secondary);
}

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

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  font-size: 16px;
  color: rgb(26, 26, 26);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.address-item {
  margin-bottom: 16px;
}

.address-item strong {
  font-size: 16px;
  color: rgb(26, 26, 26);
  display: block;
  margin-bottom: 8px;
}

.address-item p {
  font-size: 16px;
  color: rgb(50, 50, 50);
  font-family: var(--font-secondary);
}

.contact-email {
  margin-top: 24px;
}

.contact-email strong {
  color: rgb(0, 0, 0);
  font-weight: 700;
}

.contact-email a {
  color: rgb(0, 0, 0);
}

/* About Us Page Sections */
.about-intro-section,
.mission-vision-section,
.team-section {
  background-color: var(--color-white);
  padding: 80px 0;
}

.about-grid,
.team-grid {
  max-width: 1224px;
}

.text-content {
  color: rgb(10, 16, 21);
}

.text-content h3 {
  font-size: 48px;
  margin-bottom: 24px;
}

.text-content p {
  color: rgb(10, 16, 21);
  margin-bottom: 24px;
}

/* Image Full Width */
.image-full-section {
  background-color: var(--color-white);
  padding: 40px 0;
}

.image-full-container {
  max-width: 1224px;
}

.image-full-container img {
  width: 100%;
  height: 544px;
  object-fit: cover;
  border-radius: 0;
}

/* Mission & Vision Grid */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.sub-heading {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  font-family: var(--font-primary);
}

.body-large {
  font-size: 18px;
}

/* Products Page */
.products-title-section {
  background-color: var(--color-white);
  padding: 80px 0 20px 0;
  text-align: center;
}

.products-title-section h1 {
  font-size: 72px;
  color: rgb(10, 16, 21);
}

.product-section {
  background-color: var(--color-white);
  padding: 30px 0;
}

.product-grid {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1224px;
}

.product-grid>div {
  flex: 1;
}

.product-title {
  font-family: var(--font-primary);
  font-size: 24px;
  color: rgb(43, 44, 50);
  margin-bottom: 24px;
}

.product-text p {
  color: rgb(10, 16, 21);
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-image img {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  height: 384px;
}

/* Market Page */
.market-section {
  background-color: var(--color-white);
  padding: 40px 0 80px 0;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}

.market-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 24px;
}

.market-item h6 {
  font-family: var(--font-primary);
  font-size: 20px;
  color: rgb(29, 28, 29);
  margin-bottom: 12px;
}

.market-item p {
  color: rgb(29, 28, 29);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {

  .hero-grid,
  .story-grid,
  .quality-grid,
  .testimonials-grid,
  .footer-grid,
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-full-container img {
    height: 278px;
  }

  .products-title-section h1 {
    font-size: 44px;
  }

  .product-grid {
    flex-direction: column;
    gap: 40px;
  }

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

  .product-image img {
    height: 264px;
  }

  .header-container {
    height: 83px;
    padding: 24px 16px;
  }

  .logo-link img {
    width: 200px;
  }

  .desktop-nav {
    display: none;
    position: absolute;
    top: 83px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 20px;
    z-index: 100;
  }

  .desktop-nav.active {
    display: block;
  }

  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .desktop-nav ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
  }

  .hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--color-primary);
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .story-content {
    padding-right: 0;
  }

  .blue-circle {
    display: none;
  }

  .about-content h2 {
    font-size: 24px;
  }
}

/* Quality Page */
.quality-title-section {
  background-color: var(--color-white);
  padding: 60px 0 40px 0;
  text-align: center;
}

.quality-title-section h1 {
  font-size: 72px;
  color: rgb(10, 16, 21);
  margin-bottom: 0;
}

.quality-block-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.quality-block-section.bg-gray {
  background-color: var(--color-gray);
}

.quality-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.quality-block-grid.reverse-grid-text {
  grid-template-columns: 1.2fr 0.8fr;
}

.quality-block-grid.align-top {
  align-items: start;
}

.text-col h3 {
  font-size: 36px;
  color: rgb(26, 26, 26);
  margin-bottom: 24px;
}

.text-col h5 {
  font-size: 24px;
  color: rgb(43, 44, 50);
  margin-bottom: 24px;
}

.text-col p {
  color: rgb(26, 26, 26);
  font-size: 16px;
  line-height: 1.7;
}

.image-col img {
  width: 100%;
}

.cert-img {
  max-width: 348px;
  border-radius: 10px;
}

.cert-img.centered {
  margin: 0 auto;
  display: block;
}

.dual-images {
  display: flex;
  gap: 20px;
}

.dual-images img {
  width: calc(50% - 10px);
}

@media (max-width: 900px) {
  .quality-block-grid {
    grid-template-columns: 1fr !important;
  }

  .quality-title-section h1 {
    font-size: 44px;
  }
}

/* Contact Page */
.contact-info-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.contact-info-grid h1 {
  font-size: 48px;
  color: rgb(10, 16, 21);
  margin-bottom: 24px;
  line-height: 1.2;
}

.contact-info-grid .body-large {
  font-size: 18px;
  line-height: 1.72;
  margin-bottom: 40px;
}

.contact-details h6 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-details p {
  font-size: 18px;
  margin-bottom: 24px;
}

.contact-details h4 {
  font-size: 18px;
  line-height: 1.72;
  font-weight: 400;
  color: rgb(0, 0, 0);
}

.map-section {
  padding: 40px 0 80px 0;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}