body {
  margin: 0;

  font-family: "Poppins", sans-serif;

  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #104b5a;
  padding: 10px 30px;
  position: sticky;
  top: 0;
  z-index: 1300; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  height: 80px;
}


.navbar-img {
  max-height: 100px; 
  width: auto;
  cursor: pointer;
  z-index: 1100;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #9c9bf0;
}


.menu-toggle {
  display: none;         
  font-size: 36px;     
  cursor: pointer;
  color: #e5e3ee;
  z-index: 1200;          
  position: relative;
  
 
}


@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(17, 66, 75, 0.95); /* semi-transparent */
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    z-index: 1100;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.logo {
  font-size: 28px;
  font-weight: 700;
  color: #f8f5f5;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #0078ff;
}

/* 👇 Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .logo {
    font-size: 22px;  /* Mobile par thoda chhota */
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 18px;  /* Very small devices par aur chhota */
  }
}


.hero {
  background: url('/port.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 50px 20px;     /* padding kam kardi */
  min-height: 50vh;       /* aur chhoti height */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Overlay blur */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);   /* halka black layer */
  backdrop-filter: blur(1px);     /* thoda zyada blur for softness */
  z-index: 0;
}

/* Text ko overlay se upar lana */
.hero > * {
  position: relative;
  z-index: 1;
}


/* content ko upar lana */
.hero * {
  position: relative;
  z-index: 1;
}


.hero .btn {
  background: #1a5c6d;
  color: rgb(235, 223, 223);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
/* ===== About Overview ===== */
.about-overview {
  background: linear-gradient(180deg, rgba(3,37,65,0.03), rgba(3,37,65,0.06));
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-overview .container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.overview-content {
  text-align: center;
  background: #ffffff;
  padding: 28px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(10, 20, 40, 0.06);
  border: 1px solid rgba(3,37,65,0.04);
}

.overview-content h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: #0e425a;
  letter-spacing: 0.6px;
  font-weight: 700;
  text-transform: none;
}

.overview-text {
  margin: 0 auto 20px;
  max-width: 820px;
  color: #3c3c3c;
  font-size: 1rem;
  line-height: 1.7;
}

/* CTA */
.overview-cta {
  display: inline-block;
  padding: 10px 26px;
  background: linear-gradient(135deg, #0b4966, #138bbd);
  color: #fff;
  text-decoration: none;
  border-radius: 28px;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 6px 18px rgba(19, 139, 189, 0.12);
}

.overview-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(19, 139, 189, 0.16);
}

/* Responsive */
@media (max-width: 768px) {
  .about-overview {
    padding: 28px 12px;
  }
  .overview-content {
    padding: 20px;
  }
  .overview-content h2 {
    font-size: 1.35rem;
  }
  .overview-text {
    font-size: 0.98rem;
  }
  .overview-cta {
    padding: 9px 22px;
  }
}

.categories,
.about,
.contact{
  padding: 50px 20px;
  text-align: center;
}
.services {
  padding: 50px 20px;
  text-align: center;
}

.services h1 {
  font-size: 32px;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;  /* space between boxes */
  margin-top: 20px;
}

.service-box {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  width: 300px;
  text-align: center;
  transition: 0.3s ease;
  margin-bottom: 15px;
}
.service-icon{
   font-size: 50px;  
}

.service-box:hover {
  background: #eaeaea;
  transform: translateY(-5px);
}
.para {
  font-size: 16px;         
  line-height: 1.8;      
  color: #333;            
  max-width: 800px;       
  margin: 15px auto;      
  text-align: justify;    
  padding: 0 15px;  }


.social-links {
  margin: 15px 0;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 28px;        /* icons size */
  color: #333;            /* default color */
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #00b894;         /* hover pe green shade */
  transform: scale(1.2);  /* zoom effect */
}

.about {
  background: linear-gradient(135deg, #f9f9f9, #eef2f3);
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.about h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

.about h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #3498db;
  margin: 8px auto 0;
  border-radius: 2px;
}

.about p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #34495e;
}

.about ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.about ul li {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  background: #f0f8ff;
}
/* ==== Contact Section ==== */
.contact {
  padding: 60px 20px;
  text-align: center;
  max-width: 900px;
  margin: 60px auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.contact h1 {
  font-size: 2.2em;
  color: #0a2147;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact p {
  margin: 10px 0;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.contact i {
  color: #0a2147;
  margin-right: 8px;
  font-size: 17px;
}

.contact a {
  color: #0078ff;
  text-decoration: none;
  transition: 0.3s;
}

.contact a:hover {
  text-decoration: underline;
  color: #005ec9;
}

/* ==== Social Links ==== */
.social-links {
  margin: 30px 0;
}

.social-links a {
  color: white;
  background: #0a2147;
  margin: 0 10px;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #0078ff;
  transform: scale(1.1);
}
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  background-color: #f5f7fa;
  font-family: 'Poppins', sans-serif;
}

.contact h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}

.contact-form {
  width: 100%;
  max-width: 480px;
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Label improvements */
.contact-form label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #555;
  margin-bottom: 6px;
  margin-top: 15px; /* extra space from previous input */
}

/* Input and textarea styling */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 0px; /* margin handled by label spacing */
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6c63ff;
  box-shadow: 0 0 5px rgba(108, 99, 255, 0.3);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background: #045168;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background: #574ee0;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .contact-form {
    padding: 25px 20px;
  }
}

/* Floating Phone Button */
.phone-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 90px; 
  right: 20px;
  background-color: #06364d;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s ease;
}

.phone-float i {
  margin-top: 14px;
}

.phone-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}


footer {
  background: #2c292a;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}

footer a {
  color: #dcdcdc;            /* Soft grey-white */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #00aaff;            /* Blue hover effect */
  text-decoration: underline;
}

/* Icon styling */
footer a i {
  font-size: 22px;
  margin-right: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

footer a:hover i {
  color: #00aaff;            /* Icon color changes with link */
  transform: scale(1.2);
}


@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #003366;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
/* Wrapper for all mobiles */
.mobile-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

.mobile-section h1 {
  text-align: center;
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
}

.mobile-section .intro {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}


.mobiles-wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
 }

/* Mobile Card */
.mobile-container {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}


.mobile-container img {
  width: 100%;
  height: 250px; 
  object-fit: cover;
}

.mobile-content {
  padding: 15px;
}

.mobile-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.mobile-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}

.mobile-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.mobile-content table th,
.mobile-content table td {
  padding: 6px 8px;
  border-bottom: 1px solid #ddd;
}

.mobile-content table th {
  text-align: left;
  font-weight: 600;
  color: #333;
}

.mobile-content table td {
  color: #555;
}

@media (max-width: 992px) {
  .mobiles-wrapper {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
  .mobile-container img {
    height: 220px;
  }
}


@media (max-width: 600px) {
  .mobiles-wrapper {
    grid-template-columns: 1fr; 
  }
  .mobile-container img {
    height: 200px;
  }
  .mobile-content h2 {
    font-size: 18px;
  }
  .mobile-content p {
    font-size: 13px;
  }
  .mobile-content table {
    font-size: 13px;
  }
}


.categories-container {
  text-align: center;
  padding: 60px 20px;
  background: white;
}

.categories-container h2 {
  font-size: 32px;
  color: #002b5b;
  margin-bottom: 10px;
}

.categories-container .intro {
  color: #555;
  margin-bottom: 40px;
  font-size: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.see-more-btn {
  text-align: center; /* Button center align ke liye */
  margin-top: 30px;   /* Thoda spacing upar se */
}

.see-more-btn .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #2a5f74; /* Dark teal */
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.see-more-btn .btn:hover {
  background-color: #574ee0; /* Hover color */
  transform: translateY(-2px); /* Slight lift on hover */
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-content: center;
}

/* Card Styling */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3 {
  color: #002b5b;
  font-size: 20px;
  margin: 15px 0 10px;
}

.card p {
  padding: 0 15px 20px;
  font-size: 14px;
  color: #555;
}

/* Responsive Grid for Mobile */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }
}

/* 🌾 Products Section (E-Commerce Look) */
.products-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.products-section h1 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #003366;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.products-section .intro {
  font-size: 16px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Product Card Container */
.product-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  margin-bottom: 40px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Product Image */
.product-card img {
  width: 300px;
  height: 260px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 30px;
}

/* Product Content */
.product-card-content {
  flex: 1;
  text-align: left;
}

.product-card-content h2 {
  font-size: 26px;
  color: #003366;
  margin-bottom: 10px;
  border-bottom: 2px solid #003366;
  display: inline-block;
  padding-bottom: 5px;
}

.product-card-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Product Table Styling */
.product-card-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #f9fafc;
  border-radius: 10px;
  overflow: hidden;
}

.product-card-content th {
  background: #003366;
  color: #fff;
  text-align: left;
  padding: 10px;
  font-weight: 500;
}

.product-card-content td {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
}

.product-card-content tr:last-child td {
  border-bottom: none;
}

.product-card-content tr:hover td {
  background-color: #f1f6fb;
  transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 992px) {
  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-card img {
    margin: 0 0 20px 0;
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .product-card-content {
    text-align: center;
  }

  .product-card-content table {
    font-size: 13px;
    overflow-x: auto;
    display: block;
  }
}

@media (max-width: 600px) {
  .products-section h1 {
    font-size: 28px;
  }
  .product-card-content h2 {
    font-size: 22px;
  }
  .product-card-content p {
    font-size: 14px;
  }
}
.featured-mobiles {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.featured-mobiles h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  animation: slide 20s linear infinite;
}

.mobile-card {
  min-width: 200px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.mobile-card:hover {
  transform: scale(1.05);
}

.mobile-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.mobile-card h3 {
  margin-top: 10px;
  font-size: 16px;
  color: #2a5f74;
}

/* Slider Animation */
@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.see-more {
  margin-top: 20px;
}

.see-more .btn {
  padding: 10px 25px;
  background: #2a5f74;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.see-more .btn:hover {
  background: #574ee0;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-card {
    min-width: 150px;
  }
}
