/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
overflow-x: hidden; /* Prevent horizontal scroll */
}
/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 5px 20px;
  background: linear-gradient(135deg, #b00 65%, #333 35%);
  color: white;
  font-size: 16px;
  font-weight: 400;
}

.top-bar .social-links a {
  color: white;
  text-decoration: none;
  margin-left: 5px;
  margin-top: 50px;
  font-size: 20px;
  line-height: 1;
}

/* Main Header */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-header h1 {
  font-size: 22px;
  color: #b00;
  text-align: center;
}

.logo {
  height: 50px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.toggle-btn {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu ul {   
    display: none;
    flex-direction: column;
    background:#b00;
    position: absolute;
    top: 70px;
    right: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 200px;
    padding: 10px;
    border-radius: 4px;
    z-index: 1000;
  }
  .nav-menu ul li a{
      color: white;
      font-size: 20px;
  }
  .nav-menu ul.active {
    display: flex;
  }

  .toggle-btn {
    display: block;
  }
}

.fixed-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.fixed-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.fixed-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.call {
  background-color: #34c759;
  color: white;
}

.whatsapp {
  background-color: #25d366;
  color: white;
}

.email {
  background-color: #007bff;
  color: white;
}

.fixed-icons a i {
  font-size: 24px;
}

.pic{
  background-image: url('../images/cnt.jpg');
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  text-align: center;
  color: #f3f3f3;
}
.pic h3{
  font-size: 3rem;
}
.containerrex {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border: 1px solid #ddd;
}

.card h2 {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 10px;
}

.card hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 10px 0;
}

.card p {
  margin: 10px 0;
  font-size: 1rem;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  background-color: #ff5252;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.card a:hover {
  background-color: #e04a4a;
}

@media (max-width: 768px) {
  .card h2 {
      font-size: 1.25rem;
  }

  .card p {
      font-size: 0.9rem;
  }

  .card a {
      font-size: 0.9rem;
      padding: 8px 15px;
  }
}


/* Quote Section Styles */
.quote-section {
background: linear-gradient(135deg, #b00 50%, #333 50%);
color: white;
padding: 50px 10px;
display: flex;
align-items: center;
justify-content: center;
}

.quote-section h2 {
color: white;
text-align: center;
font-size: 30px;
margin-bottom: 10px;
}

.quote-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
align-items: center;
}

#quoteForm {
display: flex;
flex-direction: column;
background-color: white;
padding: 15px;
border-radius: 15px;
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

#quoteForm label {
color: #333;
font-weight: bold;
margin-bottom: 8px;
}

#quoteForm input, #quoteForm textarea {
padding: 10px;
margin-bottom: 20px;
border: 2px solid #b33;
border-radius: 10px;
font-size: 16px;
}

#quoteForm input:focus, #quoteForm textarea:focus {
outline: none;
border-color: #b33;
}

.quote-btn {
background-color: #b33;
color: white;
border: none;
padding: 12px 20px;
border-radius: 25px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.quote-btn:hover {
background-color: #e03e20;
}

/* Right Column: Visual/Testimonial */
.quote-visual {
text-align: center;
}

.quote-visual img {
width: 70%;
border-radius: 15px;
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
}

.quote-visual p {
font-size: 16px;
color: white;
font-style: italic;
}

/* Responsive Styles for Quote Section */
@media (max-width: 768px) {
.quote-content {
  grid-template-columns: 1fr;
  text-align: center;
}

.quote-section {
  padding: 50px 20px;
}
}



/* Container with rounded corners, padding, and background */
.scroll-container {
width: 70%;
margin-left: 10px;
margin-top: 20px;
margin-bottom: 20px;
max-height: 300px; /* Reduced height for a more compact look */
overflow-y: auto; /* Enables vertical scrolling */
border: 2px solid #007bff; /* Border outside the container */
border-radius: 12px; /* Smooth rounded corners */
background-image:url('../images/scrollbg.jpg');
padding: 8px; /* Slightly reduced padding */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
transition: box-shadow 0.3s ease-in-out; 
}

/* Remove list styling */
.scroll-container ul {
list-style-type: none;
padding: 0;
margin: 0;
}

/* List item styling */
.scroll-container li {
margin: 8px 0; /* More compact margin between list items */
transition: transform 0.3s ease; /* Smooth transform effect */
}

/* Link styling */
.scroll-container a {
text-decoration: none; /* Remove underline */
color: #333; /* Default text color */
font-size: 14px; /* Reduced font size for a cleaner look */
font-weight: 500; /* Semi-bold text */
display: block;
padding: 10px 12px;
border-radius: 25px; /* Rounded corners for links */
transition: all 0.3s ease-in-out; /* Smooth transition effect */
}

/* Hover effect for links */
.scroll-container a:hover {
background-color: #007bff; /* Background color changes */
color: #fff; /* Text color changes */
transform: scale(1.05); /* Slight zoom effect */
}

/* Styling for the scrollbar */
.scroll-container::-webkit-scrollbar {
width: 15px; /* Wider scrollbar */
}

.scroll-container::-webkit-scrollbar-thumb {
background-color: #007bff; /* Color of the scrollbar thumb */
border-radius: 10px; /* Rounded corners for the scrollbar thumb */
transition: background-color 0.3s ease; /* Smooth color transition */
}

.scroll-container::-webkit-scrollbar-thumb:hover {
background-color: #0056b3; /* Darker color when hovering */
}

.scroll-container::-webkit-scrollbar-track {
background: #f4f4f4; /* Light background for the track */
border-radius: 10px; /* Rounded corners for the track */
}

.scrl{
background-image: url('../images/map.jpg');
margin: 0;
padding: 0;
box-sizing: border-box;
display: flex; /* Use Flexbox for alignment */
flex-direction: column; /* Stack elements vertically */
border: 1px solid rgb(245, 243, 243);
} 


.lead{
background-color: white;
margin:0 0 10px 0;
}
.lead h2{
margin: 0;
padding: 0;
font-size: 24px;
}


.addressee {
background-image:url('../images/scrollbg.jpg'); 
text-align: center;
}
.addressee h3{
color: #000;
font-size: xxx-large;
}
.addressee p{
color: #000;
}
#map {
width: 100%;
height: 400px;
margin-top:10px;

}

iframe {
border: 0; /* Separate border styling */
margin: 0;
padding: 0;
}

.about-sectiontwo {
background: linear-gradient(135deg, #b00 50%, #333 50%);
color: #fff;
padding: 20px;
}

.containertwo {
max-width: 1200px;
margin: 0 auto;
}
.text-content p{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.text-content h2 {
margin-top: 10px;
color: yellow;
font-size: 2rem;
}

.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
margin: 20px 0;
text-align: center;
}

.stat-item {
background: rgba(255, 255, 255, 0.2);
padding: 20px;
border-radius: 8px;
}

.stat-item .icon {
font-size: 3rem;
}

.info-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.info-cards p{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.card {
background: rgba(255, 255, 255, 0.1);
padding: 15px;
border-radius: 8px;
}

.card h3 {
font-size: 1.5rem;
}

.card a {
color: yellow;
text-decoration: none;
}

/*image our client*/
.client{
text-align: center;
margin: 5px 0;
}
.cl{
max-width: 100%;
height: auto;
width: 600px;
}
@media (max-width:768px) {
.cl{
  width:400px;
} 
}
@media (max-width:480px) {
.cl{
  width:300px;
}
}
.addressee {
  background-image:url('../images/scrollbg.jpg'); 
  text-align: center;
  }
  .addressee h3{
  color: #000;
  font-size: xxx-large;
  }
  .addressee p{
  color: #000;
  }
  #map {
  width: 100%;
  height: 400px;
  margin-top:10px;
  
  }
  
  iframe {
  border: 0; /* Separate border styling */
  margin: 0;
  padding: 0;
  }
  

/* General Footer Styling */
footer {
  background:linear-gradient(135deg, #b00 50%, #333 50%);
  color: #fff;
  padding: 40px 0;
  font-family: 'Arial', sans-serif;
  text-align: left;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.footer-section h3,
.footer-section h4 {
  color: #e1ff00;
  margin-bottom: 10px;
}

.footer-section p, 
.footer-section ul {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section a {
  color: #00c8ff;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: #1a1a1a;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
      grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-container {
      grid-template-columns: 1fr;
  }

  .footer-section {
      margin-bottom: 20px;
  }

  .footer-bottom {
      font-size: 12px;
  }
}
