/* DARK OVERLAY FOR READABILITY */
 .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: -1;
}

/* ================= HERO LAYOUT ================= */

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  padding: 0 16px;
  position: relative;
  z-index: 5;
}

/* ================= LEFT CONTENT ================= */

.hero-left {
  flex: 1;
  text-align: left;
}

.hero-left h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero-left p {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ================= FORM BOX ================= */

.hero-form {
  flex: 0.9;
  background: rgba(255, 255, 255, 0.97);
  padding: 28px 22px;
  border-radius: 14px;
  color: #1D435F;
  box-shadow: 0 10px 32px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-form h3 {
  margin-bottom: 18px;
  font-weight: 700;
  color: #1D435F;
}

/* ================= FORM INPUTS ================= */

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 9px;
  font-size: 15px;
}

.hero-form textarea {
  min-height: 100px;
  resize: none;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: #1D435F;
  box-shadow: 0 0 0 2px rgba(29,67,95,0.25);
  outline: none;
}

/* ================= BUTTON ================= */

.btn-custom {
  background-color: #1D435F;
  color: #fff;
  border-radius: 9px;
  font-weight: 600;
  width: 100%;
  padding: 13px;
  font-size: 16px;
  border: none;
}

/* ================= HOVER (DESKTOP ONLY) ================= */

@media (hover: hover) {
  .hero-form:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(0,0,0,0.3);
  }

  .btn-custom:hover {
    background-color: #163348;
  }
}

/* ================= MOBILE OPTIMIZATION ================= */
 /* ================= MOBILE HERO FIX ================= */

@media (max-width: 768px) {

  .hero {
    min-height: auto !important;
    height: auto !important;
    padding-top: 90px;
    padding-bottom: 40px;
    overflow: visible !important;
  }

  .hero-container {
    flex-direction: column;
    gap: 24px;
    padding: 20px 14px 36px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .hero-form {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding: 22px 18px;
  }
}

/* Small phones */

@media (max-width: 420px) {
  .hero-left h1 {
    font-size: 1.85rem;
  }

  .hero-form {
    padding: 20px 16px;
  }
}



 .brands-section {
  padding: 60px 20px;
  background: #f8f8f8;
  text-align: center;
}

.brands-section h2 {
font-weight: 700;
  color: #1D435F;
  margin-bottom: 20px;
}

/* Slider wrapper for arrows */
.brands-slider-wrapper {
  position: relative;
}

/* Horizontal slider */
.brands-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-behavior: smooth;
}

/* Hide default scrollbar */
.brands-slider::-webkit-scrollbar {
  display: none;
}
.brands-slider {
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;     /* Firefox */
}

/* Brand cards */
.brand-card {
  flex: 0 0 auto; /* prevent shrinking */
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  width: 180px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.brand-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.brand-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #1D435F;
}

/* Scroll buttons */
.scroll-btn-brand {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1D435F;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}

.scroll-btn-brand.left { left: -20px; }
.scroll-btn-brand.right { right: -20px; }

.scroll-btn-brand:hover {
  background: #163348;
}

/* Responsive */
@media (max-width: 768px) {
  .brand-card { width: 140px; }
  .scroll-btn-brand { width: 35px; height: 35px; }
}

.projects-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.projects-section h2 {
font-weight: 700;
  color: #1D435F;
  margin-bottom: 20px;
}

/* Grid layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

/* Project card */
.project-card {
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 280px; /* optional max width */
  text-align: center;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* All images same size */
.project-card img {
  width: 100%;
  height: 200px; /* fixed height */
  object-fit: cover; /* crops to fit the box */
  display: block;
}

/* Caption text */
.project-card p {
  padding: 10px;
  font-size: 1rem;
  color: #1D435F;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= MOBILE PROJECTS SWIPE ================= */

@media (max-width: 768px) {

  .projects-section {
    padding: 40px 10px;
  }

  .projects-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 10px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .projects-grid::-webkit-scrollbar {
    display: none;
  }

  .project-card {
    flex: 0 0 80%;
    max-width: 80%;
    scroll-snap-align: center;
  }

  .project-card img {
    height: 180px;
  }
}

/* Small phones */

@media (max-width: 420px) {
  .project-card {
    flex: 0 0 88%;
    max-width: 88%;
  }
}

/* ================================
   Top Products / Best Deal Section
================================ */
.top-products-wrapper, .best-deal-wrapper {
 padding: 20px 20px;
  background: #fff;
  border-radius: 14px;
 
    max-width: 1350px;
  
    
  margin: auto;
  gap: 30px;
  
   
   
   
  background: #fafafa;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
}

/* Header */
.top-products-header, .best-deal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.top-products-title, .best-deal-title {
  font-weight: 700;
  font-size: 1rem;
}

.view-all-btn {
  border: 1px solid #1D435F;
  color: #1D435F;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.view-all-btn:hover {
  background: #6d9abf;
  color: #fff;
}

/* Product Section */
.product-banner-section {
  display: flex;
  gap: 20px;
}
.category-title{
  background-color: #1D435F;
  color: white;
  padding: 15px;
  font-size: 18px;
  border-radius: 4px;
}
/* Left Banner */
.left-banner {
  flex: 0 0 auto;
  width: 230px;
  height: 470px;
}

.left-banner img {
  width: 230px;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 0;
}

/* Right Product Grid */
.product-area {
  flex: 1;
  overflow: hidden;
}

.product-grid {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}
.product-grid-container {
    position: relative; /* <-- THIS WAS THE CRITICAL ADDITION */
    padding: 0 15px;
}
.product-grid:active {
  cursor: grabbing;
}

/* Hide scrollbar */
.product-grid::-webkit-scrollbar {
  display: none;
}

/* Product Card */
.product-card {
  flex: 0 0 220px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* Product Top: Brand + Wishlist */
.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.brand-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.wishlist-btn {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  color: #ccc;
  transition: color 0.3s;
}

.wishlist-btn.active i {
  color: #e74c3c;
}

.wishlist-btn:hover i {
  color: #ff6b6b;
}

/* Product Image */
.product-image {
  width: 210px;
  height: 210px;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -20px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-image img:hover {
  transform: scale(1.05);
}

/* Stock */
.instock {
  display: inline-block;
  margin-bottom: 8px;
  border: 1px solid darkgray;
  font-size: 0.75rem;
  color: #4caf50;
  padding: 2px 4px;
  border-radius: 3px;
}

/* Product Title & Brand */
.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2rem;
  height: 3.6rem;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #737272;
}

.brand-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: #1D435F;
  margin: 4px 0 6px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Price */
.price-row {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.price {
  font-weight: 700;
}

.compare-price {
  text-decoration: line-through;
  font-size: 0.8rem;
}

/* Delivery */
.delivery {
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.delivery i {
  margin-right: 4px;
}

/* Action Buttons */
.action-row {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.action-row button {
  padding: 10px;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.whatsapp-btn {
    
  background: #25d366;
    text-decoration: none;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.add-cart-btn {
  background: #1D435F;
  color: #fff;
}

.add-cart-btn:hover {
  background: #6d9abf;
}

/* Scroll Buttons */
.scroll-btn {
  position: absolute;
  top: 40%;
  width: 25px;
  height: 40px;
  background: #1D435F;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
  font-size: 22px;
  transition: background 0.3s;
  transform: translateY(-50%);
  color: white;
}

.scroll-btn:hover {
  background: #122d41;
}

.left-btn {
  left: 0;
}

.right-btn {
  right: 0;
}

#showMoreBtn {
  display: block;
  margin: 25px auto;
  padding: 10px 28px;
  background: #1D435F;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

#showMoreBtn:hover {
  background: #6d9abf;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

#showMoreBtn:active {
  transform: scale(0.97);
}

/* Responsive */
@media (max-width: 992px) {
  .product-banner-section {
    flex-direction: column;
  }
  .left-banner {
    width: 100%;
    margin-bottom: 20px;
  }
  .product-card {
    flex: 0 0 180px;
  }
}



.why-choose-section h2 {
  font-weight: 700;
  color: #1D435F;
  margin-bottom: 20px;
}
.why-choose-section img {
  width: 80%;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.why-choose-section .lead {
  color: #555;
  font-size: 1.1rem;
}

/* Feature cards */
.feature-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.feature-card i {
  font-size: 40px;
  color: #1D435F;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Desktop spacing */
.mb-6 {
  margin-bottom: 4rem !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .why-choose-section h2 {
    font-size: 1.8rem;
  }
  .feature-card i {
    font-size: 32px;
  }
}

 /* ===============================
   SERVICES SECTION
==================================*/
 /* ===============================
   SERVICES SECTION
==================================*/
.services-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #1D435F;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two cards per row */
  gap: 40px;
  justify-items: center;
}

.service-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  max-width: 500px; /* Keep card width reasonable */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.service-card img {
  width: 450px; /* Larger image */
  height: auto;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1D435F;
  font-weight: 700;
}

.service-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* ===============================
   RESPONSIVE DESIGN
==================================*/
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr; /* Stack cards on tablet/mobile */
    gap: 30px;
  }

  .service-card img {
    width: 100px;
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 15px;
  }
}



/* ===============================
   STATS SECTION
==================================*/
.stats-section {
  padding: 70px 20px;
  background: #1D435F;
  color: #fff;
}

.stats-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

.stat-item {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  padding: 18px 25px;
  border-radius: 12px;
  flex: 1;
  min-width: 280px;
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 32px;
  margin-right: 18px;
  color: #ffdd57;
}

.stat-number {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.stat-description {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}


/* ===============================
   RESPONSIVE DESIGN
==================================*/

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  

  .stat-item {
    flex-direction: row;
    text-align: left;
  }

  .stat-icon {
    font-size: 28px;
    margin-bottom: 0;
  }

  .stat-number {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .stats-row {
    flex-direction: column;
  }

  .stat-item {
    min-width: 100%;
  }
}



 /* Section Heading */
.who-we-serve-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1D435F;
}

.who-we-serve-section p.lead {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

/* Service Cards */
.service-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.service-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1D435F;
    margin: 0;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive: adjust padding and font size on smaller screens */
@media (max-width: 768px) {
    .service-card {
        padding: 20px 15px;
    }

    .service-card h5 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 15px 10px;
    }

    .service-card h5 {
        font-size: 14px;
    }
}

    /* Section Headings */
    section h2 { margin-bottom: 50px; font-weight: 700; color: #1D435F; }

    /* Feature Cards */
    .card-custom { border: none; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); text-align: center; padding: 20px; }

    /* Footer */
    .footer {
  color: #1D435F;
  background-color:#f7f7f7;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid #1D435F;
  
}

.footer .footer-about .logo {
  line-height: 1;
  width: auto; /* let it scale naturally */
  margin-bottom: 15px;
}

.footer .footer-about .logo img {
  max-height: 60px; /* increase height */
  width: auto;      /* keep aspect ratio */
  display: block;
}

.footer .footer-about .logo span {
   color: #1D435F;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
   color: #1D435F;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #1D435F;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
   color: #1D435F;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color:   #1D435F;
  color: white;
}

.footer .copyright p {
  margin-bottom: 0;
}
.footer .copyright a {
   color: white;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
.footer-map h4 {
  font-size: 16px;
  font-weight: bold;
  color: #1D435F;
  margin-bottom: 12px;
}

.map-container iframe {
  border-radius: 12px;
  width: 360px;
  height: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.whatsapp-float {
  position: fixed;
  right: 15px;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  bottom: 65px; /* default for top of page */
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.founder-section {
  background-color: #f9f9f9;
}

.founder-section h2 {
  color: #1D435F;
  font-weight: 700;
  margin-bottom: 20px;
}

.founder-section p {
  color: #4c6273;
  line-height: 1.6;
}

.founder-img {
  max-width: 250px;
  width: 100%;
  height: auto;       /* maintain aspect ratio */
  border: 5px solid #1D435F;
  border-radius: 6px; /* optional: small rounded corners */
  object-fit: cover;  /* ensures the square looks neat */
}

.founder-quote {
  border-left: 4px solid #1D435F;
  padding-left: 15px;
  color: #1D435F;
  font-style: italic;
  margin-top: 10px;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

.contact-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  color: #1D435F;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  background-color: #fff;
  padding: 20px;
  border-left: 4px solid #1D435F;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-box h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.info-box p {
  margin: 0;
  color: #555;
}

.contact-form {
  flex: 2 1 500px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1D435F;
  box-shadow: 0 0 5px rgba(29,67,95,0.3);
}

.contact-form button {
  padding: 15px;
  background-color: #1D435F;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #16334b;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}