/* Global Styles */
body {
    font-family:  sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #313538, #0a4bac );
}

header img {
    width: 120px;
    height: 60px;
    border-radius: 5px;
    padding: 5px;
    display: block;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

nav a:hover {
    color: #f0a500;
}

/* Hero Section */
.hero {
    text-align: center;
    background-color: #f1f1f1;
    padding: 40px 0;
}

.hero img {
    max-width: 100%;
    height: auto;
}

/* Offerings Section */
.offerings {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    background: #ffffff;
    gap: 30px;
}

.offerings .item {
    background: rgb(165, 165, 165);
    padding: 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 45%; /* 2 items per row on larger screens */
    text-align: center;

}



h2{
    text-align: center;
}

.offerings .item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.offerings h3 {
    font-size: 2rem;
    color: #005bb5;
    margin-bottom: 20px;
    text-align: center;
}

.offerings .item h4 {
    font-size: 1.5rem;
    margin-top: 10px;
}

.offerings .item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* About Section */
/* About Section */
.about {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
}

.about h3 {
    font-size: 2rem;
    color: #005bb5;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin: 20px 0;
}

.know-more-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #005bb5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.know-more-link:hover {
    background-color: #f0a500;
}

/* About2 Section (Image Section) */
.about2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.about2-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Security & Assurance Section */
.security {
    padding: 40px 20px;
    background-color: #f1f1f1;
    text-align: center;
}

.security h3 {
    font-size: 2rem;
    color: #005bb5;
    margin-bottom: 20px;
}

.security p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin: 20px 0;
}

.order-now-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #005bb5;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.order-now-button:hover {
    background-color: #f0a500;
}

/* Basic reset for padding and margin */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Contact section styling */
  .contact-info {
    background-color: #f4f4f4; /* Light background for the contact section */
    padding: 40px 20px; /* Padding around the section */
    text-align: center; /* Center the content */
    border-radius: 10px; /* Rounded corners for the contact section */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Shadow for the section */
  }
  
  .contact-info button {
    background-color: #cfcfcf; /* White background for the buttons */
    border: 2px solid #333; /* Border color for the buttons */
    border-radius: 8px; /* Rounded corners for the buttons */
    margin: 10px; /* Space between the buttons */
    padding: 15px 25px; /* Padding inside the buttons */
    cursor: pointer; /* Change cursor to pointer on hover */
    transition: all 0.3s ease; /* Smooth transition on hover */
  }
  
  .contact-info button:hover {
    transform: translateY(-5px); /* Lift the button on hover */
    box-shadow: 0 16px 25px rgba(0, 0, 0, 0.15); /* Shadow on hover */
  }
  
  .contact-info a {
    text-decoration: none; /* Remove underline from links */
    color: #333; /* Dark color for the text */
    font-size: 18px; /* Font size for the text */
    font-family: 'Arial', sans-serif; /* Font style */
    font-weight: bold; /* Make the text bold */
  }
  
  .contact-info .phone {
    color: #4CAF50; /* Green color for the call button */
  }
  
  .contact-info .whatsapp {
    color: #25D366; /* WhatsApp green color */
  }
  
  .contact-info .phone:hover {
    color: #388E3C; /* Darker green for hover effect */
  }
  
  .contact-info .whatsapp:hover {
    color: #128C7E; /* Darker WhatsApp green for hover effect */
  }
  

/* Responsive Styles */
@media (max-width: 768px) {
    .about h3, .security h3 {
        font-size: 1.8rem;
    }

    .about p, .security p {
        font-size: 1rem;
    }

    .know-more-link, .order-now-button {
        padding: 10px 18px;
        font-size: 1rem;
    }

    .about2 {
        padding: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .about h3 {
        font-size: 1.6rem;
    }

    .about p, .security p {
        font-size: 0.9rem;
    }

    .know-more-link, .order-now-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .about2-img {
        max-width: 95%; /* Ensure the image fits well on smaller screens */
    }
}

/* Basic reset for padding and margin */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* LPG Express Online section */
  .lpg-express-online {
    background-color: #f9f9f9; /* Light background for the section */
    padding: 50px 20px; /* Padding around the section */
    text-align: center; /* Center text inside */
    border-radius: 10px; /* Rounded corners for the section */
    margin: 30px auto; /* Center the section horizontally */
  }
  
  .lpg-container {
    display: flex; /* Flexbox layout to place text and images side by side */
    justify-content: space-between; /* Space between text and image gallery */
    align-items: center; /* Vertically align the items */
    max-width: 1200px; /* Limit container width */
    margin: 0 auto; /* Center container */
    gap: 30px; /* Space between text and image gallery */
  }
  
  .lpg-text-content {
    flex: 1; /* Text section takes available space */
    text-align: left; /* Align text to the left */
  }
  
  .lpg-text-content h3 {
    font-size: 30px;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
  }
  
  .lpg-text-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .lpg-buttons a {
    text-decoration: none;
    color: #fff;
    background-color: #4CAF50; /* Green color for the buttons */
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 18px;
    margin-right: 15px;
    transition: background-color 0.3s ease;
  }
  
  .lpg-buttons a:hover {
    background-color: #388E3C; /* Darker green on hover */
  }
  
  .lpg-image-gallery {
    display: grid; /* Create a grid layout for the images */
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 15px; /* Space between images */
    max-width: 450px; /* Limit the max width for the images */
  }
  
  .lpg-gallery-image {
    width: 100%; /* Make images fill the grid container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners for the images */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Shadow around images */
    object-fit: cover; /* Ensure images cover their container without distortion */
  }
  
  @media (max-width: 768px) {
    .lpg-container {
      flex-direction: column; /* Stack text and images vertically on smaller screens */
      text-align: center; /* Center the text on smaller screens */
    }
  
    .lpg-image-gallery {
      grid-template-columns: 1fr; /* Stack images in a single column on small screens */
    }
  
    .lpg-gallery-image {
      max-width: 100%; /* Ensure images are responsive on smaller screens */
    }
  }
  

/* Basic reset for padding and margin */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Cylinder delivery section styling */
  .cylinder-delivery {
    background-color: #fffafa; /* White background for the section */
    padding: 50px 20px; /* Padding around the section */
    text-align: center; /* Centering the text */
    border-radius: 10px; /* Rounded corners */
    border-color: #001f4d;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Shadow for the section */
    max-width: 800px; /* Limiting max-width */
    margin: 30px auto; /* Centering the section horizontally with margin */
  }
  
  .cylinder-delivery h3 {
    font-size: 28px;
    color: #333; /* Dark color for the title */
    margin-bottom: 20px; /* Space below the title */
    font-family: 'Arial', sans-serif; /* Font for the heading */
  }
  
  .cylinder-delivery p {
    font-size: 18px;
    color: #555; /* Lighter color for the paragraph text */
    line-height: 1.6; /* Better readability with line spacing */
    margin-bottom: 20px; /* Space between paragraphs */
    font-family: 'Arial', sans-serif; /* Font for the paragraphs */
  }
  
  .cylinder-delivery p:last-child {
    margin-bottom: 0; /* Remove bottom margin from the last paragraph */
  }
  
  .cylinder-delivery a {
    color: #4CAF50; /* Green color for any links */
    text-decoration: none; /* Remove underline from links */
    font-weight: bold;
  }
  
  .cylinder-delivery a:hover {
    color: #388E3C; /* Darker green on hover for links */
    text-decoration: underline; /* Underline effect on hover */
  }
  

/* Basic reset for padding and margin */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .fiber-features {
    background-color: #e9f7f6; /* Light blue background to make the section stand out */
    padding: 50px 20px; /* Padding around the section */
    text-align: center; /* Centering the text */
  }
  
  .fiber-features h3 {
    font-size: 30px;
    color: #333; /* Dark color for the title */
    margin-bottom: 40px; /* Space below the heading */
    font-family: 'Arial', sans-serif; /* Font for the heading */
  }
  
  .feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 30px; /* Spacing between items */
    background-color: #001f4d;
  }
  
  .feature-item {
    background-color: #ffffff; /* White background for each item */
    padding: 25px;
    border-radius: 50px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
  }
  
  .feature-item h4 {
    font-size: 22px;
    color: #333; /* Dark color for the subtitle */
    margin-bottom: 15px; /* Space between the subtitle and the description */
    font-family: 'Arial', sans-serif; /* Font for the subtitle */
  }
  
  .feature-item p {
    font-size: 16px;
    color: #555; /* Lighter color for the description */
    line-height: 1.6; /* Increased line height for better readability */
  }
  
  .feature-item:hover {
    transform: translateY(-10px); /* Slightly lift the item on hover */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); /* Darker shadow on hover */
  }
  

/* Basic reset for padding and margin */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .info-section {
    background-color: #f8f8f8; /* Light gray background */
    padding: 30px; /* Space inside the section */
    border-radius: 8px; /* Rounded corners for a soft look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    max-width: 800px; /* Limit max width */
    margin: 20px auto; /* Centering the section horizontally */
  }
  
  .info-section h3 {
    font-size: 26px;
    color: #333; /* Dark text for the title */
    margin-bottom: 15px; /* Space between title and list */
    font-family: 'Arial', sans-serif; /* Font style */
  }
  
  .info-section ul {
    list-style-type: disc; /* Standard bullet points */
    margin-left: 20px; /* Indentation for list */
  }
  
  .info-section li {
    font-size: 16px;
    color: #555; /* Lighter text color for the list items */
    margin-bottom: 8px; /* Space between each list item */
    line-height: 1.6; /* Better readability with line spacing */
    font-family: 'Arial', sans-serif; /* Font style */
  }
  
  .info-section li br {
    margin: 10px 0; /* Space between break tags */
  }
  

  /* Basic reset for padding and margin */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .benefits-section {
    background-color: #f4f4f4; /* Light background for the section */
    padding: 50px 20px; /* Padding around the section */
    text-align: center; /* Centering the text */
  }
  
  .benefits-section h3 {
    font-size: 30px;
    color: #333; /* Dark color for the title */
    margin-bottom: 40px; /* Space below the heading */
    font-family: 'Arial', sans-serif; /* Font for the heading */
  }
  
  .benefit-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px; /* Spacing between items */
  }
  
  .benefit-item {
    background-color: #fff; /* White background for each item */
    padding: 20px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
  }
  
  .benefit-item h4 {
    font-size: 22px;
    color: #333; /* Dark color for the subtitle */
    margin-bottom: 10px; /* Space between the subtitle and the description */
    font-family: 'Arial', sans-serif; /* Font for the subtitle */
  }
  
  .benefit-item p {
    font-size: 16px;
    color: #555; /* Lighter color for the description */
    line-height: 1.6; /* Increased line height for better readability */
  }
  
  .benefit-item:hover {
    transform: translateY(-10px); /* Slightly lift the item on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Darker shadow on hover */
  }
  


/* Footer */
footer {
    background: linear-gradient(135deg, #001f4d, #000000);
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #00c6ff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 20px;
    }

    .offerings .item {
        width: 90%; /* 1 item per row */
    }

    .hero {
        padding: 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        min-width: 100%;
        margin-bottom: 20px;
    }
}

/* Small screens (mobile) */
@media (max-width: 480px) {
    .hero img {
        width: 100%;
    }

    .offerings .item {
        padding: 15px;
        width: 100%; /* Full width for mobile */
    }

    .offerings h3 {
        font-size: 1.5rem;
    }

    .offerings .item h4 {
        font-size: 1.3rem;
    }

    .offerings .item p {
        font-size: 0.9rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }
}

/* Logo Styles */
.logo {
    width: 60px; /* Exact width of the logo */
    height: 50px; /* Exact height of the logo */
    border-radius: 5px; /* Slightly rounded corners (optional) */
    padding: 5px; /* Space between border and logo */
    display: block; /* Makes it easier to center */
}
