/* 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  
  .services {
    padding: 50px 20px;
  }
  
  .services h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #2d89ef;
  }
  
  .card p {
    font-size: 1rem;
  }
  
  .convenience {
    background: #f1f1f1;
    padding: 50px 20px;
    text-align: center;
  }
  
  .convenience h2 {
    margin-bottom: 20px;
  }
  
  .convenience ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .convenience li {
    background: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background-color 0.3s;
  }
  
  .convenience li:hover {
    background: #2d89ef;
    color: #fff;
    transform: translateY(-5px);
  }
  
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
  }
  
  footer p {
    margin: 0;
  }
   */




   /* my css code  */


   /* Base Styles */


   


a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

h1, h2, h3 {
  font-weight: 700;
  line-height:1.2;
  
}

/* Header */
header {
  background-color: #fff;
  padding: clamp(10px, 2vw, 20px) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(99, 96, 96, 0.553);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 50px;
  width: 80px;
  object-fit: fill;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}

.right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.image_container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.image_container span{
  color: #ab3238;
  font-weight: 600;
}

.toggle-btn {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  padding: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 1001;
  position: relative;
}

.toggle-btn:hover {
  color: #ab3238;
  transform: scale(1.1);
}

nav {
  display: flex !important;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  padding: 10px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ab3238;
}

/* Search Form */
form {
  position: relative;
  width: clamp(200px, 30vw, 300px);
  display: flex;
  align-items: center;
}

input[type="search"] {
  width: 100%;
  padding: clamp(6px, 1.5vw, 10px) 15px;
  border: 1px solid rgba(72, 62, 62, 0.311);
  border-radius: 25px 0 0 25px;
  outline: none;
  font-size: clamp(14px, 3vw, 16px);
  transition: all 0.3s ease;
}

input[type="search"]:focus {
  border-color: #ab3238;
  box-shadow: 0 0 5px rgba(171, 50, 56, 0.3);
}

form button {
  padding: clamp(6px, 1.5vw, 10px) 15px;
  background-color: #ab3238;
  color: #fff;
  border: none;
  border-radius: 0 25px 25px 0;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

form button:hover {
  background-color: #8a272e;
  transform: scale(1.05);
}

label {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    position: relative;
    justify-content: space-between;
  }
  
  .toggle-btn {
    display: flex !important;
  }

  nav {
    display: none !important;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  nav.active {
    display: block !important;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  nav ul li {
    margin: 15px 0;
  }

  nav ul li a {
    display: block;
    padding: 10px;
  }

  form {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 10px;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #ab3238, #c0696e);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}


/* Services Section */
.services{
  padding: 64px 10px;
  background-color: #fff;
}

.services h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 48px;
  color: #1f2937;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid #2563eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #eff6ff;
  border-radius: 8px;
  margin-bottom: 16px;
}

.icon-container i {
  color: #2563eb;
  font-size: 32px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1f2937;
}

.card p {
  color: #6b7280;
}

/* Convenience Section */
.convenience {
  padding: 64px 0;
  background-color: #f3f4f6;
}

.convenience h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 48px;
  color: #1f2937;
}

.convenience-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.convenience-item {
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.convenience-item .icon-container {
  background-color: #eff6ff;
  margin-bottom: 16px;
}

.convenience-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1f2937;
}

.convenience-item p {
  color: #6b7280;
}

/* Call to Action */
.cta {
  background: linear-gradient(to right, #2563eb, #4f46e5);
  color: white;
  padding: 64px 0;
  text-align: center;
}

.cta h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.cta p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta button {
  background-color: white;
  color: #2563eb;
  border: none;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.cta button:hover {
  background-color: #f3f4f6;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 48px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #4b5563;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 8px;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #9ca3af;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #4b5563;
  color: #9ca3af;
}



@media (max-width: 480px) {
  .card, .convenience-item {
    padding: 16px;
  }
  
  .icon-container {
    width: 48px;
    height: 48px;
  }
  
  .icon-container i {
    font-size: 24px;
  }
  
  .card h3, .convenience-item h3 {
    font-size: 18px;
  }
  
  .cta button {
    padding: 10px 24px;
    font-size: 16px;
  }
}








@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", serif;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
  overflow-x: hidden;
  margin: auto;
}


/* Carousel Styles */
.carousel-section {
  width: 100%;
 
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  margin: 0 auto;
  
}
.contact-Number{
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 13px;
  font-size: 15px;
  margin-right: 10px;
  color: #333;
  font-weight: 500;
  width: 88%;

  
}
.contact-Number span{
  color:#8a272e;
  
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  
}

.carousel-track {
  position: relative;
  height: 450px;
  transition: transform 0.5s ease-in-out;
  display: flex;
  height: 550px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit:inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.carousel-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.carousel-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
  background-color: #ab3238;;
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s;
}

.carousel-btn:hover {
  background-color: #c83038;;
}

.carousel-tag{
  color:white;
  text-decoration: none;
  cursor: pointer;
}


.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.3s;
}


.carousel-control:hover {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-control i {
  color: white;
  font-size: 24px;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background: white;
}



/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(15px, 5vw, 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Banner Image */
.ab {
  width: 60%;
  max-height: 60vh;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}

.ab:hover {
  opacity: 0.9;
}

/* Headings */
h1 {
  font-size: clamp(20px, 5vw, 30px);
  text-align: center;
  margin: clamp(20px, 5vw, 40px) 0;
  color: #333;
  position: relative;
}

h1::after {
  content: '';
  width: 50px;
  height: 3px;
  background-color: #ab3238;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Card Section */
.images-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 25vw, 250px), 1fr));
  gap: clamp(15px, 3vw, 20px);
  padding: clamp(15px, 5vw, 20px);
}

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #fefefe;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.card:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.services h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.service-description {
  max-width: 90%;
  text-wrap: wrap;
  font-size: 20px;
  color: #555;
  margin-left: 10%;
}


.card h3 {
  margin: 10px 0 5px;
  font-size: clamp(16px, 4vw, 18px);
  color: #333;
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: #ab3238;
}

.card p {
  font-size: clamp(12px, 3vw, 14px);
  color: #666;
  padding: 0 10px 10px;
}

/* Footer (Imported from footer.css) */
.footer-dark {
  padding: clamp(30px, 6vw, 50px) 0;
  color: #f0f9ff;
  background-color: #282d32;
}

.footer-dark h3 {
  margin: 0 0 12px;
  font-weight: bold;
  font-size: clamp(14px, 3vw, 16px);
}

.footer-dark ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: clamp(12px, 3vw, 14px);
}

.footer-dark ul a {
  color: inherit;
  opacity: 0.6;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-dark ul a:hover {
  opacity: 0.9;
  color: #ab3238;
}

.footer-dark .item.text p {
  opacity: 0.6;
  font-size: clamp(12px, 3vw, 13px);
}

.footer-dark .item.social > a {
  font-size: 20px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
  margin: 0 8px;
  color: #fff;
  opacity: 0.75;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-dark .item.social > a:hover {
  opacity: 0.9;
  transform: scale(1.2);
}

.footer-dark .copyright {
  text-align: center;
  padding-top: 24px;
  opacity: 0.3;
  font-size: 13px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer-dark .item.social {
    text-align: center;
    margin-top: 20px;
  }
}



@media (max-width: 480px) {
  .container {
   
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 10px;
  }

  .card img {
    height: 150px;
  }

  .footer-dark .item:not(.social) {
    text-align: center;
    padding-bottom: 20px;
  }

  .footer-dark .item.text {
    margin-bottom: 0;
  }
}



/* Responsive Design */
@media (max-width: 992px) {
  
  
  .carousel-track {
    height: 400px;
  }
  
  .carousel-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .toofle{
    display: flex;
   
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    width: 100%;
  }
  .contact-Number{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    font-size: 14px;
    margin-right: 10px;
    color: #333;
    font-weight: 500;
    width: 88%;
  
    
  }
  .carousel-track {
    height: 350px;
  }
  
  .carousel-content h2 {
    font-size: 1.75rem;
  }
  
  .carousel-content p {
    font-size: 1rem;
  }
  
  .carousel-control {
    width: 35px;
    height: 35px;
  }
  
  
}

@media (max-width: 480px) {
  .carousel-track {
    height: 300px;
  }
  
  .carousel-content h2 {
    font-size: 1.5rem;
  }
  
  .carousel-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .carousel-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .carousel-control {
    width: 30px;
    height: 30px;
  }
  
  .carousel-control i {
    font-size: 18px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(15px, 5vw, 20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Override semantic element display */
article, aside, figcaption, figure, footer, header, hgroup, main, section {
    display: block;
}