#welcome-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.welcome-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  transform: scale(0.5);
  animation: logoIntro 1.2s ease-out forwards;
}

.welcome-quote {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  max-width: 700px;
  line-height: 1.5;
  opacity: 0;
  animation: quoteIntro 1.5s ease-out forwards 0.5s;
}

@keyframes logoIntro {
  0% { opacity: 0; transform: scale(0.5) rotate(-10deg); }
  70% { opacity: 1; transform: scale(1.05) rotate(0deg); }
  100% { transform: scale(1); }
}

@keyframes quoteIntro {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}



/* Basic Reset and Font */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Container */
header {
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Top Bar Styling */
.top-bar {
    background-color: #1a202c; /* Dark blue-gray */
    color: #edf2f7; /* Light gray */
    padding: 10px 5%;
    display: flex;
    justify-content: center;
    font-size: 13px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap; 
    justify-content: center;
}

.contact-info a {
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #4299e1; /* Blue */
}

.contact-info i {
    margin-right: 8px;
    color: #4299e1; /* Blue */
}

/* Main Header Styling */
.main-header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    flex-wrap: wrap; 
}

.logo {
    height: 80px; /* Adjusted for mobile */
    width: auto;
}

.company-name {
    color: #2b6cb0; /* Darker blue */
    font-size: 2em; 
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    margin: 10px;
    text-align: center;
    flex-grow: 1; /* Allows the name to take up available space */
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.4);
    
}

.action-icons {
    display: flex;
    gap: 15px;
}

.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; /* Adjusted for mobile */
    height: 40px; /* Adjusted for mobile */
    background-color: #3182ce; /* Blue */
    color: white;
    border-radius: 50%;
    font-size: 18px; /* Adjusted for mobile */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.icon-circle:hover {
    background-color: #2b6cb0; /* Darker blue */
    transform: scale(1.1);
}
/* Only temporary visual animation - does not touch layout */
.animated-logo {
  opacity: 0;
  transform: scale(0.5);
  animation: logoFadeScale 1.2s ease-out forwards;
}

@keyframes logoFadeScale {
  0% { opacity: 0; transform: scale(0.5); }
  70% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); } /* Returns to original scale */
}

.animated-name {
  opacity: 0;
  transform: translateY(20px);
  animation: nameSlide 1.4s ease-out 0.2s forwards;
}

@keyframes nameSlide {
  0% { opacity: 0; transform: translateY(20px); }
  80% { opacity: 1; transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); } /* Back to original */
}

.animated-icon {
  opacity: 0;
  transform: scale(0.6);
  animation: iconPop 0.5s ease-out forwards;
}

.animated-icon:nth-child(1) { animation-delay: 1s; }
.animated-icon:nth-child(2) { animation-delay: 1.2s; }

@keyframes iconPop {
  0% { opacity: 0; transform: scale(0.6); }
  80% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); } /* Ends at original size */
}

/* Navigation Bar Styling */
.navbar {
    background-color: #2d3748; /* Another dark blue-gray */
    padding: 0 5%;
   
}

.navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.navbar ul li a {
    display: block;
    padding: 15px 20px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #63b3ed; /* Lighter blue */
}

.navbar ul li a.active {
    color: #63b3ed; /* Lighter blue */
}

.navbar ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #3182ce; /* Blue */
}

/* ==== MOBILE RESPONSIVE CHANGES START HERE ==== */

@media (max-width: 768px) {

    /* Hide the email address in the top bar to make space */
    .hide-on-mobile {
        display: none;
    }

    /* Keep the top bar items centered */
    .contact-info {
        flex-wrap: nowrap;
        gap: 20px;
    }

    /* Keep the main header items in a single row */
    .main-header {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 10px 3%;
    }

    /* Make the company name smaller to fit */
    .company-name {
        font-size: 1em; /* Significantly smaller font size for mobile */
        margin: 0;
    }
    
    /* Make the navigation bar scroll horizontally instead of wrapping */
    .navbar ul {
        justify-content: flex-start; /* Align items to the start */
        flex-wrap: nowrap; /* Prevent items from wrapping to the next line */
        overflow-x: auto; /* Allow horizontal scrolling */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    
    /* Hide scrollbar for Chrome, Safari, and Opera */
    .navbar ul::-webkit-scrollbar {
        display: none;
    }
}


/* ==== COMPACT SLIDER STYLES ==== */
/* You can replace your old slider styles with this section */

main {
    /* Reduced padding to bring content closer to the edges */
    padding: 20px;
    background: linear-gradient(to bottom, #f0f9ff, #e0f2fe);
}

.slider-container {
    position: relative;
    /* Reduced max-width for a more compact desktop view */
    max-width: 200px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px; /* Slightly smaller border radius */
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    display: block;
    /* For best results, ensure all your slider images have the same aspect ratio */
}

/* Slider Buttons (Prev/Next Arrows) */
.slider-button {
    position: absolute; /* ✅ changed from fixed */
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    z-index: 10;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.slider-button.prev {
    left: 0;
}

.slider-button.next {
    right: 0;
}


/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 10px; /* Moved closer to the bottom edge */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px; /* Reduced space between dots */
}

.dot {
    cursor: pointer;
    /* Made dots smaller */
    height: 10px;
    width: 10px;
    background-color: rgba(13, 2, 2, 0.6);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.dot.active, .dot:hover {
    background-color: white;
}



/* ==== STYLES FOR THE SECTIONS BELOW THE SLIDER ==== */

/* Main H1 Title Style */
h1 {
    text-align: center;
    font-size: 2em;
    color: #1e3a8a; /* Dark Blue */
    margin: 40px 0 20px 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bolder;
 
}

/* Product Display Section Styles */
.product-display-section {
    padding: 20px 5%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
#name{
    font-family: sans-serif;
    font-weight: bolder;
    text-decoration: underline;
}

.product-item-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    font-weight: bolder;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.product-item-card h3 {
    font-size: 1.25em;
    color: #1e3a8a; /* Dark Blue */
    margin-bottom: 15px;
    font-weight: 600;
}

.product-item-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
}

.card-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-product:hover {
    opacity: 0.85;
}

.call-btn {
    background-color: #28a745; /* Green */
}

.whatsapp-btn {
    background-color: #25D366; /* WhatsApp Green */
}


/* Why Choose Us Section Styles */
/* ==========================
   TRUST SECTION STYLING
========================== */
.trust-section {
  background: linear-gradient(135deg, #ffffff, #f3f7fa); /* clean & brand feel */
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #00bcd4;
}

/* Container wrapper */
.trust-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading */
.trust-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.trust-title span {
  color: #00bcd4; /* accent blue matches footer brand */
}

/* Subtitle text */
.trust-subtitle {
  color: #666;
  font-size: 15px;
  margin-bottom: 40px;
}

/* Features Grid */
.trust-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

/* Individual Feature Card */
.feature-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.2);
}

/* Icon styling */
.icon-box {
  background: #00bcd4;
  width: 65px;
  height: 65px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 26px;
  color: #fff;
}

/* Titles & Text */
.feature-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
}

.feature-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .trust-title {
    font-size: 24px;
  }
  .trust-features {
    flex-direction: column;
    align-items: center;
  }
}


/* ==========================
   GENERAL PAGE STYLING
========================== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
}

/* ==========================
   FOOTER SECTION
========================== */
.footer {
  background: #111;         /* Dark footer background */
  color: #fff;              /* White text color */
  padding: 40px 20px;
}

/* Container holding info + map */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;          /* Allows wrapping on small screens */
  gap: 20px;
}

/* ==========================
   LEFT SIDE (CONTACT INFO)
========================== */
.footer-info {
  flex: 1 1 300px;          /* Flexible width */
}

/* Logo / Company Name */
.footer-logo {
  font-size: 24px;
  color: #00bcd4;           /* Accent blue color */
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Paragraph text in footer */
.footer-info p {
  margin: 6px 0;
  font-size: 15px;
  color: #ddd;
}

/* Links (Phone, Email, Website) */
.footer-info a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-info a:hover {
  color: #00bcd4;           /* Hover accent */
}

/* Icons color */
.footer-info i {
  color: #00bcd4;
  margin-right: 8px;
}

/* Address line smaller color */
.address {
  font-size: 14px;
  color: #bbb;
}

/* ==========================
   RIGHT SIDE (MAP)
========================== */
.footer-map {
  flex: 1 1 400px;
}

/* ==========================
   BOTTOM COPYRIGHT LINE
========================== */
.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 10px;
  font-size: 13px;
  color: #aaa;
}

/* ==========================
   RESPONSIVE DESIGN
========================== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;   /* Stack vertically on mobile */
    align-items: center;
    text-align: center;
  }

  .footer-map iframe {
    width: 100%;
    height: 220px;
  }
}

html {
  scroll-behavior: smooth;
}

.customer-reviews {
    background: #f0f9ff;
    padding: 50px 5%;
    text-align: center;
}

.customer-reviews h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #1e3a8a;
}

.reviews-slider {
    position: relative;
    max-width: 600px; /* one review at a time */
    margin: auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    background: #fff;
    padding: 30px;
    min-width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: left;
    flex-shrink: 0;
    line-height: 1.6;
}

.review-user {
    font-weight: bold;
    margin-bottom: 10px;
}

.review-time {
    font-weight: normal;
    color: #777;
    font-size: 0.85em;
    margin-left: 5px;
}

.review-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(50,50,50,0.3);
    border: none;
    color: white;
    font-size: 2em;
    padding: 5px 12px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s;
}

.review-btn:hover {
    background-color: rgba(50,50,50,0.7);
}

.review-btn.prev {
    left: 10px;
}

.review-btn.next {
    right: 10px;
}

@media(max-width: 768px) {
    .reviews-slider {
        max-width: 90%;
    }

    .review-card {
        padding: 20px;
    }

    .review-btn {
        font-size: 1.5em;
    }
}
