/* Global Styles */
:root {
    --primary-color: #0056b3;    /* Blue */
    --secondary-color: #4dabf7;  /* Sky Blue */
    --dark-color: #003366;       /* Dark Blue */
    --light-color: #e6f7ff;      /* Light Sky Blue */
    --text-color: #333;          /* Almost Black */
    --white-color: #ffffff;      /* White */
    --gray-color: #f5f5f5;       /* Light Gray */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title .underline {
    height: 4px;
    width: 60px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    position: relative;
}

.section-title .underline::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    height: 4px;
    width: 15px;
    background-color: var(--primary-color);
}

.section-title .underline::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    height: 4px;
    width: 15px;
    background-color: var(--primary-color);
}

section {
    padding: 80px 0;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

#header .logo img {
    height: 50px;
}

#header nav ul {
    display: flex;
}

#header nav ul li {
    margin-left: 25px;
}

#header nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

#header nav ul li a:hover,
#header nav ul li a.active {
    color: var(--primary-color);
}

#header nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

#header nav ul li a:hover::after,
#header nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    height: 3px;
    width: 25px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Banner Section */
.banner-section {
    height: 100vh;
    position: relative;
    padding: 0;
    margin-top: 80px;
    overflow: hidden;
}

.banner-swiper {
    width: 100%;
    height: 100%;
}

.banner-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--white-color);
    width: 100%;
    z-index: 2;
    padding: 0 15%;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 700px;
}

.animate-text {
    overflow: hidden;
    position: relative;
}

.banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp 0.8s forwards 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-content h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    animation: lineExpand 1s forwards 1s;
}

.banner-content h1 .highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.separator {
    width: 60px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.5s forwards 0.9s;
}

.separator span {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    animation: separatorExpand 1s forwards 1s;
}

.banner-content p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s forwards 0.6s;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.btn-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s forwards 1s;
}

.btn.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    border: 2px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    z-index: 1;
}

.btn.btn-primary span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn.btn-primary i {
    margin-left: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--white-color);
    transition: all 0.4s ease;
    z-index: 1;
}

.btn.btn-primary:hover {
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(77, 171, 247, 0.4);
    transform: translateY(-3px);
}

.btn.btn-primary:hover::before {
    width: 100%;
}

.btn.btn-primary:hover i {
    transform: translateX(5px);
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes lineExpand {
    to {
        width: 100px;
    }
}

@keyframes separatorExpand {
    to {
        width: 100%;
    }
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.3);
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--primary-color);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
    width: 30px;
    border-radius: 10px;
}

/* About Section */
.about-section {
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    right: -150px;
    top: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--light-color);
    opacity: 0.5;
    z-index: 0;
}

.reveal-title h2 {
    position: relative;
    overflow: hidden;
}

.reveal-title h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 80px;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease;
}

.reveal-title.active h2::after {
    transform: scaleX(1);
}

.section-title .underline span {
    display: block;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 1.2s ease;
}

.section-title.active .underline span {
    width: 100%;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1;
    position: relative;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

.about-tagline {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.about-tagline .accent-line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    margin-right: 15px;
}

.about-tagline h3 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.feature:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

.feature i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.feature:hover i {
    color: var(--white-color);
}

.feature span {
    font-weight: 500;
    font-size: 14px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    transform: scale(1.05);
}

.about-image-wrapper:hover .about-image img {
    transform: scale(1);
}

.image-border {
    position: absolute;
    background-color: var(--secondary-color);
    z-index: 1;
    transition: all 0.5s ease;
}

.top-left {
    top: 0;
    left: 0;
    width: 80px;
    height: 4px;
}

.top-right {
    top: 0;
    right: 0;
    width: 4px;
    height: 80px;
}

.bottom-left {
    bottom: 0;
    left: 0;
    width: 4px;
    height: 80px;
}

.bottom-right {
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
}

.about-image-wrapper:hover .image-border {
    background-color: var(--primary-color);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 130px;
    height: 130px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 5px solid var(--white-color);
    animation: pulse-badge 2s infinite;
}

.experience-badge:hover {
    transform: scale(1.05) rotate(5deg);
}

/* Standards Badge Styling */
.standards-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--white-color) 0%, var(--light-color) 100%);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.15);
    z-index: 4;
    border: 1px solid rgba(77, 171, 247, 0.3);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    width: 95%;
    max-width: 450px;
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.standards-badge.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.standards-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.standards-text i {
    color: var(--primary-color);
    font-size: 18px;
    animation: pulse-award 2s infinite;
}

.standards-text span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--secondary-color);
    margin: 0 auto;
    display: inline-block;
    width: auto;
    max-width: 0;
    animation: typing 3.5s steps(45, end) forwards, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { max-width: 0 }
    to { max-width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--secondary-color) }
}

@keyframes pulse-award {
    0% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(77, 171, 247, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(77, 171, 247, 0.8);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(77, 171, 247, 0.5);
    }
}

.experience-badge .years {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}

@keyframes pulse-badge {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 86, 179, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
    }
}

/* Mission and Vision Section */
.mission-vision-section {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.2;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    width: 60px;
    height: 60px;
    animation: float 18s infinite ease-in-out reverse;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    width: 40px;
    height: 40px;
    animation: float 12s infinite ease-in-out 2s;
}

.particle:nth-child(4) {
    top: 10%;
    left: 70%;
    width: 50px;
    height: 50px;
    animation: float 20s infinite ease-in-out 1s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    animation: float 25s infinite ease-in-out 3s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, 30px) rotate(90deg);
    }
    50% {
        transform: translate(0, 60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, 30px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.mission-vision-section .container {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.active .section-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.mission-vision-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.mv-card {
    flex: 1;
    position: relative;
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    transform: translateY(30px);
    opacity: 0;
}

.mission-box {
    animation: fadeSlideUp 0.8s forwards 0.3s;
}

.vision-box {
    animation: fadeSlideUp 0.8s forwards 0.6s;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mv-card .icon-container {
    position: absolute;
    top: 20px;
    left: 25px;
    z-index: 2;
}

.mv-card .icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e90ff, #4169e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 3;
}

.mv-card .icon-circle i {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mv-card:hover .icon-circle {
    transform: scale(1.1) rotate(360deg);
}

.card-content {
    padding: 50px 30px 30px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mv-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    font-size: 24px;
    position: relative;
    font-weight: 700;
}

.mv-card .separator {
    width: 60px;
    height: 3px;
    background-color: rgba(0, 86, 179, 0.2);
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.mv-card .separator span {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    animation: lineExpand 1.5s forwards 1s;
}

.mv-card p {
    text-align: center;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

.card-accent {
    position: absolute;
    background-color: var(--secondary-color);
    opacity: 0.1;
    transition: all 0.5s ease;
}

.top-right {
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-bottom-left-radius: 100%;
}

.bottom-left {
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-top-right-radius: 100%;
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-card:hover .card-accent {
    opacity: 0.2;
    width: 60px;
    height: 60px;
}

.logo-box {
    flex: 0.8;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    animation: fadeIn 1s forwards 0.9s;
    opacity: 0;
}

.logo-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 171, 247, 0.3) 0%, rgba(77, 171, 247, 0) 70%);
    animation: glow 3s infinite alternate;
    top: 0;
    left: 0;
}

.logo-image {
    max-width: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.5s ease;
}

.logo-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(77, 171, 247, 0.3);
    animation: rotate 20s linear infinite;
}

.logo-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.logo-text span:first-child {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-text span:last-child {
    font-size: 16px;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes glow {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.values-circles {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.value-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--white-color), var(--light-color));
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-circle:nth-child(1) {
    animation: fadeSlideUp 0.8s forwards 1.2s;
}

.value-circle:nth-child(2) {
    animation: fadeSlideUp 0.8s forwards 1.4s;
}

.value-circle:nth-child(3) {
    animation: fadeSlideUp 0.8s forwards 1.6s;
}

.value-circle::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 86, 179, 0.2);
    animation: rotateReverse 20s linear infinite;
}

.value-circle:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.circle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.circle-content i {
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-circle:hover i {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.circle-content h4 {
    font-size: 14px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

@keyframes rotateReverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/* Services Section */
.services-section {
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--light-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: 1;
}

.services-bg-glow {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 171, 247, 0.1) 0%, rgba(77, 171, 247, 0) 70%);
    z-index: 1;
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.1;
        transform: scale(1);
    }
    100% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.services-section .container {
    position: relative;
    z-index: 2;
}

/* Services Overview */
.services-overview {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.overview-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.overview-text.active {
    opacity: 1;
    transform: translateX(0);
}

.overview-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.overview-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.overview-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.overview-stats {
    display: flex;
    gap: 40px;
}

.stat {
    position: relative;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.stat-number span:first-child {
    margin-right: 3px;
}

.stat-number span:last-child {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.overview-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.overview-image.active {
    opacity: 1;
    transform: translateX(0);
}

.overview-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 86, 179, 0.4), rgba(0, 86, 179, 0));
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.service-card {
    height: 280px;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card.active {
    opacity: 1;
    transform: translateY(0);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    cursor: pointer;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.card-front {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-back {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    transform: rotateY(180deg);
    justify-content: space-between;
}

.service-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--light-color) 0%, rgba(230, 247, 255, 0.7) 100%);
    border-radius: 50%;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 32px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.2);
    position: relative;
    z-index: 1;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 86, 179, 0.3);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.corner-accent {
    position: absolute;
    background-color: var(--secondary-color);
    opacity: 0.1;
    transition: all 0.5s ease;
}

.top-right {
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom-left-radius: 100%;
}

.bottom-left {
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top-right-radius: 100%;
}

.service-card:hover .corner-accent {
    opacity: 0.2;
}

.card-front h3 {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-back p {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-service:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-service i {
    transition: all 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(5px);
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(77, 171, 247, 0.07) 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 86, 179, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.services-cta.active {
    opacity: 1;
    transform: translateY(0);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 171, 247, 0.1) 0%, rgba(77, 171, 247, 0) 70%);
}

.services-cta h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.counter {
    display: inline-block;
}

/* Leadership Section */
.owners-section {
    background-color: var(--white-color);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.leadership-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(245, 245, 245, 0.7) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(245, 245, 245, 0.7) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: 1;
}

.leadership-decor {
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(77, 171, 247, 0.07) 100%);
    z-index: 1;
}

.owners-section .container {
    position: relative;
    z-index: 2;
}

.leadership-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.leadership-intro.active {
    opacity: 1;
    transform: translateY(0);
}

.leadership-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.owner-card {
    background-color: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.owner-card.active {
    opacity: 1;
    transform: translateY(0);
}

.owner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.owner-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.owner-card:hover::before {
    transform: scaleX(1);
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.owner-image-container {
    position: relative;
    margin-bottom: 25px;
    align-self: center;
}

.image-frame {
    width: 180px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.owner-card:hover .image-frame {
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.2);
}

.frame-border {
    position: absolute;
    background-color: var(--secondary-color);
    z-index: 2;
    transition: all 0.5s ease;
}

.frame-border.top {
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
}

.frame-border.right {
    top: 0;
    right: 0;
    width: 3px;
    height: 0;
}

.frame-border.bottom {
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
}

.frame-border.left {
    bottom: 0;
    left: 0;
    width: 3px;
    height: 0;
}

.owner-card:hover .frame-border.top,
.owner-card:hover .frame-border.bottom {
    width: 100%;
}

.owner-card:hover .frame-border.right,
.owner-card:hover .frame-border.left {
    height: 100%;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.owner-card:hover .image-frame img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.owner-card:hover .experience-badge {
    transform: scale(1.1) rotate(10deg);
    background: var(--secondary-color);
}

.owner-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.reveal-text .reveal-item {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.reveal-text.active .reveal-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.reveal-text.active .reveal-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.reveal-text.active .reveal-item:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.reveal-text.active .reveal-item:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.reveal-text.active .reveal-item:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.name-title {
    text-align: center;
    margin-bottom: 15px;
}

.owner-details h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.title-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--light-color), rgba(230, 247, 255, 0.5));
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.separator {
    width: 60px;
    height: 3px;
    background-color: rgba(0, 86, 179, 0.1);
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.separator span {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    transition: width 1s ease;
}

.owner-card:hover .separator span {
    width: 100%;
}

.bio {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    flex-grow: 1;
}

.expertise-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    display: inline-block;
    background-color: rgba(0, 86, 179, 0.05);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.tag:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-btn i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-btn:hover i {
    transform: scale(1.2);
}

.social-btn .tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--text-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-btn .tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 5px 5px 5px;
    border-style: solid;
    border-color: transparent transparent var(--text-color) transparent;
}

.social-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -30px;
}

.social-btn.linkedin {
    background-color: #f5f9ff;
    color: #0a66c2;
}

.social-btn.linkedin:hover {
    background-color: #0a66c2;
    color: white;
}

.social-btn.facebook {
    background-color: #f5f9ff;
    color: #1877f2;
}

.social-btn.facebook:hover {
    background-color: #1877f2;
    color: white;
}

.social-btn.whatsapp {
    background-color: #f5f9ff;
    color: #25d366;
}

.social-btn.whatsapp:hover {
    background-color: #25d366;
    color: white;
}

.social-btn.email {
    background-color: #f5f9ff;
    color: #ea4335;
}

.social-btn.email:hover {
    background-color: #ea4335;
    color: white;
}

.leadership-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(77, 171, 247, 0.07) 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
    border: 1px solid rgba(0, 86, 179, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.leadership-cta.active {
    opacity: 1;
    transform: translateY(0);
}

.leadership-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* Brands Section */
.brands-section {
    background-color: var(--white-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Luxury Background Elements */
.brands-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(249, 251, 253, 0.5) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(249, 251, 253, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
    z-index: 1;
}

.brands-decor-circle {
    position: absolute;
    top: -250px;
    right: -250px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(77, 171, 247, 0.07) 100%);
    z-index: 1;
}

.brands-decor-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 86, 179, 0.1), transparent);
    z-index: 1;
}

.brands-section .container {
    position: relative;
    z-index: 2;
}

/* Brands Intro */
.brands-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.brands-intro.active {
    opacity: 1;
    transform: translateY(0);
}

.brands-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* Carousel Container and Luxury Frame */
.brands-carousel-container {
    position: relative;
    margin: 50px 0;
    padding: 20px 0;
}

.carousel-frame {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.carousel-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: -1;
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--primary-color);
    opacity: 0.2;
    z-index: 1;
    transition: all 0.6s ease;
}

.frame-corner.top-left {
    top: 20px;
    left: 20px;
    border-top: 3px solid;
    border-left: 3px solid;
}

.frame-corner.top-right {
    top: 20px;
    right: 20px;
    border-top: 3px solid;
    border-right: 3px solid;
}

.frame-corner.bottom-left {
    bottom: 20px;
    left: 20px;
    border-bottom: 3px solid;
    border-left: 3px solid;
}

.frame-corner.bottom-right {
    bottom: 20px;
    right: 20px;
    border-bottom: 3px solid;
    border-right: 3px solid;
}

.carousel-frame:hover .frame-corner {
    width: 50px;
    height: 50px;
    opacity: 0.6;
}

.frame-edge {
    position: absolute;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    opacity: 0;
    transition: all 0.8s ease;
}

.frame-edge.top, .frame-edge.bottom {
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
}

.frame-edge.top {
    top: 0;
}

.frame-edge.bottom {
    bottom: 0;
}

.frame-edge.left, .frame-edge.right {
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 0;
}

.frame-edge.left {
    left: 0;
}

.frame-edge.right {
    right: 0;
}

.carousel-frame:hover .frame-edge.top, 
.carousel-frame:hover .frame-edge.bottom {
    width: 100%;
    opacity: 0.2;
}

.carousel-frame:hover .frame-edge.left, 
.carousel-frame:hover .frame-edge.right {
    height: 100%;
    opacity: 0.2;
}

/* Brands Carousel */
.brands-carousel {
    position: relative;
    overflow: visible;
}

.brand-card {
    position: relative;
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
    opacity: 0;
}

.brand-card.active {
    opacity: 1;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.1);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.brand-image {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
}

.brand-image img {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.brand-card:hover .brand-image img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.9) 0%, rgba(77, 171, 247, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.5s ease;
}

.brand-card:hover .brand-overlay {
    opacity: 1;
    transform: scale(1);
}

.overlay-content {
    text-align: center;
    padding: 20px;
    width: 100%;
}

.brand-name {
    color: var(--white-color);
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.brand-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.view-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 16px;
    transform: scale(0);
    opacity: 0;
    transition: all 0.4s ease 0.3s;
}

.brand-card:hover .brand-name,
.brand-card:hover .brand-category {
    transform: translateY(0);
    opacity: 1;
}

.brand-card:hover .view-details {
    transform: scale(1);
    opacity: 1;
}

.view-details:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) !important;
}

/* Custom Navigation and Pagination */
.brands-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.brands-pagination {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 30px !important;
}

.brands-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 86, 179, 0.2);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.brands-pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 5px;
    background-color: var(--primary-color);
}

.brands-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brands-button-prev, .brands-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 86, 179, 0.05);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.brands-button-prev:hover, .brands-button-next:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

.brands-button-prev.swiper-button-disabled, 
.brands-button-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Brands CTA */
.brands-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(77, 171, 247, 0.07) 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    border: 1px solid rgba(0, 86, 179, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.brands-cta.active {
    opacity: 1;
    transform: translateY(0);
}

.brands-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* Fade-in-up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Social Media Section */
.social-section {
    background-color: var(--white-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Luxury Background Elements */
.social-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(245, 245, 245, 0.8) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: 1;
}

.social-decor-circle {
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(77, 171, 247, 0.07) 100%);
    z-index: 1;
}

.social-decor-pattern {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 86, 179, 0.07) 20%, rgba(0, 86, 179, 0.07) 80%, transparent);
    z-index: 1;
}

.social-section .container {
    position: relative;
    z-index: 2;
}

/* Social Intro */
.social-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.social-intro.active {
    opacity: 1;
    transform: translateY(0);
}

.social-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* Social Platforms */
.social-platforms {
    position: relative;
    margin: 50px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.social-card-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.social-card-wrapper.active {
    opacity: 1;
    transform: translateY(0);
}

.social-card {
    display: block;
    color: var(--text-color);
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(77, 171, 247, 0.08);
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    transform-style: preserve-3d;
    will-change: transform;
}

.social-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; /* Safari support */
    box-shadow: inset 0 0 0 1px rgba(77, 171, 247, 0.05);
}

.card-front {
    background-color: rgba(255, 255, 255, 0.97);
    background-image: radial-gradient(circle at 90% 10%, rgba(77, 171, 247, 0.03) 0%, transparent 30%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    transform: rotateY(0deg);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZGVmcz4KPHBhdHRlcm4gaWQ9InBhdHRlcm4iIHg9IjAiIHk9IjAiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+CjxyZWN0IHg9IjE4IiB5PSIxOCIgd2lkdGg9IjQiIGhlaWdodD0iNCIgZmlsbD0icmdiYSg3NywgMTcxLCAyNDcsIDAuMDgpIiAvPgo8L3BhdHRlcm4+CjwvZGVmcz4KPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIgLz4KPC9zdmc+');
}

.social-card:hover .card-overlay {
    opacity: 0.1;
}

.card-hover {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.98));
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hover-content {
    text-align: center;
    width: 100%;
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    transition: all 0.5s ease;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(77, 171, 247, 0.1));
}

.social-card:hover .icon-wrapper::before {
    opacity: 0.15;
    transform: scale(1.1);
}

.social-card i {
    font-size: 38px;
    transition: all 0.5s ease;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 86, 179, 0.15);
}

.hover-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f5faff 0%, #e6f7ff 100%);
    box-shadow: 0 10px 25px rgba(77, 171, 247, 0.15),
                inset 0 -4px 8px rgba(0, 0, 0, 0.03),
                inset 0 4px 8px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.hover-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0));
    border-radius: 50% 50% 0 0;
    opacity: 0.8;
}

.hover-icon i {
    font-size: 32px;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(77, 171, 247, 0.2);
    z-index: 2;
    position: relative;
}

.card-content {
    margin-top: 15px;
    width: 100%;
}

.social-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.5s ease;
}

.card-separator {
    width: 60px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.05);
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.card-separator span {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: width 1s cubic-bezier(0.19, 1, 0.22, 1);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.social-card:hover .card-separator span {
    width: 100%;
}

.social-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 90%;
    margin: 0 auto;
}

.social-card .highlight {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.social-card .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    z-index: -1;
    opacity: 0.2;
    transition: all 0.5s ease;
}

.social-card:hover .highlight::after {
    height: 50%;
    opacity: 0.3;
}

.hover-content h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #555;
}

.feature-list li i {
    font-size: 14px;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    letter-spacing: 0.5px;
    z-index: 1;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
}

.social-btn::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

.social-btn i {
    font-size: 15px;
    transition: all 0.4s ease;
    position: relative;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn:hover::after {
    opacity: 1;
}

.social-btn:hover i {
    transform: translateX(5px);
}

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

/* Button glow effect */
.btn-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 50px;
    opacity: 0;
    transition: all 0.5s ease;
    filter: blur(10px);
}

.social-btn:hover .btn-glow {
    opacity: 0.6;
    transform: scale(1.1);
}

/* Platform-specific button styling */
.social-card.facebook .social-btn {
    background-color: #1877f2;
    color: white;
    border-color: rgba(24, 119, 242, 0.3);
}

.social-card.facebook .social-btn:hover {
    background-color: #0a65d9;
    border-color: rgba(24, 119, 242, 0.5);
}

.social-card.facebook .btn-glow {
    background-color: rgba(24, 119, 242, 0.5);
}

.social-card.instagram .social-btn {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-color: rgba(225, 48, 108, 0.3);
}

.social-card.instagram .social-btn:hover {
    background: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #FD1D1D, #405DE6, #5851DB);
    border-color: rgba(225, 48, 108, 0.5);
}

.social-card.instagram .btn-glow {
    background: linear-gradient(45deg, rgba(64, 93, 230, 0.5), rgba(131, 58, 180, 0.5), rgba(225, 48, 108, 0.5), rgba(253, 29, 29, 0.5));
}

.social-card.linkedin .social-btn {
    background-color: #0a66c2;
    color: white;
    border-color: rgba(10, 102, 194, 0.3);
}

.social-card.linkedin .social-btn:hover {
    background-color: #0952a0;
    border-color: rgba(10, 102, 194, 0.5);
}

.social-card.linkedin .btn-glow {
    background-color: rgba(10, 102, 194, 0.5);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.5s ease;
    filter: blur(15px);
}

.social-card:hover .card-glow {
    opacity: 0.5;
}

/* Facebook Styling */
.social-card.facebook .icon-wrapper {
    background-color: rgba(24, 119, 242, 0.1);
}

.social-card.facebook .icon-wrapper::before {
    background-color: rgba(24, 119, 242, 0.4);
}

.social-card.facebook i {
    color: #1877f2;
}

.social-card.facebook .card-overlay {
    background-color: #1877f2;
}

.social-card.facebook .card-separator span {
    background-color: #1877f2;
}

.social-card.facebook .highlight::after {
    background-color: #1877f2;
}

.social-card.facebook .feature-list li i {
    color: white;
    background-color: #1877f2;
}

.social-card.facebook .social-btn {
    background-color: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.social-card.facebook .social-btn:hover {
    background-color: #1877f2;
    color: white;
}

.social-card.facebook .card-glow {
    background-color: rgba(24, 119, 242, 0.3);
}

/* Instagram Styling */
.social-card.instagram .icon-wrapper {
    background-color: rgba(225, 48, 108, 0.1);
}

.social-card.instagram .icon-wrapper::before {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.4), rgba(253, 29, 29, 0.4), rgba(245, 96, 64, 0.4));
}

.social-card.instagram i {
    color: #e1306c;
    background: -webkit-linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-card.instagram .card-overlay {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-card.instagram .card-separator span {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-card.instagram .highlight::after {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-card.instagram .feature-list li i {
    color: white;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-card.instagram .social-btn {
    background-color: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.social-card.instagram .social-btn:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.social-card.instagram .card-glow {
    background: linear-gradient(45deg, rgba(64, 93, 230, 0.3), rgba(88, 81, 219, 0.3), rgba(131, 58, 180, 0.3), rgba(193, 53, 132, 0.3), rgba(225, 48, 108, 0.3), rgba(253, 29, 29, 0.3));
}

/* LinkedIn Styling */
.social-card.linkedin .icon-wrapper {
    background-color: rgba(10, 102, 194, 0.1);
}

.social-card.linkedin .icon-wrapper::before {
    background-color: rgba(10, 102, 194, 0.4);
}

.social-card.linkedin i {
    color: #0a66c2;
}

.social-card.linkedin .card-overlay {
    background-color: #0a66c2;
}

.social-card.linkedin .card-separator span {
    background-color: #0a66c2;
}

.social-card.linkedin .highlight::after {
    background-color: #0a66c2;
}

.social-card.linkedin .feature-list li i {
    color: white;
    background-color: #0a66c2;
}

.social-card.linkedin .social-btn {
    background-color: rgba(10, 102, 194, 0.1);
    color: #0a66c2;
}

.social-card.linkedin .social-btn:hover {
    background-color: #0a66c2;
    color: white;
}

.social-card.linkedin .card-glow {
    background-color: rgba(10, 102, 194, 0.3);
}

/* Social CTA & Stats */
.social-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(77, 171, 247, 0.07) 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    border: 1px solid rgba(0, 86, 179, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.social-cta.active {
    opacity: 1;
    transform: translateY(0);
}

.social-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.social-cta .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-item .counter {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-item .plus, .stat-item .percent {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    top: -5px;
}

.stat-item p {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
    margin-bottom: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .social-stats {
        gap: 20px;
    }
    
    .social-card {
        height: 300px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Luxury Background Elements */
.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 245, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: -1;
}

.contact-decor-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.05) 0%, rgba(30, 144, 255, 0.01) 70%, transparent 100%);
    bottom: -250px;
    left: -150px;
    z-index: -1;
    animation: float 15s ease-in-out infinite;
}

.contact-decor-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(30, 144, 255, 0.1) 50%, transparent 100%);
    top: 50%;
    left: 0;
    z-index: -1;
    transform: rotate(-5deg);
}

/* Contact Intro */
.contact-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.contact-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* Contact Content Layout */
.contact-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

/* Contact Top Content - Info + Form */
.contact-top-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    width: 100%;
}

@media (max-width: 992px) {
    .contact-top-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Info Cards Wrapper */
.contact-info-wrapper {
    grid-column: span 6;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
}

@media (max-width: 992px) {
    .contact-info-wrapper {
        grid-column: 1 / -1;
        transform: translateX(0px);
    }
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-info {
        gap: 20px;
    }

    .contact-section {
        padding: 70px 0 50px;
    }

    .contact-intro {
        margin-bottom: 30px;
    }
}

/* Luxury Info Cards */
.info-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 220, 255, 0.5);
    opacity: 0;
    transform: translateY(20px);
}

.info-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(30, 144, 255, 0.2), rgba(30, 144, 255, 0.5));
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(100, 180, 255, 0.3);
}

.info-card:hover::before {
    transform: scaleX(1);
}

/* Icon Container with Luxury Effects */
.icon-container {
    position: relative;
    
    filter: drop-shadow(0 5px 15px rgba(30, 144, 255, 0.15));
    align-self: flex-start;
    flex-shrink: 0;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(50, 150, 255, 0.2), rgba(100, 180, 255, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.info-card:hover .icon-wrapper {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.6), rgba(65, 105, 225, 0.8));
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.25), inset 0 2px 5px rgba(255, 255, 255, 0.5);
}

.info-card:hover .icon-wrapper::before {
    opacity: 1;
}

.info-card i {
    font-size: 24px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.info-card:hover i {
    transform: scale(1.15);
    animation: icon-pulse 1.5s ease-in-out infinite;
}

@keyframes icon-pulse {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Dual Pulse Ring Effect */
.pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    border: 2px solid rgba(30, 144, 255, 0.3);
    opacity: 0;
    transform: scale(0.8);
    z-index: 0;
}

.info-card:hover .pulse-ring {
    animation: luxury-pulse 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    border: 1px solid rgba(30, 144, 255, 0.2);
    opacity: 0;
    animation: luxury-pulse-delayed 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
    animation-delay: 0.5s;
}

@keyframes luxury-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

@keyframes luxury-pulse-delayed {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* Text Content */
.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.info-card:hover .info-content h3 {
    color: #1e90ff;
}

.separator {
    width: 40px;
    height: 2px;
    background: rgba(30, 144, 255, 0.3);
    margin: 10px 0;
    transition: all 0.4s ease;
}

.separator span {
    display: block;
    width: 20px;
    height: 100%;
    background: rgba(30, 144, 255, 0.6);
    transition: all 0.4s ease;
}

.info-card:hover .separator {
    width: 50px;
}

.info-card:hover .separator span {
    width: 30px;
}

.info-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Support Badge & Map Container */
.contact-side-image {
    position: relative;
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
}

/* Luxury Map Container */
.map-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .map-container {
        margin-top: 30px;
    }
}

.map-frame {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(100, 180, 255, 0.3);
    background: white;
    transition: all 0.4s ease;
}

@media (max-width: 992px) {
    .map-frame {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .map-frame {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-frame {
        height: 300px;
    }
}

.map-frame:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* Luxury Map Corners */
.map-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border-color: rgba(30, 144, 255, 0.6);
    border-style: solid;
    border-width: 0;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.map-frame:hover .map-corner {
    opacity: 1;
    width: 35px;
    height: 35px;
}

.map-corner.top-left {
    top: 10px;
    left: 10px;
    border-top-width: 2px;
    border-left-width: 2px;
}

.map-corner.top-right {
    top: 10px;
    right: 10px;
    border-top-width: 2px;
    border-right-width: 2px;
}

.map-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.map-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

/* Map Content */
.map-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.4s ease;
    background-image: url('https://maps.googleapis.com/maps/api/staticmap?center=40.7127753,-74.0059728&zoom=14&size=600x350&scale=2&maptype=roadmap&style=feature:all|element:labels|visibility:off&style=feature:administrative|element:geometry|visibility:off&style=feature:road|element:geometry|color:0xffffff&style=feature:landscape|element:geometry|color:0xf5f5f5&style=feature:poi|element:geometry|color:0xe8e8e8&style=feature:water|element:geometry|color:0xc9d4f5&key=YOUR_API_KEY');
    background-position: center;
    background-size: cover;
}

.map-frame:hover .map-content {
    opacity: 1;
}

/* Luxury Pin Marker */
.map-pin-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.map-pin {
    position: relative;
    width: 30px;
    height: 40px;
    animation: pin-bounce 2s infinite ease-in-out;
}

@keyframes pin-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.pin-head {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1e90ff, #4169e1);
    border-radius: 50% 50% 50% 0;
    top: 0;
    left: 0;
    transform: rotate(-45deg);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pin-pulse 2s infinite ease-in-out;
}

@keyframes pin-pulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
    }
    50% {
        box-shadow: 0 8px 20px rgba(30, 144, 255, 0.6);
    }
}

.pin-head::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    transform: rotate(45deg);
}

.pin-shadow {
    position: absolute;
    width: 20px;
    height: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    bottom: -10px;
    left: 5px;
    filter: blur(2px);
    animation: shadow-pulse 2s infinite ease-in-out;
}

@keyframes shadow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(0.7);
        opacity: 0.15;
    }
}

/* Luxury Map Overlay */
.map-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 144, 255, 0.2);
    z-index: 2;
    font-weight: 600;
    font-size: 14px;
    color: #1e90ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    opacity: 0.8;
    transform: translateY(5px);
}

.map-overlay::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #1e90ff;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.map-frame:hover .map-overlay {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.support-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e90ff, #4169e1);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .support-badge {
        width: 130px;
        height: 130px;
    }
    
    .badge-content .number {
        font-size: 28px;
    }
    
    .badge-content .text {
        font-size: 12px;
    }
}

.support-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(30, 144, 255, 0.3);
    animation: pulse-light 2s ease-in-out infinite;
}

@keyframes pulse-light {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.badge-content {
    background: white;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-content .number {
    font-size: 32px;
    font-weight: 700;
    color: #1e90ff;
    line-height: 1;
}

.badge-content .text {
    font-size: 14px;
    font-weight: 600;
    color: #1e90ff;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Form Container */
.contact-form-container {
    grid-column: span 6;
    opacity: 0;
    transform: translateX(30px);
}

@media (max-width: 992px) {
    .contact-form-container {
        grid-column: 1 / -1;
        transform: translateX(0px);
    }
}

.form-header {
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

/* Luxury Form Card */
.form-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(200, 220, 255, 0.5);
    overflow: hidden;
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .form-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .form-card {
        padding: 20px;
    }
}

.form-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(100, 180, 255, 0.3);
}

/* Animated Corners */
.form-corners .corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: #1e90ff;
    border-style: solid;
    border-width: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.top-left {
    top: 10px;
    left: 10px;
    border-top-width: 2px;
    border-left-width: 2px;
}

.top-right {
    top: 10px;
    right: 10px;
    border-top-width: 2px;
    border-right-width: 2px;
}

.bottom-left {
    bottom: 10px;
    left: 10px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.bottom-right {
    bottom: 10px;
    right: 10px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

.form-card:hover .corner {
    width: 25px;
    height: 25px;
    opacity: 1;
}

/* Luxury Form Inputs */
.luxury-form {
    position: relative;
}

.floating-input {
    position: relative;
    margin-bottom: 30px;
}

.floating-input input,
.floating-input textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
    color: #555;
    border: none;
    border-bottom: 1px solid #ddd;
    background-color: transparent;
    transition: all 0.3s ease;
}

.floating-input input:focus,
.floating-input textarea:focus {
    outline: none;
    border-color: transparent;
}

.floating-input label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #999;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-input input:focus ~ label,
.floating-input input:valid ~ label,
.floating-input textarea:focus ~ label,
.floating-input textarea:valid ~ label {
    top: -10px;
    left: 0;
    font-size: 14px;
    color: #1e90ff;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1e90ff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-input input:focus ~ .input-line,
.floating-input textarea:focus ~ .input-line {
    width: 100%;
}

/* Textarea Specific */
.floating-input.textarea textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #1e90ff, #4169e1);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(30, 144, 255, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.submit-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.4);
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.submit-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(30, 144, 255, 0.3);
}

/* Luxury Contact Section */
.contact-section {
    position: relative;
    padding: 100px 0 70px;
    background: #f9f9f9;
    overflow: hidden;
}

/* Luxury Footer Section */
.luxury-footer {
    position: relative;
    padding: 100px 0 50px;
    overflow: hidden;
    background-color: #ffffff;
    color: #2a2a2a;
}

/* Luxury Background Elements */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 245, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: -1;
}

.footer-decor-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.05) 0%, rgba(30, 144, 255, 0.01) 70%, transparent 100%);
    top: -150px;
    right: -150px;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

.footer-decor-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(30, 144, 255, 0.1) 50%, transparent 100%);
    top: 70%;
    left: 0;
    z-index: -1;
    transform: rotate(-2deg);
}

.footer-decor-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(30, 144, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.5;
}

/* Footer Content Structure */
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    align-items: flex-start;
}

/* Logo Container with Frame */
.footer-logo-container {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.centered-logo {
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
}

.logo-frame {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.luxury-pulse {
    position: relative;
}

.luxury-pulse::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid rgba(30, 144, 255, 0.3);
    animation: logo-pulse 3s ease-in-out infinite;
    opacity: 0;
}

.luxury-pulse::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(30, 144, 255, 0.5);
    animation: logo-pulse 3s ease-in-out infinite 1.5s;
    opacity: 0;
}

@keyframes logo-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Luxury Logo Corners */
.logo-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(30, 144, 255, 0.6);
    border-style: solid;
    border-width: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.logo-frame:hover .logo-corner {
    width: 30px;
    height: 30px;
    opacity: 1;
}

.logo-corner.top-left {
    top: 0;
    left: 0;
    border-top-width: 2px;
    border-left-width: 2px;
}

.logo-corner.top-right {
    top: 0;
    right: 0;
    border-top-width: 2px;
    border-right-width: 2px;
}

.logo-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.logo-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

.footer-logo img {
    max-width: 150px;
    display: block;
    transition: transform 0.5s ease;
}

.floating-logo {
    animation: float-logo 6s ease-in-out infinite;
}

@keyframes float-logo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.logo-frame:hover img {
    transform: scale(1.05);
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.animated-glow {
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

.footer-logo-container:hover .logo-glow {
    opacity: 1;
    transform: scale(1.1);
}

.tagline {
    font-size: 18px;
    font-weight: 500;
    color: #1e90ff;
    margin-top: 15px;
    position: relative;
    display: inline-block;
    line-height: 1.4;
}

.fade-in-text {
    background: linear-gradient(to right, #1e90ff 0%, #4169e1 50%, #1e90ff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: text-shimmer 5s linear infinite;
}

@keyframes text-shimmer {
    to {
        background-position: 200% center;
    }
}

.tagline:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(30, 144, 255, 0.6), transparent);
    transition: width 0.5s ease;
}

.footer-logo-container:hover .tagline:after {
    width: 80%;
}

/* Footer Links Container */
.footer-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    flex: 2;
    justify-content: flex-end;
}

.footer-links-column {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-links-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-separator {
    width: 40px;
    height: 3px;
    background: rgba(30, 144, 255, 0.2);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.footer-separator span {
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    background: rgba(30, 144, 255, 0.6);
    transition: all 0.4s ease;
}

.footer-links-column:hover .footer-separator span {
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
    padding-left: 0;
    display: inline-block;
}

.footer-links a span {
    position: relative;
    z-index: 1;
}

.footer-links a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #1e90ff;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #1e90ff;
    padding-left: 5px;
}

.footer-links a:hover:before {
    width: 100%;
}

/* Footer Bottom with Social & Copyright */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(30, 144, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    gap: 30px;
}

/* Luxury Social Buttons */
.social-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.luxury-social {
    justify-content: center;
}

.social-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e90ff;
    font-size: 18px;
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 144, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.shimmer-effect::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.shimmer-effect:hover::before {
    top: 100%;
    left: 100%;
}

.social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.2);
}

.social-button i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-button:hover i {
    color: white;
    transform: scale(1.1);
}

/* Luxury Copyright Style */
.copyright {
    text-align: right;
}

.copyright-frame {
    position: relative;
    padding: 10px 20px;
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 50px;
    display: inline-block;
    transition: all 0.4s ease;
}

.luxury-border {
    position: relative;
    overflow: hidden;
}

.luxury-border::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.6), rgba(65, 105, 225, 0.6));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
}

.luxury-border:hover::after {
    opacity: 1;
}

.footer-bottom:hover .copyright-frame {
    border-color: rgba(30, 144, 255, 0.4);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.08);
}

.shimmer-text {
    background: linear-gradient(to right, #1e90ff, #4169e1, #1e90ff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: text-shimmer 3s infinite linear;
}

.copyright p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.current-year {
    color: #1e90ff;
    font-weight: 600;
}

/* Animation Classes */
.footer-logo-container.active,
.footer-links-column.active,
.footer-bottom.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links-container {
        justify-content: center;
        width: 100%;
    }
    
    .footer-links-column {
        text-align: center;
    }
    
    .footer-separator {
        margin: 0 auto 20px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .copyright {
        text-align: center;
        width: 100%;
    }
    
    .social-buttons {
        margin: 0 auto;
    }
}

/* Footer */
#footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 50px 0 20px;
    text-align: center;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 10px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 32px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .about-content {
        flex-direction: column;
    }

    .mission-vision-content {
        flex-direction: column;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #header nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background-color: var(--white-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }

    #header nav.active {
        left: 0;
    }

    #header nav ul {
        flex-direction: column;
        padding: 20px;
    }

    #header nav ul li {
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 28px;
    }

    .services-grid,
    .owners-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards-container {
        grid-template-columns: 1fr;
    }
}

/* Contact Cards Section Styles */
.contact-section {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    background-color: var(--white-color);
    background-image: linear-gradient(to bottom, #fff, #fafbff);
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZGVmcz4KPHBhdHRlcm4gaWQ9InBhdHRlcm4iIHg9IjAiIHk9IjAiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+CjxyZWN0IHg9IjE4IiB5PSIxOCIgd2lkdGg9IjQiIGhlaWdodD0iNCIgZmlsbD0icmdiYSg3NywgMTcxLCAyNDcsIDAuMDMpIiAvPgo8L3BhdHRlcm4+CjwvZGVmcz4KPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIgLz4KPC9zdmc+');
    pointer-events: none;
    opacity: 0.5;
}

.contact-decor-line {
    position: absolute;
    height: 300px;
    width: 1px;
    z-index: 0;
}

.contact-decor-line.left {
    top: 50px;
    left: 10%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0.05;
}

.contact-decor-line.right {
    top: 100px;
    right: 10%;
    background: linear-gradient(to bottom, transparent, var(--secondary-color), transparent);
    opacity: 0.05;
}

.contact-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    background-image: radial-gradient(circle at 10% 20%, rgba(77, 171, 247, 0.05) 0%, transparent 25%),
                      radial-gradient(circle at 85% 60%, rgba(0, 86, 179, 0.05) 0%, transparent 35%);
}

.contact-cards-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 80px;
}

.contact-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.contact-card {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-card.active {
    opacity: 1;
    transform: translateY(0);
}

.card-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.card-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none; /* Allow clicks to pass through */
}

.card-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(77, 171, 247, 0.2) 25%,
        rgba(0, 86, 179, 0.2) 50%,
        rgba(255, 255, 255, 0.5) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 2;
    opacity: 0.3;
    transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none; /* Allow clicks to pass through */
}

.card-content {
    padding: 45px 25px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    flex: 1;
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.icon-backdrop {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5faff 0%, #e6f7ff 100%);
    box-shadow: 0 10px 25px rgba(77, 171, 247, 0.1),
                inset 0 -4px 8px rgba(0, 0, 0, 0.03),
                inset 0 4px 8px rgba(255, 255, 255, 0.8);
    z-index: 1;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 3;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon-reflection {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 20px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0));
    opacity: 0.7;
    z-index: 2;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-separator {
    width: 50px;
    height: 2px;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.card-separator span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.3;
    transform: translateX(-100%);
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    letter-spacing: 0.5px;
}

.contact-card p {
    margin-bottom: 35px;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 15px;
    max-width: 90%;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-card .btn {
    margin-top: auto;
    transform: translateY(0);
    opacity: 0.9;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 20;
    pointer-events: auto;
}

.contact-card .btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s;
    transform: scale(0.5);
    pointer-events: none;
}

/* Hover Effects */
.card-frame:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 86, 179, 0.08);
}

.card-frame:hover .card-glass {
    background: rgba(255, 255, 255, 0.95);
}

.card-frame:hover .card-border {
    opacity: 1;
    background-position: 200% 0;
    animation: border-flow 3s infinite alternate cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes border-flow {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.card-frame:hover .icon-backdrop {
    box-shadow: 0 15px 35px rgba(77, 171, 247, 0.2),
                inset 0 -4px 8px rgba(0, 0, 0, 0.03),
                inset 0 4px 8px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.card-frame:hover .card-icon i {
    color: var(--primary-color);
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(77, 171, 247, 0.3);
}

.card-frame:hover .icon-reflection {
    opacity: 0.9;
}

.contact-card:hover .card-separator span {
    transform: translateX(100%);
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Leadership CTA Styles */
.leadership-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--light-color) 0%, rgba(230, 247, 255, 0.6) 100%);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.leadership-cta .cta-content {
    flex: 1;
    text-align: center;
    z-index: 1;
}

.leadership-cta .cta-icon-left,
.leadership-cta .cta-icon-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--white-color) 0%, var(--light-color) 100%);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.15);
    margin: 0 20px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(77, 171, 247, 0.3);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    animation: float-icon 3s infinite ease-in-out alternate;
}

.leadership-cta .cta-icon-left {
    animation-delay: 0s;
}

.leadership-cta .cta-icon-right {
    animation-delay: 1.5s;
}

.leadership-cta .cta-icon-left i,
.leadership-cta .cta-icon-right i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.leadership-cta:hover .cta-icon-left,
.leadership-cta:hover .cta-icon-right {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.2);
}

.leadership-cta:hover .cta-icon-left i,
.leadership-cta:hover .cta-icon-right i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

@keyframes float-icon {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.contact-card:hover h3 {
    color: var(--primary-color);
    transform: scale(1.03);
    text-shadow: 0 2px 10px rgba(77, 171, 247, 0.1);
}

/* Brand Partners Enhancements */
.brand-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 5px;
    transition: all 0.4s ease;
    overflow: visible;
    position: relative;
}

.brand-image img {
    max-width: 140%;
    max-height: 120%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    filter: grayscale(0%);
    transform-origin: center;
    position: relative;
    z-index: 2;
}

.brand-card:hover .brand-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.brand-card {
    padding: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.brand-card:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.card-inner {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(230, 247, 255, 0.7);
    transform: scale(1);
}

.brand-card:hover .card-inner {
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
    border-color: rgba(77, 171, 247, 0.3);
}

.brands-swiper {
    padding: 20px 10px 50px;
}

.brands-section {
    background: linear-gradient(135deg, var(--white-color) 0%, var(--light-color) 100%);
}

.brands-section .section-subtitle {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 15px;
    opacity: 0.8;
}

.contact-card:hover p {
    color: #444;
}

.contact-card:hover .btn {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.15);
    opacity: 1;
}

.contact-card .btn:hover::after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.6s, transform 1.5s;
    animation: btn-shine 2s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes btn-shine {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Animations for fade-in-up class */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles for contact cards */
@media (max-width: 992px) {
    .contact-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}
