@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }


body {
    line-height: 1;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color:#faf7f1;
    
}

img {
  vertical-align: middle;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wrapper {
  max-width: 10000px;
  margin-left: 30px;
  margin-right: 30px;

}

.sr-only {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.site-logo {
  width: 220px; /* Set a fixed width */
  height: auto; /* Adjust height proportionally */
  animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


/* Container for email and policies buttons */
.site-header__end.top {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  padding: 10px;
  position: relative;
}


.phone-link {
  text-decoration: none;
  color: #e34400; /* Optional: A subtle blue color like Apple's site */
  font-weight: 500;
}

.phone-link:hover {
  text-decoration: underline;
}

.email-link {
  text-decoration: none;
  color: #e33900; /* Optional: A subtle blue color like Apple's site */
  font-weight: 500;
}

.email-link:hover {
  text-decoration: underline;
}


/* Style for the button containers */
/* Add a 3D perspective to the container */
.button-container-wrapper {
  perspective: 1000px; /* Control the intensity of the 3D effect */
}

.button-container {
  display: inline-flex;
  align-items: center;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 12px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d; /* Enable 3D transformations */
  animation: fadeInUp 1s ease forwards;
}

.button-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: rgba(0, 123, 255, 0.2);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.button-container:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.button-container:hover {
  background-color: #e0e0e0;
  transform: rotateY(15deg) rotateX(10deg) scale(1.05); /* 3D rotation */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhanced shadow for 3D effect */
}

.button-container .icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.button-container:hover .icon {
  transform: rotate(20deg) scale(1.2);
}

.button-container .icon svg {
  width: 32px;
  height: 32px;
  fill: #fe413f;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.button-container:hover .icon svg {
  fill: #fe413f;
}

.button-container .text-container {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.button-container:hover .text-container {
  opacity: 0.8;
}

.button-container .text {
  font-size: 16px;
  color: #333;
  transition: transform 0.3s ease;
}

.button-container:hover .text {
  transform: translateZ(30px); /* 3D translation */
}

.button-container .email-address,
.button-container .phone-number {
  font-size: 14px;
  color: #555;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive adjustments for tablets */
@media (max-width: 1024px) {
  .button-container {
    padding: 14px;
  }

  .button-container .icon svg {
    width: 28px;
    height: 28px;
  }

  .button-container .text {
    font-size: 15px;
  }

  .button-container .email-address,
  .button-container .phone-number {
    font-size: 13px;
  }
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
  .site-header__end.top {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .button-container {
    width: auto;
    max-width: none;
    margin-bottom: 0;
    padding: 10px;
  }

  .button-container .text-container {
    display: none;
  }

  .button-container .icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .site-logo {
      width: 150px; /* Smaller width for tablets and smaller screens */
  }
}

@media (max-width: 480px) {
  .site-logo {
      width: 150px;
  }
  .site-header__wrapper {
    padding: 2px;
  }
}

.site-header__top {
    background-color: #dfd9d4;
    animation: fadeInDown 1s ease forwards;
}

.site-header__top ul {
    display: flex;
}

.site-header__top li:not(:last-child) {
    margin-right: 1.5rem;
}

.site-header__top .site-header__start {
    display: none;
}

.site-header__bottom {
  position: relative;
  background-color: #fe413f;
  animation: fadeInDown 1s ease forwards;
  height: 70PX;
  align-items: center; /* Vertically center contents */
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 480px) {
  .site-header__bottom {
      background-color: #f43a3a; /* Adjust background color for mobile if needed */
      font-size: 14px; /* Adjust font size for mobile */
      /* You can add more mobile-specific styles here */
  }
}


@media (max-width: 939px) {
    .site-header__bottom .site-header__end {
        order: -1;
    }
}

.site-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInUp 1s ease forwards;
    padding-top: 10px;
    
}

.site-header-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeInUp 1s ease forwards;
  
}

@media (min-width: 940px) {
    .site-header__wrapper {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.site-header__end {
    display: flex;
    align-items: center;
    animation: fadeInRight 1s ease forwards;
}

.site-header__end.top > * + * {
    margin-left: 0.5rem;
}

@media (min-width: 940px) {
    .site-header__end.bottom > *:not(:last-child) {
        margin-right: 1.5rem;
    }
}

.site-header__end.bottom svg {
    width: 22px;
    height: 22px;
}

@media (min-width: 940px) {
    .nav__wrapper {
        display: flex;
        animation: fadeIn 1s ease forwards;
        margin-top: -5px; /* Move 4px upwards */
    }
}

@media (max-width: 939px) {
    .nav__wrapper {
        position: absolute;
        right: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        max-height: 330%;
        background-color:#fc2306;
        opacity: 0;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        margin-left: 29px;
        margin-top: 3px;
        
    }
    .nav__wrapper.active {
        visibility: visible;
        animation: fadeInUp 1s ease forwards;
    }
}


.nav__item:not(:last-child) {
    margin-right:2rem;
}

.nav__item a {
    display: block;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: .8rem;
}

@media (max-width: 939px) {
    .nav__item a {
        padding: 1rem;
      
    }
}

.nav__item svg {
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    margin-right: 1rem;
}

@media (min-width: 940px) {
    .nav__item svg {
        display: block;
        margin: 0 auto 0.5rem;
    }
}

.nav__item.active a {
    border-left-color: #ADD8E6; /* light blue */
}

@media (min-width: 800px) {
    .nav__item.active a {
        border-bottom-color: #ADD8E6; /* light blue */
    }
}
/* Basic styles for the toggle button */
/* Initially hide the burger button */
.nav__toggle {
  display: none;
}

/* Show the burger button only on mobile screens */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex; /* Flex display for proper alignment */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    position: relative;
    z-index: 1000; /* Ensure the toggle button is above other elements */
  }
}

/* Styling for the lines in the burger button */
/* Adjust the size of the burger button */
.nav__toggle {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 48px; /* Adjusted width */
  height: 60px; /* Adjusted height */
}

.nav__toggle-line {
  display: block;
  width: 100%;
  height: 4px;
  margin: 6px 0;
  background-color: #fbf5f5; /* Make sure this matches your color scheme */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile view */
@media screen and (max-width: 767px) {
  .nav__toggle {
    display: block;
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

/* Container for the social media icons */
.site-header__end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
}

.social-media {
  display: flex;
  gap: 20px; /* Space between each icon */
  animation: fadeIn 1s ease-in-out; /* Fade-in animation for the social media container */
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffffff, #f0f0f0); /* Radial gradient background */
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(151, 19, 19, 0.2); /* Shadow for the icons */
  cursor: pointer; /* Pointer cursor on hover */
}

.social-icon svg {
  width: 26px;
  height: 26px;
  fill: #fe413f; /* Default color for the icons */
  transition: fill 0.3s ease; /* Smooth color transition */
}

.social-icon:hover {
  background: radial-gradient(circle at center, #333, #555); /* Background color on hover */
  transform: scale(1.2) rotate(15deg); /* Zoom and rotate effect on hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.social-icon:hover svg {
  fill: #fff; /* Icon color on hover */
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
  .site-header__end {
    justify-content: center;
    padding: 15px;
  }

  .social-media {
    gap: 15px; /* Reduce space between icons */
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* headking */
.main-heading {
  padding: 50px 0;              /* Add padding around the section */
  background-color: #f9f9f9;    /* Optional background color */
  text-align: center;           /* Center-align content within the section */
}

.container-heading {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 1; /* Initially visible */
  transition: opacity 0.5s ease; /* Smooth transition for opacity */
}



.custom-heading {
font-size: 2.8rem;            /* Large size for desktop */
color: #e33900;               /* New vibrant color to match your theme */
font-weight: bold;            /* Bold font for emphasis */
text-align: center;           /* Center text horizontally */
margin: 20px auto;            /* Center horizontally with auto margin */
letter-spacing: 1px;          /* Slight letter spacing for readability */
line-height: 1.4;             /* Line height for better readability */
animation: fadeInDown 1.2s ease-in-out both; /* Adding animation */
border-bottom: 2px solid #dc2615; /* Optional: border underline */
display: inline-block;        /* For better control of underline */
padding-bottom: 10px;         /* Padding for bottom underline */
transition: color 0.3s ease, opacity 0.5s ease;  /* Smooth transition on hover and opacity */
opacity: 1;                   /* Initially visible */
visibility: visible;           /* Allows interaction when visible */
}

.custom-heading.hidden {
opacity: 0;                   /* Fully hidden */
visibility: hidden;           /* Prevents interaction when hidden */
}

.custom-heading:hover {
color: #3a7bbf;               /* Darken the text color on hover */
}

@media (max-width: 768px) {
.custom-heading {
    font-size: 2.2rem;         /* Smaller size for tablets */
}
}

@media (max-width: 480px) {
.custom-heading {
    font-size: 1.8rem;         /* Smaller size for mobile */
}
}

/* Optional animation for the heading */
@keyframes fadeInDown {
0% {
    opacity: 0;
    transform: translateY(-30px); /* Starts off above the view */
}
100% {
    opacity: 1;
    transform: translateY(0);     /* Moves into view */
}
}

/* Optional animation for the heading */
@keyframes fadeInDown {
  0% {
      opacity: 0;
      transform: translateY(-30px); /* Starts off above the view */
  }
  100% {
      opacity: 1;
      transform: translateY(0);     /* Moves into view */
  }

}
/* Main page */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.card, .card-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 20px 150px;
  margin: 20px 0;
  transition: transform 0.3s ease-in-out;
}

.card:hover, .card-2:hover {
  transform: translateY(-5px);
}

.image {
  flex-basis: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.content {
  flex-basis: 55%;
  padding: 10px;
}

.content-service {
  padding-left: 80px;
  padding-right: 80px;
}

h2 {
  color: #D64545;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.animated-icon, .animated-icon-service {
  width: 100%;
  max-width: 200px;
  transition: transform 0.3s ease-in-out;
}

.animated-icon:hover, .animated-icon-service:hover {
  transform: scale(1.05);
}

/* Adjustments for tablets and larger mobiles */
@media (max-width: 1024px) {
  .card, .card-2 {
      margin: 20px;
      padding: 15px;
  }

  .content-service {
      padding-left: 50px;
      padding-right: 50px;
  }

  .animated-icon, .animated-icon-service {
      max-width: 180px;
  }
}

/* Adjustments for mid-sized mobiles */
@media (max-width: 768px) {
  .card, .card-2 {
      flex-direction: column;
      text-align: center;
      padding: 15px;
  }
  
  .image, .content {
      flex-basis: 100%;
      margin-bottom: 20px;
  }

  .content-service {
      padding-left: 20px;
      padding-right: 20px;
  }

  .animated-icon, .animated-icon-service {
      max-width: 150px;
  }

  h2 {
      font-size: 1.6rem;
  }

  p {
      font-size: 0.95rem;
  }
}

/* Adjustments for small mobiles (480px and below) */
@media (max-width: 320px) {
  .card, .card-2 {
      flex-direction: column;
      padding: 10px;
  }

  .image, .content {
      flex-basis: 100%;
      margin-bottom: 15px;
  }

  .content-service {
      padding-left: 10px;
      padding-right: 10px;
  }

  .animated-icon, .animated-icon-service {
      max-width: 130px;
  }

  h2 {
      font-size: 1.4rem;
  }

  p {
      font-size: 0.85rem;
  }
}

/* Extra small mobiles (360px and below) */
@media (max-width: 320px) {
  .content-service {
      padding-left: 5px;
      padding-right: 5px;
  }

  .animated-icon, .animated-icon-service {
      max-width: 120px;
  }

  h2 {
      font-size: 1.2rem;
  }

  p {
      font-size: 0.8rem;
  }
}


/* MAP */
.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .map-container h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 320px) {
    .map-container h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .map-container iframe {
        height: 250px;
    }
}




/*footer */


footer {
  background: #24262b;
  margin-top: 20px;
}

.full {
  padding-top: 50px;
  background-image: url(/assets/footer/bg.png);
  opacity: 20;

}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px; /* Reduced gap between sections */
  padding-bottom: 50px;
}

.footer-section {
  flex: 1; /* Makes all sections the same width */
  margin-right: 0px; /* Reduced horizontal margins */
}

.footer-section h3 {
  font-size: 18px;
  font-weight: bold;
  color: #f43a3a;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.footer-section ul li i {
  margin-right: 10px;
  color: #f43a3a;
}

.footer-section p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-section img.logo {
  width: 225px;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 22px;
  color: #fff;
  background-color: #f43a3a;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #e17979;
}

footer .footer-section p,
footer .footer-section li {
  color: #ffffff;
}

footer .footer-section a {
  color: #ffffff;
  text-decoration: none;
}

.footer-section a:hover {
  color: #b3006e;
}

/* Contact section icons */
.footer-section ul li i {
  font-size: 16px;
  color: #f43a3a;
}

/* Move 'Services' to the right only on desktop */
@media (min-width: 940px) {
  .footer-container {
      justify-content: flex-start; /* Align all sections to the left */
  }
  .footer-section.services-section {
    padding-left: 50px;
  }
}

@media (max-width: 939px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .footer-section {
      width: 100%;
      margin: 0 0 30px 0; /* Bottom margin to space out sections in mobile */
  }
}

/* Footer Bar Styles */
.footer-bar {
  display: flex;
  justify-content: space-between;
  background-color: #f43a3a;
  color: #fff;
  padding: 10px 20px; /* Adjust padding as needed */
  font-size: 14px;
  flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

.footer-bar p {
  margin: 0;
}

.footer-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.footer-bar a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .footer-bar {
    flex-direction: column; /* Stack the items vertically on smaller screens */
    text-align: center; /* Center align the text */
  }

  .footer-bar p {
    margin: 5px 0; /* Add spacing between the paragraphs */
    font-size: 13px; /* Slightly smaller text for mobile */
  }

  .footer-bar a {
    font-size: 13px; /* Adjust font size for mobile */
  }
}








