* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 10px 20px;
}

.top-right {
    display: flex;
    align-items: center;
}

.get-quote-container {
    display: flex;
    align-items: center;
}

.get-quote-icon {
    width: 30px;
    height: 20px;
    margin-right: 3px;
   
}

.get-quote-text {
    background-color: #000;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

/* Social Links */
.social-links a img {
    width: 24px;
    height: 24px;
    margin: 0 0.5rem;
}


/* Social Links Container */
.social-links {
    display: flex;
    gap: 15px; /* Adds spacing between icons */
    align-items: center;
}

/* Ensure icons are vertically aligned */
.social-links a {
    display: flex;
    align-items: center;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    background-color: #fff;
    padding: 10px 0;
    height: 100px;
}

.logo {
    position: absolute;
    left: 2rem;
}

.logo img {
    width: 100px;
    height: auto;
    margin-bottom: 10px; /* Adds space below the logo */
    position: relative;
    top: -5px; /* Moves the logo slightly upwards */
}

.nav-links {
    list-style: none;
    display: flex;
    margin-top: 22px;
}

.nav-links li {
    position: relative;
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    padding: 8px 12px;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    color: #000;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%;
    left: 0;
    min-width: 200px;
}

.dropdown-menu li {
    padding: 10px 15px;
}

.dropdown-menu a {
    color: #000;
    display: block;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Contact Section */
.contact-section {
    width: 50%;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 1rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #0056b3;
    color: #fff;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

form button:hover {
    background-color: #003d82;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff !important;
    text-align: center;
    padding: 1rem 0;
}

footer a {
    color: #fff !important;
    text-decoration: none;
}

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

/* Image Gallery */
.image-gallery {
    text-align: center;
    padding: 2rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
    background-color: white;
}

.grid-item img {
    width: 100%;
    height: auto;
}

/* Sandstone Section */
#Sandstone-Exporter-From-India {
    background-color: #363636;
    width: 100%;
    height: 140px;
    text-align: center;
    line-height: 180px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

/* Privacy Policy */
#Privacy-policy img,
#Disclaimer img,
#Faq-Image img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 0;
}

/* Privacy Policy Container */
.privacy-policy-container {
    width: 60%;
    margin: 50px auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 1.6;
}

.privacy-policy-container h1, 
.privacy-policy-container h2 {
    text-align: center;
    color: black;
}

.privacy-policy-container ul {
    list-style: disc inside;
    margin: 1rem 0;
}

/* Disclaimer Section */
#Disclaimer-section {
    width: 100%;
    background-color: #fff;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.disclaimer-container {
    width: 60%;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.disclaimer-container h2 {
    text-align: center;
    font-size: 1.5rem;
    color: #0056b3;
    margin-bottom: 1rem;
}

.disclaimer-container ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.disclaimer-container li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* FAQ */
#FAQ {
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#FAQ h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p,
.faq-item li {
    font-size: 14px;
    line-height: 1.6;
}

/* Product Section */
.product-section {
    background-color: #fff;
    width: 80%;
    max-width: 900px;
    margin: 20px auto;
    padding: 15px;
    border: 2px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Product Container */
.product-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Product Image */
.product-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border: 2px solid #ddd;
    object-fit: cover;
}

/* Product Details */
.product-details {
    flex: 1;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    font-size: 14px;
    padding: 6px 10px;
    border-bottom: 1px solid #ddd;
}

th {
    text-align: left;
    font-weight: bold;
}

/* Sandstone Section */
.sandstone-section {
    background-color: #fff;
    width: 80%;
    max-width: 900px;
    margin: 20px auto;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 0px;  /* Square shape */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px; /* Keep text size small */
    line-height: 1.6;
}

/* Paragraph Styling */
.sandstone-section p {
    margin: 10px 0;
}

/* Bold Text */
.sandstone-section strong {
    font-weight: bold;
}

/* List Styling */
.sandstone-section ul {
    padding-left: 20px;
}

.sandstone-section li {
    margin: 5px 0;
}

.sandstone-section h3,
.sandstone-section h4
 {
    text-align: center; /* Ensures all text is centered */
}






/* CSR Section Styling */
.csr-section {
    padding: 20px; /* Reduce padding */
    background-color: white;
    
}

.csr-container {
    display: flex;
    align-items: center; /* Align image and text vertically */
    gap: 15px; /* Reduce space between image and text */
    max-width: 900px; /* Limit section width */
    margin: 0 auto; /* Center the section */
}

.csr-image img {
    max-width: 250px; /* Adjust image size */
    height: auto; 
}

.csr-content {
    font-size: 12px; /* Make text smaller */
    line-height: 1.5; /* Improve readability */
    max-width: 600px; /* Restrict text width */
}

.csr-content h2 {
    font-size: 18px; /* Reduce heading size */
    margin-bottom: 5px; /* Reduce space below heading */
}

.csr-content p {
    margin: 5px 0; /* Reduce spacing between paragraphs */
}

/* Responsive for Mobile */
@media screen and (max-width: 768px) {
    .csr-container {
        flex-direction: column;
        text-align: center;
    }

    .csr-content {
        padding-left: 0;
        margin-top: 10px;
    }

    .csr-image img {
        width: 60%;
    }
}




/* Styling for the scroller*/

div.scroll-container {
    background-color: white;
    overflow: auto;
    white-space: nowrap;
    padding: 10px;
  }
  
  div.scroll-container img {
    padding: 10px;
    height: 2%;
    width: 20%;
  }




  /* Section Styling */
  .info-section {
    width: 100vw; /* Full width of the viewport */
    padding: 20px 10vw; /* Left & Right padding for spacing */
    color: #000; /* Black text */
    background-color: white;
}

/* Heading Styling */
.info-section h2 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.info-section h3 {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Paragraph Styling */
.info-section p {
    font-size: 12px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 15px;
}


.full-width-image {
    width: 100vw;  /* Ensures the image spans the full width of the viewport */
    max-width: 100%;  /* Prevents overflow issues */
    height: auto;  /* Maintains the aspect ratio */
    display: block;  /* Removes unwanted spacing below */
    object-fit: cover;  /* Ensures the image covers the area nicely */
}

/* Adjust image height */
.image-container {
    height: 300px;  /* Change this value to adjust the image height */
    overflow: hidden;  /* Ensures no extra content overflows */
}






/* Main Wrapper */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 95%; /* Full width without touching edges */
    max-width: 1400px; /* Limits width on larger screens */
    margin: 50px auto; /* Centers the block */
    gap: 30px;
}

/* Contact Info (Left Side) */
.contact-info {
    width: 30%;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 400px;
    margin-left: 50px; /* Moves Contact Info closer to Contact Form */
}

/* Contact Form (Right Side) */
.contact-form {
    width: 60%;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 350px;
    margin-top: 38px;

}

/* Form Elements 
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}*/


/* Contact Form */
.contact-form {
    width: 60%;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Row for Name & Email */
.form-row {
    display: flex;
    gap: 10px; /* Space between Name and Email */
}

/* Name & Email Fields */
.form-row input {
    flex: 1; /* Both fields take equal width */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Message Field (Wider) */
.contact-form textarea {
    width: 100%;
    height: 180px; /* Increased height */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
}

/* Send Button */
.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #656d78;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .form-row {
        flex-direction: column; /* Stack Name & Email on small screens */
    }
}








/* Send Button */
.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #656d78;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info, .contact-form {
        width: 90%;
    }
}



.location {
    display: flex;            /* Enables flexbox */
    align-items: center;      /* Aligns items vertically */
    gap: 10px;               /* Space between icon and text */
    font-size: 16px;          /* Adjust text size */
}

.location svg {
    flex-shrink: 0;           /* Prevents shrinking */
    width: 24px;              /* Adjust width */
    height: 24px;             /* Adjust height */
    fill: black;              /* Ensures color stays black */
}

.location span {
    display: flex;
    flex-direction: column;   /* Makes sure text stacks correctly */
    line-height: 1.4;         /* Adjusts text spacing */
}



.email {
    display: flex;            /* Enables flexbox */
    align-items: center;      /* Aligns items vertically */
    gap: 10px;               /* Space between icon and text */
    font-size: 16px;          /* Adjust text size */
}

.email svg {
    flex-shrink: 0;           /* Prevents shrinking */
    width: 24px;              /* Adjust width */
    height: 24px;             /* Adjust height */
    fill: black;              /* Ensures color stays black */
}

.email span {
    display: flex;
    flex-direction: column;   /* Ensures text aligns properly */
    line-height: 1.4;         /* Adjusts text spacing */
}




.phone {
    display: flex;            /* Enables flexbox */
    align-items: center;      /* Aligns items vertically */
    gap: 10px;                /* Space between icon and text */
    font-size: 16px;          /* Adjust text size */
}

.phone svg {
    flex-shrink: 0;           /* Prevents shrinking */
    width: 24px;              /* Adjust width */
    height: 24px;             /* Adjust height */
    fill: black;              /* Ensures color stays black */
}

.phone span {
    display: flex;
    flex-direction: column;   /* Ensures text aligns properly */
    line-height: 1.4;         /* Adjusts text spacing */
}