/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    padding-bottom: 70px; /* Space for bottom nav on mobile */
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Bar (Desktop) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #003366 0%, #4A90E2 100%);
    color: #FFFFFF;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

/* Left Side: Logo and Info */
.nav-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    height: 50px;
    margin-bottom: 5px;
}

.gst-info {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #FFFFFF;
}

.verified-icon {
    color: #FFD700;
    margin: 0 5px;
}

.badge {
    background: #FFD700;
    color: #003366;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 10px;
    margin-left: 5px;
}

/* Center: Menu (Desktop) */
.nav-center {
    flex: 1;
    text-align: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 15px;
    position: relative;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Dropdown (Desktop) */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 150px;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #003366;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 14px;
}

.dropdown-menu a i {
    margin-right: 10px;
    color: #4A90E2;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

/* Right Side: Icons (Desktop) */
.nav-right {
    display: flex;
    align-items: center;
}

.icon-link {
    color: #FFFFFF;
    margin-left: 15px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: #FFD700;
}

/* Mobile Bottom Navigation */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #003366 0%, #4A90E2 100%);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

.bottom-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}

.bottom-nav a {
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    transition: color 0.3s ease;
}

.bottom-nav a i {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

.bottom-nav a.active {
    color: #FFD700;
}

/* Mobile Product Submenu (Slide-Up) */
.product-submenu {
    display: none;
    position: fixed;
    bottom: 70px; /* Above bottom nav */
    left: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.product-submenu ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 20px 0;
}

.product-submenu a {
    color: #003366;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
}

.product-submenu a i {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: #4A90E2;
}

/* Floating Action Buttons (Mobile) */
.fab {
    display: none;
    position: fixed;
    bottom: 90px; /* Above bottom nav */
    right: 20px;
    width: 50px;
    height: 50px;
    background: #4A90E2;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 998;
    text-align: center;
    line-height: 50px;
    color: #FFFFFF;
    font-size: 20px;
    transition: background 0.3s ease;
}

.fab:hover {
    background: #003366;
}

.fab:nth-child(2) {
    bottom: 150px; /* Stack above the first */
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        display: none; /* Hide top nav on mobile */
    }
    .bottom-nav {
        display: block;
    }
    .fab {
        display: block;
    }
}

/* Page-Specific Styles */
.product-page h1 {
    color: #003366;
    text-align: center;
}


.product-page p {
    text-align: center;
    font-size: 18px;
}/* Hero Carousel */
.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    text-align: center;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.2rem;
}

.hero-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-buttons .btn-primary, .hero-buttons .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #FFD700;
    color: #003366;
}

.btn-primary:hover {
    background: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #003366;
}

/* Products & Services Section */
.products-services {
    padding: 50px 20px;
    background: #f8f9fa;
    text-align: center;
}

.products-services h2 {
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.item-card {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.item-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-card h3 {
    color: #003366;
    font-size: 1.5rem;
    margin: 15px 0;
}

.item-card p {
    color: #333;
    font-size: 1rem;
    margin: 0 15px 15px;
}

.read-more-btn {
    background: #4A90E2;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #003366;
}

.full-desc {
    display: none;
    padding: 15px;
    background: #f0f0f0;
    color: #333;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { max-height: 0; opacity: 0; }
    to { max-height: 200px; opacity: 1; }
}

/* Ratings & Reviews Section */
.ratings-reviews {
    padding: 50px 20px;
    background: #FFFFFF;
    text-align: center;
}

.ratings-reviews h2 {
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.reviews-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.rating-summary {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.stars {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    height: 10px;
    margin-top: 10px;
}

.progress {
    background: #4A90E2;
    height: 100%;}
    .footer {
  background: #0a1f44;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-box h2,
.footer-box h3 {
  color: #4da3ff;
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
}

.footer-box ul li:hover {
  transform: translateX(5px);
  color: #4da3ff;
}

.footer-box ul li a {
  text-decoration: none;
  color: #fff;
}

.footer-box ul li a:hover {
  color: #4da3ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 13px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-box ul li:hover {
    transform: none;
  }
}
.footer-map {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-map:hover {
  transform: scale(1.05);
}

/* Mobile improvement */
@media (max-width: 768px) {
  .footer-map {
    height: 220px;
  }
}
