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

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

/* Navbar */
/* --- NAVBAR STYLING --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #007bff;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: #3438a6;
  color: #fff;
}

.nav-links a.active {
  background: #007bff;
  color: #fff;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 65px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 200px;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}


/* Hero Section */
.hero {
  height: 100vh;
  background: url('home\ 1.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 50px;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.2);
}

.hero-content {
  position: relative;
  color: white;
  max-width: 500px;
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
}

.highlight {
  color: #007bff;
}

.search-box {
  margin-top: 20px;
}

.search-box input {
  padding: 10px;
  border: none;
  border-radius: 20px;
  width: 100%;
}

/* Info Section for Scroll Effect */
.info {
  padding: 50px;
  text-align: center;
  background: #f9f9f9;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.info.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}



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

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
}

.about-text {
  flex: 1;
  padding-right: 40px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.about-text .blue {
  color: #007bff;
}

.about-text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.search-box input {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  width: 250px;
}

/* Right Image Section */
.about-image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 350px;
  height: auto;
  border-radius: 5px;
  position: relative;
  z-index: 2;
}

.circle {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: transparent;
  border: 10px solid #007bff;
  border-radius: 50%;
  z-index: 1;
}

.arrow-btn {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #007bff;
  border: none;
  color: white;
  font-size: 20px;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

.arrow-btn:hover {
  background: #0056b3;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    color: #333;
}

.services-section {
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

h1 span {
    color: #2166d6;
}

.section-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #2166d6;
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #555;
}

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




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

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: white;
}

.navbar .logo {
  font-weight: bold;
}

.navbar nav a {
  text-decoration: none;
  color: black;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #007bff;
}

/* Fast Shipment Section */
.fast-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  position: relative;
}

.fast-left {
  flex: 1;
}

.fast-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.blue {
  color: #007bff;
}

.search-box input {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  width: 250px;
}

/* Image in Center */
.fast-center {
  flex: 1;
  text-align: center;
}

.fast-center img {
  width: 100%;
  max-width: 350px;
  border-radius: 5px;
}

/* Text on Right */
.fast-right {
  flex: 1;
  padding-left: 30px;
  position: relative;
}

.fast-right p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.arrow-btn {
  background: white;
  border: 2px solid #007bff;
  color: #007bff;
  font-size: 20px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background: #007bff;
  color: white;
}



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

.section {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    background: url('ship.jpg') no-repeat center/contain;
    background-color: white;
}

.section h1 {
    font-size: 2rem;
    margin-bottom: 50px;
}

.section h1 span {
    color: #0073e6;
    font-weight: bold;
}

.circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.circle {
    width: 200px;
    height: 200px;
    border: 3px solid #0073e6;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    font-weight: bold;
}

.circle::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 10px solid #0073e6;
    border-radius: 50%;
    z-index: 2;
}

.circle:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -40px;
    width: 40px;
    height: 3px;
    background: #0073e6;
    z-index: 1;
}

.search-bar {
    margin-top: 50px;
    display: inline-flex;
    align-items: center;
    background: white;
    border: 2px solid #ccc;
    border-radius: 30px;
    padding: 5px 10px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

.search-bar input {
    border: none;
    outline: none;
    padding: 10px;
    width: 250px;
    font-size: 14px;
}

.search-bar button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}



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

body {
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.6); /* low opacity overlay */
    z-index: -1;
}

header {
    background: white;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.main-section {
    padding: 50px;
    display: flex;
    justify-content: center;
}

.content-box {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1000px;
}

.image-box img {
    width: 350px;
    height: auto;
    display: block;
}

.text-box {
    background: #2d4a70;
    color: white;
    padding: 30px;
    flex: 1;
}

.text-box h2 span {
    color: #ffffff;
    font-weight: bold;
}

.text-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
}

.logistics-section {
    position: relative;
    background: url('background.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    color: #000;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:url(home\ 1.jpg);
    opacity: 0.8; low opacity background
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 1100px;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 40px;
    gap: 50px;
}

.left {
    flex: 1;
}

.left h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.left h1 span {
    color: #007bff;
}

.search-box {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 25px;
    padding: 10px 15px;
    max-width: 300px;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    background: transparent;
}

.search-icon {
    font-size: 18px;
}

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

.feature {
    display: flex;
    gap: 15px;
}

.feature .icon {
    font-size: 24px;
    color: #007bff;
}

.feature h3 {
    color: #007bff;
    font-size: 1.2rem;
}

.feature p {
    font-size: 0.9rem;
    color: #333;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.delivery-section {
    background: url('https://via.placeholder.com/1200x600') center/cover no-repeat;
    padding: 50px 20px;
    position: relative;
}

.delivery-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

.container {
    position: relative;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    z-index: 1;
}

h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
}

h1 span {
    color: #2166d6;
}

.services {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.service {
    max-width: 300px;
    text-align: center;
}

.service h3 {
    color: #2166d6;
    margin-top: 15px;
}

.service p {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

.circle-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #2166d6;
    margin: 0 auto;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 10px 20px;
    max-width: 350px;
    margin: 40px auto 20px;
}

.search-box i {
    margin-right: 10px;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
}

.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid black;
    border-radius: 50%;
    background: none;
    font-size: 20px;
    cursor: pointer;
}

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

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f4f4;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.contact-section {
  background-color: #fff;
  padding: 60px 0;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-form, .contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #14213d;
}

.contact-form p {
  margin-bottom: 20px;
  color: #555;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border 0.3s;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  border-color: #fca311;
  outline: none;
}

.btn {
  background: #fca311;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #ffbb45;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #14213d;
}

.contact-info p {
  margin-bottom: 10px;
  color: #444;
}

.map iframe {
  border-radius: 10px;
  margin-top: 20px;
}




/* Scroll Animation Styles */
section, .service-card, .about-text, .about-image, .fast-left, .fast-center, .fast-right, .circle, .content-box, .feature, .service, .contact-form, .contact-info {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

section.visible, .service-card.visible, .about-text.visible, .about-image.visible, .fast-left.visible, .fast-center.visible, .fast-right.visible, .circle.visible, .content-box.visible, .feature.visible, .service.visible, .contact-form.visible, .contact-info.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Adjustments ===== */

/* Tablets */
@media (max-width: 1024px) {
  .about-section, .fast-section, .content-box, .logistics-section .content, .services, .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .about-text, .about-image, .fast-left, .fast-center, .fast-right, .text-box, .left, .right {
    width: 100%;
    padding: 0;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Mobile landscape & portrait */
@media (max-width: 768px) {
  /* Navbar */
  .menu-toggle {
    display: block;
    cursor: pointer;
  }
  .nav-links {
    position: fixed;
    top: 60px;
    right: 0;
    width: 80vw;
    max-width: 300px;
    height: calc(100vh - 60px);
    background: #fff;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    box-shadow: -8px 0 16px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }
  .nav-links.show {
    transform: translateX(0);
  }

  /* Sections */
  .about-section, .fast-section, .content-box, .logistics-section .content, .services, .contact-container {
    flex-direction: column;
    gap: 16px;
  }
  .circles {
    flex-direction: column;
    gap: 16px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  section {
    padding: 30px 16px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  h1 {
    font-size: 22px;
  }
  .about-text h2, .fast-left h2 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }
}

