@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

*{
    font-family: "Quicksand", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
  }

/* Base responsive styles */
:root {
    --padding-mobile: 1rem;
    --padding-tablet: 2rem;
    --padding-desktop: 3rem;
}


.main__container {
    height: 100%;
}

.section__hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    transition: background-image 0.5s ease-in-out;
}


.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: var(--color-white);
    text-align: center;
  }
  
  .hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
  }
  
  .hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3rem;
    width: 80%;
    max-width: 1000px;
    border-radius: 15px;
}

.hero__content h1 {
    font-size: 90px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__title{
    font-size: 90px !important;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 1) !important;
}

.hero__content p {
    font-size: 1.8em;
    margin: 10px 0 40px;
    color: #f0f0f0;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7) !important;

}

.hero__content button {
    padding: 15px 40px;
    font-size: 1.2em;
    color: white;
    background: transparent;
    /* background: linear-gradient(45deg, #007BFF, #00bfff); */
    border: 2px solid white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__content button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #0056b3, #0099ff);
}

.hero__content button:active {
    transform: translateY(-1px);
}

/* Update navigation styles */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px var(--padding-mobile);
    position: absolute;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav.scrolled {
    position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  /* background-color: #510057; */
  padding: 15px var(--padding-mobile);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 999;
  padding-bottom: 10px;
  padding-top:0;
    /* other fixed nav styles */
  }

  .nav.scrolled .nav__links a{
    color: black !important;
  }

  .nav.scrolled .nav__links a:hover{
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255) !important;
    border-radius: 5px;
  }

.logo {
    display: flex;
    align-items: center;
}

.logo__img {
    width: 120px;
    height: 120px; /* Adjust based on your logo size */
    width: auto;
    transition: all 0.2s ease;
}

.nav.scrolled .logo__img {
    width: 120px;
    height: 120px; 
}

@media (max-width: 768px) {
    .logo__img {
        height: 120px;
        width: 120px;
    }
}

.nav__links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav__links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
}

.nav__links a:hover {
    background-color: white;
    color: black;
    border-radius: 5px;
}
/* 
.hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3rem;
    width: 80%;
    max-width: 1000px;
    border-radius: 15px;
}

.hero__content h1 {
    font-size: 4.5em;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__content p {
    font-size: 1.8em;
    margin: 10px 0 40px;
    color: #f0f0f0;
}

.hero__content button {
    padding: 15px 40px;
    font-size: 1.2em;
    color: white;
    background: transparent;
    border: 2px solid white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__content button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #0056b3, #0099ff);
}

.hero__content button:active {
    transform: translateY(-1px);
} */

.carousel-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
}

.carousel-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    transition: background 0.3s;
}

.carousel-nav button:hover {
    background: rgba(255, 255, 255, 0.4);
}

.progress-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    width: 33.33%;
    height: 100%;
    background: white;
    transition: width 0.5s ease-in-out;
}

.slide-count {
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

.slide-count span {
    margin: 0 2px;
}

.about-section {
    background-image: url('./img/map-texture.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.left-content {
    flex: 1;
    max-width: 40%;
}

.left-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #666;
}

.left-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.left-content h1 span {
    color: #0078FF;
}

.right-content {
    flex: 1;
    max-width: 60%;
}

.right-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* .button {
	display: inline-block;
	color: #214963;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	padding: 14px 40px;
	border-radius: 50px;
	min-width: 160px;
	letter-spacing: .050em;
	text-decoration: none;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}
.button:hover {
	color: #fff;
	background-color: #214963;
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
	-webkit-box-shadow: 0 20px 38px rgba(0,0,0,.16);
	box-shadow: 0 20px 38px rgba(0,0,0,.16)
} */

.btn {
    display: inline-block;
	color: #214963;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	padding: 14px 40px;
	border-radius: 50px;
	min-width: 160px;
	letter-spacing: .050em;
	text-decoration: none;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
    border: 2px solid #214963;
}

.btn.btn--primary{
    color:white;
    text-align: center;
    padding: 1.5rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    background-color: #214963;
    /* display: flex; */
    justify-content: center;
}
/* 
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: all 0.4s ease-in-out;
    border-radius: 30px;
    z-index: 1;
} */

/* .btn:hover::before {
    opacity: 1;
    transform: scale(1.2);
} */

.btn:hover {
    color: #fff;
	background-color: #214963;
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
	-webkit-box-shadow: 0 20px 38px rgba(0,0,0,.16);
	box-shadow: 0 20px 38px rgba(0,0,0,.16)
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn:active {
    transform: translateY(2px);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.visa-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: #333;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #007bff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
}

.visa-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.visa-card {
    display: flex;
    flex-direction: row; /* Ensures side-by-side layout */
    align-items: stretch; /* Stretch child elements to equal height */
    border-radius: 10px;
    /* overflow: hidden; */
    width: 90%;
    margin: auto;
    min-height: 300px; /* Minimum height for consistency */
    background: inherit;
}

.visa-container.alternate .visa-card {
    flex-direction: row-reverse;
}

.visa-image {
    position: relative;
    flex: 1;
    /* width: 470px;
    height: 515px; */
    background: #eee;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
}

.visa-image img {
    /* width: 470px;
    height: 515px;
    object-fit: cover;
    border-radius: 2rem; */
    width: 100%; /* Ensure image fills the container */
    height: 100%; /* Fill the height of the container */ /* Scale image while maintaining aspect ratio */
    border-radius: 2rem;
}


.title-tag{
    position: absolute;
    top: 20px; /* Distance from the top */
    right: 20px; /* Distance from the right */
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    padding: 20px 40px; /* Padding for the text */
    border-radius: 10px; /* Rounded corners for the overlay */
    text-align: center; /* Center-align text */
    font-size: 2rem;
    color:#214862;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7), /* Inner white border */
                  0 0 0 12px rgba(0, 0, 0, 0.2); /* Outer shadow border */
  }
/* .title-tag {
    position: absolute;
    top: 15px;
    left: 40%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    text-align: left;
} */

.price-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    text-align: left;
}

.price-tag strong {
    font-size: 18px;
    display: block;
}

.visa-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    text-align: left;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-left: 100px;
    box-sizing: border-box;
}

.visa-content .btn{
    width: max-content;
}



.visa-container.alternate .visa-card {
    flex-direction: row-reverse; /* Flip layout for alternate styles */
    align-items: stretch; /* Ensure both sections match height */
}

.visa-container.alternate .visa-content {
    margin-left: 0;
    margin-right: 100px;
}

.visa-title {
    display: flex;
    align-items: center;
    font-size: 55px;
    margin-bottom: 20px;
    color: #333;
}

.flag-icon {
    width: 150px;
    height: 150px;
    margin-right: 15px;
    border-radius: 50%;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

.visa-details {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    line-height: 1.6;
    color: #555;
}

.visa-details li {
    /* margin-bottom: 10px; */
    position: relative;
    padding-left: 25px;
    font-weight: 500;
}

.visa-details li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 14px;
    color: #27ae60;
}

.note {
    margin: 20px 0;
    font-size: 16px;
    color: #333333;
    font-weight: 600;
}

/* .btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
} */

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1100;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: rgb(0, 0, 0);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

.nav__menu {
    z-index: 1050;
}

/* Navigation responsive styles */
@media (max-width: 768px) {
    .nav {
        padding: 15px var(--padding-mobile);
        /* flex-direction: column; */
        gap: 1rem;
    }

    .nav__links {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav__links a {
        display: block;
        padding: 0.8rem;
        color: black !important;
        font-size: 1rem;
    }

    .hamburger {
        display: block;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.7);
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__links {
        flex-direction: column;
        align-items: center;
    }

    .nav__links li {
        margin: 15px 0;
    }

    .logo {
        z-index: 1050;
    }

    .flag-icon{
        width: 50px !important;
        height: 50px !important;
    }

}



/* Packages Section */
.packages-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 4rem var(--padding-desktop);
    background: #f5f5f5;
}

.package {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.package img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package:hover img {
    transform: scale(1.1);
}

.package-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.package-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.package-content p {
    font-size: 1rem;
    margin: 0.3rem 0;
    opacity: 0.9;
}

.package-content .btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: white;
    color: #333;
    border-radius: 25px;
    transition: transform 0.3s;
}

.package-content .btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .packages-section {
        grid-template-columns: 1fr;
        padding: 2rem var(--padding-mobile);
    }

    .package img {
        height: 250px;
    }
}

/* Hero section responsive styles */
@media (max-width: 768px) {
    .hero__content {
        width: 90%;
        padding: 1.5rem;
    }

    .hero__title {
        font-size: 2.5em !important; 
    }

    .btn.btn--primary{
        font-size: 12px !important;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        padding: 14px 40px; 
    }

    .hero__content h1 {
        font-size: 2.5em;
    }

    .hero__content p {
        font-size: 1.2em;
    }

    .hero__content button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .carousel-nav {
        bottom: 20px;
        right: 20px;
    }

    .progress-container {
        bottom: 20px;
    }
}

/* About section responsive styles */
@media (max-width: 768px) {
    .about-section {
        padding: 2rem var(--padding-mobile);
    }

    .container {
        flex-direction: column;
        gap: 2rem;
    }

    .left-content,
    .right-content {
        max-width: 100%;
        text-align: center;
    }

    .left-content h1 {
        font-size: 2rem;
    }
}

/* Visa cards responsive styles */
@media (max-width: 992px) {
    .visa-card {
        flex-direction: column !important;
        margin: 0 var(--padding-mobile);
    }

    .visa-image {
        width: 100% !important;
        height: 100% !important;
    }

    .visa-image img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover;
        aspect-ratio: 1/1;
    }

    .visa-content {
        padding: 1.5rem;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero__content h1 {
        font-size: 2em;
    }

    .progress-bar {
        width: 150px;
    }

    .visa-title {
        font-size: 1.2rem;
    }

    .visa-details li {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Tablet devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero__content h1 {
        font-size: 3.5em;
    }

    .container {
        padding: 0 var(--padding-tablet);
    }
}

/* Large screens */
@media (min-width: 1025px) {
    .container {
        padding: 0 var(--padding-desktop);
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .section__hero {
        height: -webkit-fill-available;
    }
}

.packages-header {
    text-align: center;
    padding: 4rem 1rem 2rem;
    background: #f5f5f5;
}

.section-subtitle {
    color: #007BFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #007BFF;
    border-radius: 2px;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

@media (max-width: 768px) {
    .packages-header {
        padding: 3rem 1rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .floating-buttons{
        gap: 60px !important;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .left-content,
    .right-content {
        max-width: 100%;
    }
}
/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  }
  
  .testimonials-header {
    padding: 0 1rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .testimonials-header .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
  }
  
  .testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-container {
    width: 100%;
    overflow: hidden;
  }
  
  .testimonial-track {
    display: flex;
    position: relative;
    width: 100%;
  }
  
  .testimonial-card {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 2rem;
    box-sizing: border-box;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  
  .testimonial-content {
    text-align: center;
  }
  
  .testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 0.5rem;
  }
  
  .testimonial-content span {
    font-size: 1rem;
    color: #888;
  }
  
  .slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .prev, .next {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #007bff;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  
  .dots {
    display: flex;
    gap: 0.5rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .dot.active {
    background: #007bff;
  }
  
  @media (max-width: 768px) {
    .testimonial-card {
      text-align: center;
    }
  }
  

/* Footer Styles */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 0 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--padding-mobile);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer__col h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer__col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer__col p {
  color: #999;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer__col ul {
  list-style: none;
  padding: 0;
}

.footer__col ul li {
  margin-bottom: 0.8rem;
}

.footer__col ul li a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__col ul li a:hover {
  color: #fff;
}

.contact__info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #999;
}

.contact__info li i {
  color: #007bff;
  margin-top: 5px;
}

.social__links {
  display: flex;
  gap: 1rem;
}

.social__links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social__links a:hover {
  background: #007bff;
  transform: translateY(-3px);
}

.footer__bottom {
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid #333;
}

.footer__bottom p {
  color: #999;
  margin: 0;
}


/* Responsive Footer */
@media (max-width: 992px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
  
  .footer__col {
    text-align: center;
  }
  
  .social__links {
    justify-content: center;
  }
  
  .contact__info li {
    justify-content: center;
  }
}


.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 1000;
}

.floating-button {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

.floating-button i {
  font-size: 24px;
  color: #333;
}

.floating-button:hover {
  transform: translateY(-5px);
}

.floating-button.instagram {
  background-color: #E4405F;
}

.floating-button.instagram i {
  color: #fff;
}

.floating-button.facebook {
  background-color: #3b5998;
}

.floating-button.facebook i {
  color: #fff;
}

.floating-button.whatsapp {
  background-color: #25D366;
}

.floating-button.whatsapp i {
  color: #fff;
}
.about {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fff, var(--color-secondary));
    position: relative;
    overflow: hidden;
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.about__header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
}

.about__overview {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(52, 0, 58, 0.1); */
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.about__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about__card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(52, 0, 58, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 0, 58, 0.2);
}

.about__card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.about__card:hover i {
    transform: scale(1.2);
}

.about__card h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about__card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.about__card:hover h3::after {
    width: 100px;
}

.about__card p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .about__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }
    
    .about__cards {
        grid-template-columns: 1fr;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .about__card {
        padding: 2rem 1.5rem;
    }
}

