@charset "UTF-8";
/*!
 * Project Name: Mp Developers - Greenbay Landing Page
 * Author: Tamil de Selva
 * Version: 1.0.5
 * Description: Custom SCSS for layout, styling, and responsive design.
 * Created: 26 August 2025
 * Updated: 28 August 2025
 */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
}

p,
li,
a {
  font-family: "jost", sans-serif;
}

::-moz-selection {
  background-color: #f27928;
  color: rgb(230, 230, 230);
}

::selection {
  background-color: #f27928;
  color: rgb(230, 230, 230);
}

::-webkit-scrollbar {
  width: 3px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: #3b3d94;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f27928;
}

html,
body {
  scroll-behavior: smooth;
}

body,
a,
button {
  cursor: url("../images/cur.png"), auto !important;
}

main header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}
main header .logo img {
  width: 100px;
}
main header .contact {
  display: flex;
  align-items: center;
}
main header .contact img {
  width: 150px;
}
main header .nav-links {
  display: flex;
  gap: 50px;
}
main header .nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  position: relative;
  padding: 5px 0;
  transition: color 0.4s ease;
}
main header .nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #3b3d94;
  transition: width 0.4s ease;
}
main header .nav-links a:hover::after {
  width: 100%;
}
main header .nav-links .enquire-btn {
  border-bottom: 2px dashed #3b3d94;
  font-size: 15px;
  font-weight: 500;
  color: #3b3d94;
}
main header .hamburger {
  display: none;
  cursor: pointer;
  z-index: 1100;
}
main header .hamburger .bar {
  display: block;
  width: 30px;
  height: 2.5px;
  margin: 5px auto;
  background-color: #505050;
  border-radius: 2px;
  transition: all 0.4s ease-in-out;
}
main header .hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
main header .hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
main header .hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 768px) {
  main header {
    padding: 15px 20px;
  }
  main header .nav-links {
    position: absolute;
    top: 100px;
    left: -100%;
    flex-direction: column;
    align-items: center;
    background: #f1f1f1;
    width: 100%;
    padding: 40px 0;
    gap: 25px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
  }
  main header .nav-links a {
    color: #000000;
  }
  main header .nav-links.active {
    left: 0;
    opacity: 1;
    pointer-events: auto;
  }
  main header .hamburger {
    display: block;
  }
  main header .contact {
    display: none;
  }
}
main .main-section {
  display: flex;
  height: 100vh;
}
main .main-section .main-left-content {
  width: 50%;
  background-color: rgb(231, 231, 231);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 60px;
}
main .main-section .main-left-content .info-blocks {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
main .main-section .main-left-content .info-blocks div {
  display: flex;
  align-items: center;
  gap: 10px;
}
main .main-section .main-left-content .info-blocks div img {
  height: 20px;
}
main .main-section .main-left-content .info-blocks div p {
  color: #f27928;
  font-size: 16px;
}
main .main-section .main-left-content h1 {
  font-size: 3.5rem;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
}
main .main-section .main-right-content {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
main .main-section .main-right-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  main .main-section {
    flex-direction: column;
    height: auto;
  }
  main .main-section .main-left-content {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    margin-top: 5.5rem;
  }
  main .main-section .main-left-content .info-blocks {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  main .main-section .main-left-content .info-blocks div p {
    font-size: 14px;
  }
  main .main-section .main-left-content .info-blocks div img {
    height: 18px;
  }
  main .main-section .main-left-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-top: 20px;
  }
  main .main-section .main-right-content {
    width: 100%;
    height: 250px;
  }
  main .main-section .main-right-content img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
main .residence-section {
  display: flex;
  padding: 80px 5%;
  gap: 5%;
  align-items: center;
}
main .residence-section .left-content {
  flex: 1;
  color: #f27928;
}
main .residence-section .left-content h1 {
  font-size: 32px;
  margin: 20px 0;
  font-weight: 500;
  text-transform: uppercase;
}
main .residence-section .left-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 30px;
  font-weight: 400;
}
main .residence-section .left-content .download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  color: #3b3d94;
  font-weight: 400;
  border-bottom: 1px solid #3b3d94;
  text-decoration: none;
}
main .residence-section .left-content .download-link .icon {
  width: 20px;
  height: 20px;
  background: url("../images/file.png") no-repeat center;
}
main .residence-section .left-content .stats {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}
main .residence-section .left-content .stats div span {
  display: block;
  font-size: 12px;
  color: #3b3d94;
  letter-spacing: 1px;
  font-family: "jost", sans-serif;
}
main .residence-section .left-content .stats div h2 {
  font-size: 3.5rem;
  margin: 5px 0;
  font-weight: 400;
}
main .residence-section .left-content .view-gallery {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #3b3d94;
  font-size: 14px;
  text-decoration: none;
  color: #3b3d94;
  transition: 0.3s;
}
main .residence-section .left-content .view-gallery:hover {
  border: 1px dashed #3b3d94;
}
main .residence-section .right-content {
  flex: 1;
  position: relative;
}
main .residence-section .right-content .img-stack {
  position: relative;
  width: 100%;
  height: auto;
}
main .residence-section .right-content .img-stack .img-back {
  width: 90%;
  display: block;
  border-radius: 20px;
}
main .residence-section .right-content .img-stack .img-front {
  position: absolute;
  width: 50%;
  top: 40px;
  right: -20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease-out;
}
@media (max-width: 768px) {
  main .residence-section {
    flex-direction: column;
    padding: 50px 20px;
    gap: 40px;
  }
  main .residence-section .left-content {
    width: 100%;
    text-align: center;
  }
  main .residence-section .left-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }
  main .residence-section .left-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  main .residence-section .left-content .stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  main .residence-section .left-content .stats div h2 {
    font-size: 2rem;
  }
  main .residence-section .left-content .download-link {
    justify-content: center;
    font-size: 14px;
  }
  main .residence-section .left-content .view-gallery {
    font-size: 13px;
    padding: 8px 16px;
  }
  main .residence-section .right-content {
    width: 100%;
    margin-top: 20px;
  }
  main .residence-section .right-content .img-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  main .residence-section .right-content .img-stack .img-back {
    width: 100%;
  }
  main .residence-section .right-content .img-stack .img-front {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
  }
}
main .features-section {
  background-color: rgb(243, 243, 243);
  padding: 50px 0;
}
main .features-section h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  text-transform: uppercase;
}
main .features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 0.3fr);
  gap: 10px;
  padding: 60px;
}
main .features-section .features-grid .grid-item {
  text-align: left;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  border: 1px dashed #f27928;
}
main .features-section .features-grid .grid-item:hover {
  transform: translateY(-5px);
  background-color: #f48134;
}
main .features-section .features-grid .grid-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
main .features-section .features-grid .grid-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
main .features-section .features-grid .grid-item p {
  font-size: 14px;
  color: #555;
  max-width: 250px;
}
@media (max-width: 1024px) {
  main .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  main .features-section .features-grid {
    grid-template-columns: 1fr;
  }
}
main .property-gallery {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 80px 5%;
  flex-wrap: wrap;
  margin: 0 50px;
}
main .property-gallery .gallery-left {
  flex: 1;
  max-width: 500px;
}
main .property-gallery .gallery-left .sub-heading {
  font-size: 12px;
  letter-spacing: 1px;
  color: #3b3d94;
  margin-bottom: 10px;
}
main .property-gallery .gallery-left h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
}
main .property-gallery .gallery-left .description {
  font-size: 18px;
  line-height: 1.9;
  color: #ff0000;
  font-weight: 400;
}
main .property-gallery .gallery-left .tour-btn {
  border: 1px solid #3b3d94;
  padding: 10px 20px;
  background: transparent;
  font-size: 14px;
  transition: 0.3s;
  color: #3b3d94;
}
main .property-gallery .gallery-left .tour-btn:hover {
  border: 1px dashed #3b3d94;
}
main .property-gallery .gallery-right {
  flex: 1;
  position: relative;
  max-width: 700px;
}
main .property-gallery .gallery-right .gallery-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
main .property-gallery .gallery-right .gallery-tabs .tab {
  background: none;
  border: none;
  font-weight: 500;
  letter-spacing: 1px;
  color: #333;
  position: relative;
}
main .property-gallery .gallery-right .gallery-tabs .tab.active {
  color: #3b3d94;
}
main .property-gallery .gallery-right .gallery-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #3b3d94;
}
main .property-gallery .gallery-right .gallery-content {
  display: none;
}
main .property-gallery .gallery-right .gallery-content.active {
  display: flex;
  align-items: center;
  position: relative;
}
main .property-gallery .gallery-right .photo-carousel img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
main .property-gallery .gallery-right .photo-carousel .arrow {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 24px;
  padding: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
main .property-gallery .gallery-right .photo-carousel .arrow.left {
  left: 10px;
}
main .property-gallery .gallery-right .photo-carousel .arrow.right {
  right: 10px;
}
main .property-gallery .gallery-right .video-player {
  flex-direction: column;
}
main .property-gallery .gallery-right .video-player video {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  main .property-gallery {
    flex-direction: column;
  }
  main .property-gallery .gallery-left,
  main .property-gallery .gallery-right {
    max-width: 100%;
  }
}
main .floor-plan-section {
  padding: 80px 5%;
}
main .floor-plan-section > div {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
main .floor-plan-section > div > div:first-child {
  flex: 1;
  display: flex;
  justify-content: center;
}
main .floor-plan-section > div > div:first-child img {
  width: 100%;
  max-width: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
main .floor-plan-section > div > div:last-child {
  flex: 1;
  max-width: 600px;
}
main .floor-plan-section > div > div:last-child p:first-child {
  color: #3b3d94;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
main .floor-plan-section > div > div:last-child h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 400;
}
main .floor-plan-section > div > div:last-child p:nth-of-type(2) {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}
main .floor-plan-section > div > div:last-child > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
main .floor-plan-section > div > div:last-child > div > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main .floor-plan-section > div > div:last-child > div > div > div {
  display: flex;
  align-items: center;
  gap: 15px;
}
main .floor-plan-section > div > div:last-child > div > div > div img {
  width: 20px;
  height: 20px;
}
main .floor-plan-section > div > div:last-child > div > div > div p {
  font-size: 15px;
  color: #222;
}
main .floor-plan-section > div > div:last-child > div > div a {
  margin-top: 15px;
  display: inline-block;
  font-size: 14px;
  color: #3b3d94;
  text-decoration: underline;
}
@media (max-width: 768px) {
  main .floor-plan-section > div {
    flex-direction: column;
  }
  main .floor-plan-section > div > div:first-child,
  main .floor-plan-section > div > div:last-child {
    max-width: 100%;
  }
  main .floor-plan-section > div > div:last-child h1 {
    font-size: 28px;
  }
  main .floor-plan-section > div > div:last-child p {
    font-size: 14px;
  }
}
main .location-section {
  padding: 40px 100px;
}
main .location-section .location-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
main .location-section .location-text {
  flex: 1;
  min-width: 320px;
}
main .location-section .location-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
  text-transform: uppercase;
}
main .location-section .location-text h2 span {
  font-family: "jost", sans-serif;
  font-weight: 400;
}
main .location-section .location-text .description {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 30px;
  font-weight: 400;
}
main .location-section .location-text .nearby-locations h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
  text-transform: uppercase;
}
main .location-section .location-text .nearby-locations .nearby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
main .location-section .location-text .nearby-locations .nearby-grid .location-category {
  margin-bottom: 20px;
}
main .location-section .location-text .nearby-locations .nearby-grid .location-category h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f27928;
}
main .location-section .location-text .nearby-locations .nearby-grid .location-category ul {
  list-style: none;
  padding: 0;
}
main .location-section .location-text .nearby-locations .nearby-grid .location-category ul li {
  font-size: 15px;
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
  color: #444;
}
main .location-section .location-text .nearby-locations .nearby-grid .location-category ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #3b3d94;
  font-weight: bold;
}
main .location-section .location-map {
  flex: 1;
  height: 650px;
  min-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
main .location-section .location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 992px) {
  main .location-section {
    padding: 40px 40px;
  }
  main .location-section .nearby-locations .nearby-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  main .location-section .location-map {
    height: 450px;
  }
}
@media (max-width: 768px) {
  main .location-section {
    padding: 20px;
  }
  main .location-section .location-content {
    flex-direction: column;
    gap: 30px;
  }
  main .location-section .location-text h2 {
    font-size: 22px;
    line-height: 1.4;
    text-align: center;
  }
  main .location-section .location-text .description {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }
  main .location-section .location-text .nearby-locations h3 {
    font-size: 18px;
    text-align: center;
  }
  main .location-section .location-text .nearby-locations .nearby-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  main .location-section .location-text .nearby-locations .location-category h4 {
    font-size: 16px;
    text-align: center;
  }
  main .location-section .location-text .nearby-locations .location-category ul li {
    font-size: 14px;
  }
  main .location-section .location-map {
    width: 100%;
    height: 280px;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  main .location-section .location-text h2 {
    font-size: 20px;
  }
  main .location-section .location-text .description {
    font-size: 13px;
  }
  main .location-section .nearby-locations h3 {
    font-size: 16px;
  }
  main .location-section .nearby-locations .location-category h4 {
    font-size: 14px;
  }
  main .location-section .nearby-locations .location-category ul li {
    font-size: 13px;
  }
}
main .contact-section {
  padding: 50px 5%;
  background: #f4f4f4;
}
main .contact-section .contact-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
main .contact-section .contact-info {
  flex: 1;
  min-width: 280px;
}
main .contact-section .contact-info h2 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
main .contact-section .contact-info h2 span {
  font-family: "jost", sans-serif;
  font-weight: 400;
}
main .contact-section .contact-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}
main .contact-section .contact-info ul {
  list-style: none;
  padding: 0;
}
main .contact-section .contact-info ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #222;
}
main .contact-section .contact-info ul li strong {
  color: #3b3d94;
}
main .contact-section .contact-form {
  flex: 1;
  min-width: 320px;
}
main .contact-section .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "jost", sans-serif;
}
main .contact-section .contact-form form .form-row .form-group {
  position: relative;
}
main .contact-section .contact-form form .form-group.full {
  width: 100%;
  position: relative;
}
main .contact-section .contact-form form .form-group.floating input,
main .contact-section .contact-form form .form-group.floating textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 14px 10px 6px;
  font-size: 15px;
  background: transparent;
  outline: none;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
main .contact-section .contact-form form .form-group.floating label {
  position: absolute;
  left: 10px;
  top: 14px;
  color: #888;
  font-size: 15px;
  pointer-events: none;
  transition: 0.3s ease;
}
main .contact-section .contact-form form .form-group.floating input:focus + label,
main .contact-section .contact-form form .form-group.floating input:valid + label,
main .contact-section .contact-form form .form-group.floating textarea:focus + label,
main .contact-section .contact-form form .form-group.floating textarea:valid + label {
  top: -10px;
  font-size: 13px;
  color: #3b3d94;
}
main .contact-section .contact-form form .form-group.floating textarea {
  resize: vertical;
}
main .contact-section .contact-form form .styled-btn {
  background: #3b3d94;
  border: none;
  color: white;
  font-size: 15px;
  padding: 14px 25px;
  border-radius: 6px;
  transition: background 0.3s ease;
}
main .contact-section .contact-form form .styled-btn:hover {
  background: #3c3d7d;
}
@media (max-width: 768px) {
  main .contact-section {
    padding: 60px 20px;
  }
  main .contact-section .contact-container {
    flex-direction: column;
    gap: 40px;
  }
  main .contact-section .contact-info {
    text-align: center;
  }
  main .contact-section .contact-info h2 {
    font-size: 26px;
  }
  main .contact-section .contact-info p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  main .contact-section .contact-info ul li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  main .contact-section .contact-form form {
    gap: 20px;
  }
  main .contact-section .contact-form form .form-row {
    flex-direction: column;
    gap: 15px;
  }
  main .contact-section .contact-form form .form-group.floating input,
  main .contact-section .contact-form form .form-group.floating textarea {
    font-size: 14px;
    padding: 12px 8px 6px;
  }
  main .contact-section .contact-form form .form-group.floating label {
    font-size: 13px;
  }
  main .contact-section .contact-form form .styled-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
}
main footer {
  padding: 10px 0;
  text-align: center;
  font-weight: 300;
}
main footer small {
  font-size: 10px;
  font-family: "jost", sans-serif;
}
main .modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
main .modal.show {
  display: flex;
}
main .modal .modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main .modal .modal-content img {
  width: 100px;
}
main .modal .modal-content h2 {
  margin: 10px 0;
  font-size: 2rem;
  color: #f27928;
}
main .modal .modal-content .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
}
main .modal .modal-content input {
  width: 100%;
  margin: 10px 0;
  padding: 0.8rem;
  border: none;
  border-bottom: 1px solid #ccc;
}
main .modal .modal-content input:focus {
  border-color: #6a0dad;
  box-shadow: 0 0 5px rgba(106, 13, 173, 0.3);
}
main .modal .modal-content button {
  background: #3b3d94;
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  margin: 10px 0;
}
main .modal .modal-content button:hover {
  background: #3c3d7d;
}
main .floating-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10000;
}
main .floating-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3b3d94;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
main .floating-icons a:hover {
  background: #585aca;
  transform: scale(1.1);
}
main .floating-icons a img {
  width: 20px;
}/*# sourceMappingURL=style.css.map */