/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e1e2f;
  padding: 1rem 2rem;
  position: relative;
  color: white;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Menu Button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: 0.4s;
}

/* Toggle to X */
.menu-toggle.open .top-bar {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .middle-bar {
  opacity: 0;
}

.menu-toggle.open .bottom-bar {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav Links (mobile dropdown) */
.nav-links {
  list-style: none;
  display:  none;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 100%;
  right: 2rem;
  background-color: #1e1e2f;
  padding: 1.2rem 1.5rem;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.nav-links.open {
  display:  flex;
}

/*
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}*/




/* Show when open */
/*.nav-links.open {
  display: flex;
}*/

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fcbf49;
}

/* Desktop Styles */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
    gap: 2rem;
  }
}

/* Slider */
.slider {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 8px;
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  z-index: 2;
}
.prev:hover, .next:hover {
  background: #fcbf49;
  color: black;
}
.prev { left: 1rem; }
.next { right: 1rem; }

/* Welcome Section */
.welcome {
  padding: 4rem 2rem;
  text-align: center;
  background-color: white;
}
.welcome h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e1e2f;
}
.welcome p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}



/* Properties Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.property-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.property-info {
  padding: 1rem;
}

.property-info h3 {
  margin-bottom: 0.5rem;
  color: #1e1e2f;
}

.property-info p {
  margin: 0.25rem 0;
}

.location {
  font-size: 0.9rem;
  color: #666;
}

.desc {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background: #1e1e2f;
  color: white;
  padding: 0.5rem 1rem;
  text-align: center;
  border-radius: 5px;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.btn:hover {
  background: #fcbf49;
  color: black;
}


.about_section {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}


/* CONTACT PAGE STYLES */
.contact-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(to right, #1e1e2f, #3a3a5f);
  color: #fff;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #ddd;
}

/* CONTACT FORM SECTION */
.contact-section {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.contact-form-container {
  flex: 1;
}

.contact-form {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #6666ff;
  outline: none;
}

.contact-form .btn {
  background-color: #1e1e2f;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #333366;
}

/* CONTACT INFO PANEL */
.contact-info {
  background: #f1f1f1;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.contact-info h2,
.contact-info h3 {
  margin-bottom: 1rem;
  color: #1e1e2f;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: #444;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .contact-section {
    flex-direction: row;
    gap: 2rem;
  }

  .contact-form-container,
  .contact-info {
    width: 50%;
  }
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1e1e2f;
  color: #fff;
  font-weight: 600;
}

.navbar .logo {
  font-size: 1.5rem;
}

.navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
  color: #6666ff;
}

/* Hero Section */
.hero {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #333366 0%, #6666ff 100%);
  color: #fff;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.25rem;
}

/* Card Grid Section */
.card-grid-section {
  padding: 4rem 1rem;
  background: #fdfdfd;
  text-align: center;
}

.card-grid-section .section-title {
  font-size: 2rem;
  color: #1e1e2f;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Individual Cards */
.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
}

.card.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-info {
  padding: 1rem;
  text-align: left;
}

.card-info h3 {
  font-size: 1.25rem;
  color: #1e1e2f;
  margin-bottom: 0.5rem;
}

.card-info p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

.card-info .btn {
  display: inline-block;
  background-color: #1e1e2f;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.card-info .btn:hover {
  background-color: #333366;
}

/* Responsive Padding */
@media (min-width: 768px) {
  .card-grid-section {
    padding: 5rem 2rem;
  }
}

.imageabout{
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.about_section{
    flex: 1;
    min-width: 250px;
    flex-direction: column;
    justify-content: center;
}

/* Container */
.my_ctnr {
  padding: 2rem 1rem;
}

/* Row Flex */
.my_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .my_row {
    flex-direction: column;
    text-align: center;
  }

  .my_col_md_6 {
    max-width: 100%;
  }

  .my_ctnr_img {
    margin-bottom: 1rem;
  }
}

/* 2-column Layout */
.my_col_md_6 {
  flex: 1 1 45%;
  max-width: 500px;
}

/* Image Styling */
.my_ctnr_img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* About Content */
.about-content {
  padding: 1rem;
}

.about_text_h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about_text {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Responsive Stack on Mobile */
@media (max-width: 768px) {
  .my_row {
    flex-direction: column;
    text-align: center;
  }

  .my_col_md_6 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-content {
    padding-top: 1rem;
  }
}


.about_text_h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}


.blog-section {
  padding: 4rem 2rem;
  background-color: #f9f9ff;
}

.blog-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1e1e2f;
}

.blog-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(-40px);
  opacity: 0;
  transition: all 0.8s ease;
}

.blog-card.visible {
  transform: translateX(0);
  opacity: 1;
}

.blog-card img {
  width: 220px;
  height: 160px;
  object-fit: cover;
}

.blog-info {
  padding: 1.5rem;
  flex: 1;
}

.blog-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: #222;
}

.blog-info p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.blog-info .read-more {
  text-decoration: none;
  color: #333366;
  font-weight: 600;
  transition: color 0.3s;
}

.blog-info .read-more:hover {
  color: #6666ff;
}

@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
    text-align: center;
  }

  .blog-card img {
    width: 100%;
    height: auto;
  }

  .blog-info {
    padding: 1rem;
  }
}



.listing-section {
  padding: 4rem 2rem;
  background-color: #f5f7fb;
}

.listing-heading {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #1d2233;
}

.listing-wrapper {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.listing-card {
  background-color: #faf5f5;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.listing-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.listing-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.listing-details {
  padding: 1.4rem;
}

.listing-details h3 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
  color: #2a2a2a;
}

.listing-details p {
  font-size: 0.95rem;
  color: #666;
}

.listing-price {
  display: block;
  margin: 1rem 0;
  font-weight: bold;
  color: #1d2233;
}

.listing-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #1d2233;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.listing-btn:hover {
  background-color: #1d2233;
}

@media (max-width: 768px) { 
    .about-container { 
        flex-direction: column; 
        text-align: center; 
    } 

    .about-container img { 
            margin-bottom: 20px;
    }
}



/* Why Invest Section */
.why-invest {
  padding: 3rem 1.5rem;
  background-color: #f9fafb;
  text-align: center;
}

.why-invest h2 {
  font-size: 1.8rem;
  color: #061a44;
  margin-bottom: 2rem;
}

.invest-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.feature-card img {
  width: 40px;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .invest-features {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .feature-card {
    width: 45%;
  }
}

@media (min-width: 1024px) {
  .feature-card {
    width: 22%;
  }
}

/* ===== Services Section ===== */
.services {
  padding: 3rem 1.5rem;
  background-color: #f9fafa;
  text-align: center;
}

.services h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #061a44;
  margin-bottom: 2rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 40px;
  margin-bottom: 1rem;
}

.service-card h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ===== Responsive Design ===== */
@media (min-width: 768px) {
  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .service-card {
    width: 48%;
  }
}

@media (min-width: 1024px) {
  .service-card {
    width: 23%;
  }
}

.testimonials-section {
  background-color: #ffffff;
  padding: 3rem 2rem;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #061a44;
}

.testimonials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-card {
  background-color: #f1f4f8;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.testimonial-card p {
  font-style: italic;
  color: #444;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  font-weight: bold;
  color: #061a44;
}

/* Responsive layout */
@media (min-width: 768px) {
  .testimonials-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .testimonial-card {
    width: 30%;
  }
}


/* WhatsApp Floating Button - Mobile First */
.whatsapp-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 999;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 38px;
  height: 38px;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

/* Desktop Enhancements */
@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    padding: 12px;
  }

  .whatsapp-float img {
    width: 42px;
    height: 42px;
  }
}







.my_ctnr{
   max-width: 100%;
   padding-left: 1rem;
   padding-right: 1rem;
   margin-left: auto;
   margin-right: auto;
}

.my_row{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.my_col_md_12, .my_col_md_11, .my_col_md_10, .my_col_md_9, .my_col_md_8, .my_col_md_7, .my_col_md_6, .my_col_md_5, .my_col_md_4
    .my_col_md_3, .my_col_md_2, .my_col_md_1 {
    position: relative;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media  screen and (max-width:768px) {
    
    #main_nav_inner{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: pink;
        display: none;
        z-index: 1;
        transition: all .3s;
        padding-top: 7rem;
        margin-top: -10px;
        flex-direction: column;
        color: black;
    }

    #main_nav_inner.activ{
        display: block;
    }

    .my_nav_hr{
        display: none;
    }

    #main_nav_inner li{
        display: block;
        margin-left: 0;
        margin-right: 0;
        margin-top: 2rem;
        text-align: center;
    } 

    .my_abt{
    display: block;
    gap: 11px;
}

    .pd_aps{
        margin-left: 10px;
    }



    .mt_mob_1{
        margin-top: 1rem;
    }
    
    .mb_mob_3{
        margin-bottom: 3rem;
    }

    .pt_md_1{
        padding-top: 1rem;
    }

}

@media  screen and (min-width:768px) {
    
    #menu_btn{
        display: none;
    }
    .my_abt{
    display: flex;
    gap: 11px;
}




.mt_md_8{
    margin-top: 8rem;
}

.mb_md_8{
    margin-bottom: 8rem;
}

.mt_md_7{
    margin-top: 7rem;
}

.mb_md_7{
    margin-bottom: 7rem;
}

.mt_md_6{
    margin-top: 6rem;
}

.mb_md_6{
    margin-bottom: 6rem;
}

.mt_md_5{
    margin-top: 5rem;
}

.mb_md_5{
    margin-bottom: 5rem;
}

    
}


@media screen and ( min-width: 768px) {



   .my_row{
    flex-direction: row;
}

.my_col_md_12{
    max-width: 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
 }

.my_col_md_11{
    max-width: 91.666%;
    -ms-flex: 0 0 91.666%;
    flex: 0 0 91.666%;
}

.my_col_md_10{
    max-width: 83.333%;
    -ms-flex: 0 0 83.333%;
    flex: 0 0 83.333%;
}


.my_col_md_9{
    max-width: 74.999%;
   -ms-flex: 0 0 74.999%;
    flex: 0 0 74.999%;
}


.my_col_md_8{
    max-width: 66.666%;
    -ms-flex: 0 0 66.666%;
    flex: 0 0 66.666%;
}

.my_col_md_7{
    max-width: 58.33%;
    -ms-flex: 0 0 58.33%;
    flex: 0 0 58.33%;
}


.my_col_md_6{
    max-width: 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.my_col_md_5{
    max-width: 41.666%;
    -ms-flex: 0 0 41.666%;
    flex: 0 0 41.666%;
}

.my_col_md_4{
    max-width:33.333%;
    -ms-flex: 0 0 33.333%;
    flex: 0 0 33.333%;
}

.my_col_md_3{
    max-width: 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
}

.my_col_md_2{
    max-width: 16.666%;
    -ms-flex: 0 0 16.666%;
    flex: 0 0 16.666%;
}

.my_col_md_1{
   max-width: 8.333%;
    -ms-flex: 0 0 8.333%;
    flex: 0 0 8.333%;
}
}

.mt_8{
    margin-top: 8rem;
}

.mb_8{
    margin-bottom: 8rem;
}

.mt_7{
    margin-top: 7rem;
}

.mb_7{
    margin-bottom: 7rem;
}

.mt_6{
    margin-top: 6rem;
}

.mb_6{
    margin-bottom: 6rem;
}

.mt_5{
    margin-top: 5rem;
}

.mb_5{
    margin-bottom: 5rem;
}

.mt_4{
    margin-top: 4rem;
}

.mb_4{
    margin-bottom: 4rem;
}

.mt_3{
    margin-top: 3rem;
}

.mb_3{
    margin-bottom: 3rem;
}

.mt_2{
    margin-top: 2rem;
}

.mb_2{
    margin-bottom: 1rem;
}

.mt_1{
    margin-top: 1rem;
}

.mb_1{
    margin-bottom: 1rem;
}


.pt_8{
    padding-top: 8rem;
}

.pb_8{
    padding-bottom: 8rem;
}

.pt_7{
    padding-top: 7rem;
}

.pb_7{
    padding-bottom: 7rem;
}

.pt_6{
    padding-top: 6rem;
}

.pb_6{
    padding-bottom: 6rem;
}
.pt_5{
    padding-top: 5rem;
}

.pb_5{
    padding-bottom: 5rem;
}
.pt_4{
    padding-top: 4rem;
}

.pb_4{
    padding-bottom: 4rem;
}

.pt_3{
    padding-top: 3rem;
}

.pb_3{
    padding-bottom: 3rem;
}
.pt_2{
    padding-top: 2rem;
}

.pb_2{
    padding-bottom: 2rem;
}

.pt_1{
    padding-top: 1rem;
}

.pb_1{
    padding-bottom: 1rem;
}

.ml_8{
    margin-left: 8rem;
}
.mr_8{
    margin-right: 8rem;
}

.ml_7{
    margin-left: 7rem;
}
.mr_7{
    margin-right: 7rem;
}

.ml_6{
    margin-left: 6rem;
}
.mr_6{
    margin-right: 6rem;
}

.ml_5{
    margin-left: 5rem;
}
.mr_5{
    margin-right: 5rem;
}

.ml_4{
    margin-left: 4rem;
}
.mr_4{
    margin-right: 4rem;
}

.ml_3{
    margin-left: 3rem;
}
.mr_3{
    margin-right: 3rem;
}

.ml_2{
    margin-left: 2rem;
}
.mr_2{
    margin-right: 2rem;
}

.ml_1{
    margin-left: 1rem;
}
.mr_1{
    margin-right: 1rem;
}

.pl_8{
    padding-left: 8rem;
}

.pr_8{
    padding-right: 8rem;
}

.pl_7{
    padding-left: 7rem;
}

.pr_7{
    padding-right: 7rem;
}

.pl_6{
    padding-left: 6rem;
}

.pr_6{
    padding-right: 6rem;
}

.pl_5{
    padding-left: 5rem;
}

.pr_5{
    padding-right: 5rem;
}

.pl_4{
    padding-left: 4rem;
}

.pr_4{
    padding-right: 4rem;
}
.pl_3{
    padding-left: 3rem;
}

.pr_3{
    padding-right: 3rem;
}

.pl_2{
    padding-left: 2rem;
}

.pr_2{
    padding-right: 2rem;
}

.pl_1{
    padding-left: 1rem;
}

.pr_1{
    padding-right: 1rem;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  left: 30px; /* ⬅️ Moved to the left */
  background-color: #333;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

#backToTop:hover {
  background-color: #555;
}

#backToTop svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  #backToTop {
    bottom: 20px;
    left: 20px; /* ⬅️ Adjusted for smaller screens */
    padding: 10px;
  }
}
