/* Global Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f7fafc;
  color: #333;
}

header, footer {
  background-color: #0c3c60;
  color: white;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
}

nav a:hover {
  text-decoration: underline;
}

.container {
  padding: 2rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #0c3c60 60%, #e0f7fa 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem 3rem 1rem;
  position: relative;
}
.hero-content {
  max-width: 600px;
  margin: 0 auto;
}
/* Button Styles Enhancement */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  margin-top: 1.5rem;
  margin-right: 0.5rem;
  text-align: center;
}
.btn-primary {
  background: #ffb300;
  color: #0c3c60;
  box-shadow: 0 2px 8px rgba(12,60,96,0.08);
}
.btn-primary:hover {
  background: #ffa000;
  color: #fff;
  box-shadow: 0 4px 16px rgba(12,60,96,0.18);
  transform: scale(1.05);
}
.btn-secondary {
  background: #0c3c60;
  color: #fff;
  box-shadow: 0 2px 8px rgba(12,60,96,0.15);
}
.btn-secondary:hover {
  background: #082a4a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(12,60,96,0.25);
  transform: scale(1.05);
}

/* Why Choose Us */
.why-choose-us {
  background: #f4f8fb;
  border-radius: 12px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  box-shadow: 0 2px 12px rgba(12,60,96,0.04);
}
.features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.feature {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(12,60,96,0.06);
  padding: 1.5rem 1rem;
  text-align: center;
  width: 220px;
}
.feature-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
  margin: 2rem auto 0 auto;
  padding: 2rem 1rem;
}
.testimonials-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.testimonial {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(12,60,96,0.06);
  padding: 1.5rem 1rem;
  width: 260px;
  font-style: italic;
  color: #333;
}
.testimonial span {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #0c3c60;
  font-style: normal;
}

/* Products Grid - Vertical Layout */
.products-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.product-card {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* Logo and Navigation */
.logo-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 2px solid #e0f7fa;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.2s;
}
.logo:hover, .logo:focus {
  transform: scale(1.13);
  box-shadow: 0 4px 24px rgba(12,60,96,0.18);
  z-index: 2;
}
@media (max-width: 600px) {
  .logo {
    width: 48px;
    height: 48px;
  }
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}

/* Products Section Background */
.container {
  background: linear-gradient(120deg, #f4f8fb 60%, #e0f7fa 100%);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(12,60,96,0.06);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Product Card Enhancements */
.product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(12,60,96,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(12,60,96,0.15);
  transform: translateY(-2px);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffb300, #ffa000);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.product-card:hover::before {
  transform: scaleX(1);
}
.product-card h3 {
  color: #0c3c60;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.product-card ul {
  margin: 1rem 0;
}
.product-card strong {
  color: #0c3c60;
  font-weight: 600;
}
.btn-primary {
  background: #ffb300;
  color: #0c3c60;
  margin-right: 0.5rem;
}
.btn-primary:hover {
  background: #ffa000;
  color: #fff;
}
@media (max-width: 600px) {
  .product-card {
    padding: 1.5rem 1rem;
    margin: 0 1rem;
  }
}
@media (max-width: 900px) {
  .features, .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }
  .feature, .testimonial {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .products-grid {
    gap: 1.5rem;
  }
  .logo-nav {
    flex-direction: column;
    text-align: center;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* About Page Styles */
.about-section {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 32px rgba(12,60,96,0.10), 0 1.5px 8px rgba(12,60,96,0.04);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.about-section:hover {
  box-shadow: 0 12px 40px rgba(12,60,96,0.16), 0 2px 12px rgba(12,60,96,0.08);
  transform: translateY(-2px) scale(1.01);
}
.about-section:nth-of-type(even) {
  background: linear-gradient(135deg, #f4f8fb 0%, #e0f7fa 100%);
}
.about-section:not(:last-of-type)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffb300 40%, #ffa000 60%, transparent);
  opacity: 0.5;
}
.about-section h2, .about-section h3 {
  color: #0c3c60;
  margin-bottom: 1.5rem;
  font-size: 2.1rem;
  position: relative;
  padding-left: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.about-section h2::before, .about-section h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 2.2rem;
  background: linear-gradient(135deg, #ffb300, #ffa000);
  border-radius: 3px;
}
.about-section ul, .about-section ol {
  margin: 1.2rem 0 1.2rem 0.5rem;
  padding-left: 2rem;
  font-size: 1.08rem;
}
.about-section ul li, .about-section ol li {
  margin-bottom: 0.7rem;
  line-height: 1.7;
}
.about-section strong {
  color: #0c3c60;
  font-weight: 700;
}
.about-section p {
  font-size: 1.08rem;
  color: #333;
  margin-bottom: 1.2rem;
  text-align: justify;
}
@media (max-width: 900px) {
  .about-section {
    padding: 2rem 1rem 2rem 1.2rem;
  }
  .about-section h2, .about-section h3 {
    font-size: 1.5rem;
    padding-left: 0.7rem;
  }
  .about-section h2::before, .about-section h3::before {
    width: 4px;
    height: 1.5rem;
  }
}
@media (max-width: 600px) {
  .about-section {
    padding: 1.2rem 0.5rem 1.2rem 0.7rem;
    margin: 1rem 0.2rem;
  }
  .about-section h2, .about-section h3 {
    font-size: 1.1rem;
    padding-left: 0.5rem;
  }
  .about-section h2::before, .about-section h3::before {
    width: 3px;
    height: 1rem;
  }
}
.about-section {
  animation: fadeSlideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.about-section:nth-of-type(2) { animation-delay: 0.1s; }
.about-section:nth-of-type(3) { animation-delay: 0.2s; }
.about-section:nth-of-type(4) { animation-delay: 0.3s; }
.about-section:nth-of-type(5) { animation-delay: 0.4s; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact Form Styles */
.contact-form-section {
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem 0;
  box-shadow: 0 8px 40px rgba(12,60,96,0.13);
  max-width: 500px;
  width: 80%;
  margin: 3rem auto 2rem auto;
  position: relative;
  border: 1.5px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form-section h2 {
  color: #0c3c60;
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.contact-form-section h2::after {
  content: '';
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #ffb300, #ffa000);
  border-radius: 2px;
  margin: 1.2rem auto 0 auto;
}
.contact-form {
  width: 100%;
  background: #fafdff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(12,60,96,0.04);
  padding: 2rem 1rem 1.2rem 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  max-width: 100%;
  overflow: hidden;
}
.contact-form label {
  font-size: 1.08rem;
  color: #0c3c60;
  font-weight: 700;
  margin-bottom: 0.4rem;
  margin-left: 0.1rem;
  letter-spacing: 0.01em;
}
.contact-form input,
.contact-form select {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 1.2rem 1.1rem 0.7rem 1.1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1.13rem;
  background: #f7fafc;
  margin-bottom: 0.1rem;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(12,60,96,0.04);
}
.contact-form input:focus,
.contact-form select:focus {
  border-color: #ffb300;
  box-shadow: 0 0 0 1.5px #ffb300;
  outline: none;
  background: #fff;
}
.contact-form button {
  background: linear-gradient(90deg, #ffb300, #ffa000);
  color: #0c3c60;
  padding: 1.1rem 0;
  border: none;
  border-radius: 24px;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 1.5rem;
  width: 100%;
  box-shadow: 0 4px 16px rgba(12,60,96,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.contact-form button:hover {
  background: linear-gradient(90deg, #ffa000, #ffb300);
  color: #fff;
  box-shadow: 0 8px 32px rgba(12,60,96,0.18);
  transform: translateY(-2px) scale(1.03);
}
.contact-form .phone-input-container {
  display: flex;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  background: #f7fafc;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(12,60,96,0.04);
  position: relative;
  padding: 0;
  height: 56px;
  max-width: 100%;
  overflow: hidden;
}
.custom-select {
  width: 35%;
  min-width: 60px;
  max-width: 120px;
  margin: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  height: 100%;
}
.custom-select input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 1.13rem;
  height: 100%;
  padding: 0 0.7rem 0 1rem;
  width: 100%;
  font-weight: 700;
  color: #0c3c60;
  text-align: right;
  transition: background 0.2s, color 0.2s;
}
.custom-select input::placeholder {
  color: #b0b0b0;
  font-weight: 400;
  opacity: 1;
}
.custom-select input:not(:focus) {
  background: transparent !important;
  color: #0c3c60;
  cursor: pointer;
}
.contact-form input[type="tel"] {
  border: none;
  background: transparent;
  box-shadow: none;
  font-size: 1.13rem;
  width: 65%;
  min-width: 80px;
  max-width: 100%;
  padding: 0 1rem;
  height: 100%;
  color: #222;
  font-weight: 500;
  text-align: left;
}
.contact-form input[type="tel"]::placeholder {
  color: #b0b0b0;
  font-weight: 400;
  opacity: 1;
}
.contact-form input[type="tel"]:focus {
  outline: none;
}
.contact-form .phone-input-container::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 60%;
  background: #e0e0e0;
  position: absolute;
  left: 30%;
  top: 20%;
  z-index: 2;
}
.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  min-width: 160px;
  max-width: 320px;
  width: max-content;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(12,60,96,0.18);
  max-height: 220px;
  overflow-y: auto;
  margin-top: 2px;
  display: none;
}
.custom-select input:focus + .country-dropdown,
.country-dropdown:focus-within {
  display: block;
}
.country-option {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
  font-size: 14px;
}
.country-option:hover {
  background-color: #f8f9fa;
}
.country-option:last-child {
  border-bottom: none;
}
.country-option.hidden {
  display: none;
}
.country-option.selected {
  background-color: #ffb300;
  color: #0c3c60;
  font-weight: 600;
}
.country-dropdown::-webkit-scrollbar {
  width: 6px;
}
.country-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.country-dropdown::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.country-dropdown::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.phone-input-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.contact-form .phone-input-container {
  overflow: visible;
}

@media (max-width: 600px) {
  .carousel-container {
    max-width: 240px;
    padding: 0.5rem 0.2rem;
  }
  .carousel-slide {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
  }
  .carousel-slide .product-image {
    max-width: 200px;
    max-height: 200px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    box-shadow: none;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 900px) {
  .contact-form-section {
    max-width: 98vw;
    width: 98vw;
    padding: 1.5rem 0;
  }
  .contact-form {
    width: 100%;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    max-width: 100%;
  }
  .contact-form .phone-input-container {
    width: 98%;
    height: 48px;
  }
  .custom-select {
    width: 38%;
    max-width: 100px;
  }
  .contact-form input[type="tel"] {
    width: 62%;
  }
}
@media (max-width: 600px) {
  .contact-form-section {
    padding: 0.5rem 0;
    max-width: 100vw;
    width: 100vw;
    border-radius: 10px;
  }
  .contact-form {
    width: 100%;
    padding: 0.5rem 0.1rem 0.5rem 0.1rem;
    border-radius: 8px;
    max-width: 100%;
  }
  .contact-form .phone-input-container {
    width: 99%;
    height: 40px;
  }
  .custom-select {
    width: 40%;
    max-width: 80px;
  }
  .contact-form input[type="tel"] {
    width: 60%;
    font-size: 1rem;
    padding: 0 0.5rem;
  }
}

.contact-main-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(12,60,96,0.13);
  max-width: 900px;
  margin: 3rem auto 2rem auto;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-main-columns {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  width: 100%;
  justify-content: space-between;
}
.contact-form-section, .contact-details-section {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.contact-details-section {
  max-width: 320px;
  min-width: 220px;
  justify-content: flex-start;
}
.contact-details {
  background: #f7fafc;
  border-radius: 12px;
  padding: 1.2rem 1rem 1.2rem 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(12,60,96,0.06);
}
.map-container {
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .contact-main-card {
    max-width: 99vw;
    padding: 1.2rem 0.2rem;
  }
  .contact-main-columns {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .contact-details-section {
    max-width: 100%;
    min-width: 0;
  }
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 420px;
  margin: 2rem auto 2.5rem auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(12,60,96,0.10);
  padding: 1.2rem 0.5rem;
  position: relative;
}
.carousel-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}
.carousel-slide .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.carousel-slide .product-image:hover {
  box-shadow: none;
  transform: scale(1.03);
}
.carousel-btn {
  background: #ffb300;
  color: #0c3c60;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  margin: 0 0.5rem;
  box-shadow: 0 2px 8px rgba(12,60,96,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 2;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  background: #ffa000;
  color: #fff;
  transform: scale(1.08);
}
@media (max-width: 600px) {
  .carousel-container {
    max-width: 220px;
    padding: 0.5rem 0.2rem;
  }
  .carousel-slide {
    width: 200px;
    height: 200px;
  }
  .carousel-btn {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
}
.footer-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 0;
  display: inline-block;
  transition: transform 0.18s, box-shadow 0.18s;
}
.footer-icon:hover {
  transform: scale(1.13);
  box-shadow: 0 2px 8px rgba(12,60,96,0.13);
  background: #f4f8fb;
}
@media (max-width: 600px) {
  .footer-social {
    gap: 0.7rem;
    margin-top: 0.7rem;
  }
  .footer-icon {
    width: 28px;
    height: 28px;
  }
}
