

:root {
    --background: #000000;
    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
    --accent: #2ECC71;
    --nav-bg: rgba(0, 0, 0, 0.8);
    --color-primary: #00ff84;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -.022em;
}







/* nav bar start */
/* General styles for the navbar */
.navbar {
    display: flex;
    justify-content:space-around;
    background-color: #3631319d;
    align-items: center;
    height: 45px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed; 
    top: 0;
    left: 0;
    backdrop-filter: blur(10px); 
    z-index: 1000;
  }
  
  

  .navbar .logo a {
    font-size: 17px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
  }
  
  .navbar .nav-links {
    display: flex;
    list-style-type: none;
  }
  
  .navbar .nav-links li {
    margin: 0 15px;
  }
  
  .navbar .nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    transition: color 0.3s ease;
    transition: font-size 0.15s ease;  
  }
  
  .navbar .nav-links li a:hover {
    color: #00ff4c;
    font-size: 13px;
  }
  
/*  */
nav {

    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
}

.nav-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    margin-right: 15px;
    height: 30px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

/* Styles for the profile dropdown */
.profile-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.profile-icon {
    font-size: 1rem; /* Adjust size as needed */
    color: var(--text-primary);
    cursor: pointer;
}

.profile-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Profile Dropdown Container */
.profile-dropdown {
position: relative;
display: inline-block;
cursor: pointer;
}

/* Profile Icon */
.profile-icon {
font-size: 1.2rem;
color: var(--text-primary);
cursor: pointer;
}
/* navbar end */










/* section 1 start */
/* General Styles */
@font-face {
  font-family: "Agency FB";
  src: url("../agency-fb/AGENCYB.TTF") format("truetype");
  }


  .hero-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  /* Glowing Text */
  .glow-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 13rem; /* Adjust size as needed */
      color: #ffffff;
      text-shadow: 
          /* 0 0 5px #03045E, 
          0 0 10px #03045E, 
          0 0 20px #03045E, 
          0 0 40px #03045E, 
          0 0 80px #03045E; */
          0 0 5px #2ECC71, 
          0 0 10px #2ECC71, 
          0 0 20px #2ECC71, 
          0 0 40px #2ECC71, 
          0 0 80px #2ECC71;
      z-index: -1; /* Place it behind the car */
      font-family: "Agency FB", Arial, sans-serif; /* Use the custom font */
      /* letter-spacing: 5px; */
  }

  #3d-car-container {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      transform: translate(-50%, -50%);
      z-index: 2; /* Keep the car above the glowing text */
      pointer-events: none; /* Prevent interactions with the 3D canvas */
  }

  

  .cta-links {
      margin-top: 1rem;
  }

  .cta-link {
      color: #2ecc71;
      text-decoration: none;
      font-size: 1.2rem;
      margin: 0 1rem;
      top: 1%;
      transition: all 0.3s ease;
  }

  .cta-link:hover {
      text-decoration: underline;
      transform: scale(1.1);
  }
  .text-on-top 
  {
      position: absolute;
      top: 25%; /* Adjust as needed */
      width: 100%;
      text-align: center;
      color: #2ecc71; /* Match your theme */

      /* z-index: 3; Ensure it stays on top of the 3D model */
      /* font-size: 20px;  */
  }

  .text-below 
  {
      position: absolute;
      bottom:12%; /* Adjust as needed */
      width: 100%;
      text-align: center;
      color: #dddddd; /* Match your theme */
      z-index: 3; /* Ensure it stays above the background */
      font-size: 1.4rem; /* Adjust size */
      color: rgb(92, 92, 92);
  }








/* --- Glowing Text --- */
.glow-text {
  transform: translate(-50%, -50%);
  text-shadow: 0 0 10px #2ecc71, 0 0 30px #2ecc71, 0 0 60px #2ecc71;
  animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 10px #2ecc71, 0 0 30px #2ecc71, 0 0 60px #2ecc71; }
  50% { text-shadow: 0 0 20px #00ff9f, 0 0 60px #00ff9f, 0 0 120px #00ff9f; }
}

.text-below {
  color: #bdbdbd;
  z-index: 3;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  transform: translateY(20px);
}


.cta-link:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px #2ecc71;
}

/* --- Scroll Hint --- */
.scroll-hint {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: #2ecc71;
  animation: bounce 2s infinite;
  opacity: 0.8;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

/* --- Responsive Fixes --- */
@media (max-width: 768px) {
  .glow-text { font-size: 4rem; }
  .text-below { font-size: 1rem; }
  .cta-link { font-size: 1rem; }
  #3d-car-container { width: 70%; height: 70%; }
}

/* section 1 end */














/* timeline start */
    @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Roboto:wght@400&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #fff;
  font-family: 'inter', sans-serif;
  overflow-x: hidden;
}


/* ===== Title ===== */
.timeline-title {
      color: #ffffff;
      text-shadow:
          0 0 5px #2ECC71, 
          0 0 10px #2ECC71, 
          0 0 20px #2ECC71, 
          0 0 40px #2ECC71, 
          0 0 80px #2ECC71;
  font-family: 'Agency FB', sans-serif;
  text-align: center;
  font-size: 2.5rem;
  margin: 80px 0;
}

/* ===== Timeline Container ===== */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(#00ff84, #00ffaa, #00ff84);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px #00ff84;
}

/* ===== Timeline Items ===== */
.timeline-item {
  padding: 30px 40px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: #00ff84;
  border-radius: 50%;
  top: 30px;
  z-index: 10;
  box-shadow: 0 0 20px #00ff84, 0 0 40px #00ff84;
}

/* ===== Left and Right Positioning ===== */
.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.left::after {
  right: -11px;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -11px;
}

/* ===== Content Box ===== */
/* .timeline-content {
  background: rgba(0, 255, 132, 0.08);
  border: 1px solid #00ff84;
  border-radius: 12px;
  padding: 20px 25px;
  position: relative;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(0, 255, 132, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
} */
/* 
.timeline-content:hover {
  transform: scale(1.05);
  box-shadow: 0 0 5px #00ff84, 0 0 50px #00ff84;
} */

/* ===== Text Styling ===== */
.timeline-content h4 {
  color: #00ff84;
  font-family: "Agency FB",'Orbitron', sans-serif;
  font-size: 1rem;
}

.timeline-content h3 {
  color: #fff;
  margin-top: 1px;
  font-weight: 600;
  font-size: 1.2rem;
}

.timeline-content p {
  color: #ccc;
  margin-top: 8px;
  line-height: .7;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    text-align: left;
  }

  .timeline-item::after {
    left: 10px;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-content {
    width: 100%;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* overview end */









/* image scroller start*/
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Playfair+Display:ital,wght@1,500&display=swap");
.image-scroller {
    background-color: #2ECC71;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  padding-top: 10px;
  padding-bottom: 10px;
}

.scrollercontainer {
  height: 100vh;
  width: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
  gap: 20px;
}
.scrollercontainer h1 {
  font-weight: 700;
  letter-spacing: 0.2rem;
  color: #ffffff;
      text-shadow: 
          0 0 5px #2ECC71, 
          0 0 10px #2ECC71, 
          0 0 20px #2ECC71, 
          0 0 40px #2ECC71, 
          0 0 80px #2ECC71;
      font-family: "Agency FB", Arial, sans-serif;
    font-size: 50px;
}
.scrollercontainer .gallery {
  display: flex;
  justify-content: center;
  align-items: center;
}
.scrollercontainer .gallery .img-box {
  width: 100px;
  height: 380px;
  margin: 6px;
  border: 0.5px solid lightgray;
  border-radius: 30px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background: url(../images/landing-images/slider/parking-lot-booking.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  transition: width 0.4s;
}
.scrollercontainer .gallery .img-box h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.2rem;
  font-weight: 500;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.588);
  padding: 2% 5%;
  border-radius: 8px 0 0 8px;
  transition: bottom 0.4s, opacity;
}
.scrollercontainer .gallery .img-box:nth-child(2) {
  background: url(../images/landing-images/slider/EV-charging.jpg);
  background-position: center;
  background-size: cover;
}
.scrollercontainer .gallery .img-box:nth-child(3) {
  background: url(../images/landing-images/slider/rentals.jpg);
  background-position: center;
  background-size: cover;
}
.scrollercontainer .gallery .img-box:nth-child(4) {
  background: url(../images/landing-images/slider/driver.jpg);
  background-position: center;
  background-size: cover;
}
.scrollercontainer .gallery .img-box:nth-child(5) {
    background: url(../images/landing-images/slider/servicing.jpg);
    background-position: center;
    background-size: cover;
  }
  .scrollercontainer .gallery .img-box:nth-child(6) {
    background: url(../images/landing-images/slider/used-cars.jpg);
    background-position: center;
    background-size: cover;
  }
.scrollercontainer .gallery .img-box:hover {
  width: 300px;
}
.scrollercontainer .gallery .img-box:hover h2 {
  opacity: 1;
  bottom: 10%;
}

@media screen and (max-width: 600px) {
  .img-box {
    height: 300px;
  }
  .img-box:hover {
    width: auto !important;
  }
}
@media screen and (max-width: 450px) {
  h1 {
    font-size: 1.2rem !important;
  }
  h2 {
    font-size: 0.9rem !important;
  }
  .img-box {
    width: 50px !important;
    height: 200px !important;
    border-radius: 20px !important;
  }
  .img-box:hover {
    width: 220rem !important;
  }
}/*# sourceMappingURL=style.css.map */
/* image scroler end */







/* feature start */
.feature-overview {
    display: flex;
    justify-content: space-around; /* Space around the widgets */
    gap: 1.5rem;
    padding: 2rem;
    background-color: #121212;
  }
  
  /* Base styles for each widget */
  .feature-widget {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  /* Define the width proportions */
  .large-widget1 {
    flex: 0 0 60%; /* 50% width */
    
    background: linear-gradient(135deg, black, #2ECC71);
  }
  
  .small-widget {
    flex: 0 0 38%; /* 40% width */
    
    background: linear-gradient(315deg, black, #2ECC71);
  }
  
  /* Hover effect */
  .feature-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  }
  
  /* Content styling inside each widget */
  .content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .content p {
    font-size: 1rem;
    color: #d1d1d1;
    margin-bottom: 1.5rem;
  }
  
  /* Link styling to resemble button with animated arrow */
  .link {
    display: inline-flex;
    align-items: center;
    color: #2ECC71;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
  
  .link:hover {
    color: #ffffff;
  }
  
  .arrow {
    margin-left: 0.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .link:hover .arrow {
    transform: translateX(5px); /* Arrow moves to the right on hover */
  }
  
  /* Styling for the feature image */
  .feature-image {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .feature-image img {
    width: 60px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }
  
  .feature-image img:hover {
    opacity: 1;
  }

/* feature end */




/* footer start */
.footer-widget p {
    margin-bottom: 27px;
    }
    .footer-info-text  
    {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    line-height: 28px;
    }
    
    .animate-border {
        position: relative;
        display: block;
        width: 115px;
        height: 3px;
        background: #007bff;
    }
    
    
    
    .animate-border:before,
    .animate-border:after {
        position: absolute;
        content: "";
        width: 35px;
        height: 3px;
        bottom: 0;
        border-left: 10px solid #fff;
        border-right: 10px solid #fff;
        animation: animborder 6s ease-in-out infinite;
    }
    
    /* The first block */
    .animate-border:before {
        left: 0;
        animation-delay: 0s;
    }
    
    /* The second block starts slightly behind the first */
    .animate-border:after {
        left: 10px;
        animation-delay: 1.5s;
    }
    
    @keyframes animborder {
        0% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(75px); /* Both blocks reach the end */
        }
        100% {
            transform: translateX(0); /* Both blocks come back together */
        }
    }
    
    /* Adjusted border color options */
    .animate-border.border-white:after,
    .animate-border.border-white:before {
        border-color: #fff;
    }
    
    .animate-border.border-yellow:after,
    .animate-border.border-yellow:before {
        border-color: #F5B02E;
    }
    
    .animate-border.border-orange:after,
    .animate-border.border-orange:before {
        border-right-color: #007bff;
        border-left-color: #007bff;
    }
    
    .animate-border.border-ash:after,
    .animate-border.border-ash:before {
        border-right-color: #EEF0EF;
        border-left-color: #EEF0EF;
    }
    
    .animate-border.border-offwhite:after,
    .animate-border.border-offwhite:before {
        border-right-color: #F7F9F8;
        border-left-color: #F7F9F8;
    }
    
    .dk-footer {
    padding: 75px 0 0;
    background-color: #151414;
    position: relative;
    z-index: 2; }
    .dk-footer .contact-us {
    margin-top: 0;
    margin-bottom: 30px;
    padding-left: 80px; }
    .dk-footer .contact-us .contact-info {
        margin-left: 50px; }
    .dk-footer .contact-us.contact-us-last {
        margin-left: -80px; }
    .dk-footer .contact-icon i {
    font-size: 20px;
    top: -15px;
    position: relative;
    color:#007bff; }
    
    .dk-footer-box-info {
    position: absolute;
    top: -122px;
    background: #202020;
    padding: 40px;
    z-index: 2; }
    .dk-footer-box-info .footer-social-link h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px; }
    .dk-footer-box-info .footer-social-link ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    .dk-footer-box-info .footer-social-link li {
    display: inline-block; }
    .dk-footer-box-info .footer-social-link a i {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background: #000;
    margin-right: 5px;
    color: #fff; }
    .dk-footer-box-info .footer-social-link a i.fa-facebook {
        background-color: #3B5998; }
    .dk-footer-box-info .footer-social-link a i.fa-twitter {
        background-color: #55ACEE; }
    .dk-footer-box-info .footer-social-link a i.fa-google-plus {
        background-color: #DD4B39; }
    .dk-footer-box-info .footer-social-link a i.fa-linkedin {
        background-color: #0976B4; }
    .dk-footer-box-info .footer-social-link a i.fa-instagram {
        background-color: #B7242A; }
    
    .footer-awarad {
    margin-top: 285px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .footer-awarad p {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-left: 20px;
    padding-top: 15px; }
    
    .footer-info-text {
    margin: 26px 0 32px; }
    
    .footer-left-widget {
    padding-left: 80px; }
    
    .footer-widget .section-heading {
    margin-bottom: 35px; }
    
    .footer-widget h3 {
    font-size: 19px;
    color: #fff;
    position: relative;
    margin-bottom: 3px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content; }
    
    .footer-widget ul {
    width: 50%;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0; }
    
    .footer-widget li {
    margin-bottom: 14px; }
    
    .footer-widget p {
    margin-bottom: 27px; }
    
    .footer-widget a {
    color: #878787;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .footer-widget a:hover {
    color: #007bff; }
    
    .footer-widget:after {
    content: "";
    display: block;
    clear: both; }
    
    .dk-footer-form {
    position: relative; }
    .dk-footer-form input[type=email] {
    padding: 14px 28px;
    border-radius: 50px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E; }
    .dk-footer-form input::-webkit-input-placeholder, .dk-footer-form input::-moz-placeholder, .dk-footer-form input:-ms-input-placeholder, .dk-footer-form input::-ms-input-placeholder, .dk-footer-form input::-webkit-input-placeholder {
    color: #878787;
    font-size: 14px; }
    .dk-footer-form input::-webkit-input-placeholder, .dk-footer-form input::-moz-placeholder, .dk-footer-form input:-ms-input-placeholder, .dk-footer-form input::-ms-input-placeholder, .dk-footer-form input::placeholder {
    color: #878787;
    font-size: 14px; }
    .dk-footer-form button[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 24px 12px 17px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border: 1px solid #007bff;
    background: #007bff;
    color: #fff; }
    .dk-footer-form button:hover {
    cursor: pointer; }
    
    /* ==========================
    
    Contact
    
    =============================*/
    .contact-us {
    position: relative;
    z-index: 2;
    margin-top: 65px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    
    .contact-icon {
    position: absolute; }
    .contact-icon i {
    font-size: 36px;
    top: -5px;
    position: relative;
    color: #007bff; }
    
    .contact-info {
    margin-left: 75px;
    color: #fff; }
    .contact-info h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 0; }
    
    .copyright {
    padding: 28px 0;
    margin-top: 55px;
    background-color: #202020; }
    .copyright span,
    .copyright a {
    color: #878787;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear; }
    .copyright a:hover {
    color:#007bff; }
    
    .copyright-menu ul {
    text-align: right;
    margin: 0; }
    
    .copyright-menu li {
    display: inline-block;
    padding-left: 20px; }
    
    .back-to-top {
    position: relative;
    z-index: 2; }
    .back-to-top .btn-dark {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2e2e2e;
    border-color: #2e2e2e;
    display: none;
    z-index: 999;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear; }
    .back-to-top .btn-dark:hover {
        cursor: pointer;
        background: #FA6742;
        border-color: #FA6742; }
    /* footer section ends */



