/* Modern Landing Page Styles */
:root {
    --primary-color: #d0a747;
    --primary-light: #e8c97d;
    --primary-dark: #b88f2e;
    --secondary-color: #2a2a2a;
    --accent-color: #f8f9fa;
    --success-color: #4CAF50;
    --info-color: #2196F3;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --transition-speed: 0.3s;
    --border-radius: 16px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

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

/* Hero Section */
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 90vh;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 90% 10%, rgba(208, 167, 71, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 10% 90%, rgba(208, 167, 71, 0.05) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
    animation: float 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: -5s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: -15s;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.25rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 0.5rem 1rem;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.hero-title {
    font-size: 4rem;
    background: linear-gradient(45deg, var(--secondary-color) 30%, #555 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(208, 167, 71, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.counter {
    display: inline-block;
    min-width: 2ch;
    text-align: right;
}

.stat-suffix, .stat-prefix {
    display: inline-block;
    margin-left: 0.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* --- Enhanced Pro Hero Section --- */
.pro-hero {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #fffbe6 100%);
  overflow: hidden;
}
.hero-bg-gradient {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, #d0a747 0%, #fffbe6 100%);
  opacity: 0.12;
  z-index: 0;
}
.brand-highlight {
  color: #d0a747;
  font-weight: 700;
  letter-spacing: 1px;
}
.hero-title .highlight {
  color: #b88f2e;
  background: linear-gradient(90deg, #d0a747 30%, #b88f2e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero-description .highlight {
  color: #b88f2e;
  font-weight: 600;
}
.hero-cta-btn {
  display: inline-block;
  margin: 2rem auto 1.5rem auto;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #d0a747 60%, #b88f2e 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 6px 24px rgba(208,167,71,0.12);
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}
.hero-cta-btn i {
  margin-right: 0.7em;
}
.hero-cta-btn:hover {
  background: linear-gradient(90deg, #b88f2e 0%, #d0a747 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 32px rgba(208,167,71,0.18);
}

/* Card Grid */
/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    position: relative;
    transition: all var(--transition-speed);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(208, 167, 71, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: all var(--transition-speed);
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-speed);
    z-index: 1;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.service-card:hover::before {
    opacity: 0.05;
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.service-icon {
    position: relative;
    margin-bottom: 2rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(208, 167, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform var(--transition-speed);
}

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

.icon-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.2;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.service-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    background: white;
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed);
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.action-btn.primary-action {
    background: var(--primary-color);
    color: white;
}

.action-btn.primary-action:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.card-footer {
    padding: 1rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(208, 167, 71, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.feature-tag i {
    font-size: 0.75rem;
}

/* Service Cards */
.card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    position: relative;
    overflow: hidden;
}

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

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed);
}

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

.card .icon {
    background: rgba(208, 167, 71, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform var(--transition-speed);
}

.card:hover .icon {
    transform: scale(1.1);
}

.card .title {
    width: 100%;
    margin: 0;
    text-align: center;
    color: #cfa647;
    font-weight: 600;
    font-size: 22px;
}

/* Modern Buttons */
.button-container {
    margin: 0.75rem 0;
}

.btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    background: white;
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    font-weight: 500;
    transition: all var(--transition-speed);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed);
    z-index: -1;
}

.btn:hover {
    color: white;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* About Section */
.cube-section {
    padding: 3rem 0;
    background: linear-gradient(to right, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.cube-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(208, 167, 71, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cube-box-desc {
    flex: 1;
    padding-right: 4rem;
}

.sm-title {
    color: var(--primary-color);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.lg-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cube-desc {
    color: #666;
    line-height: 1.7;
}

.cube-desc h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.cube-box-img {
    flex: 1;
    position: relative;
}

.cube-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Get In Touch Section */
.get-in-touch {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b88f2e 100%);
    color: white;
    padding: 3rem 0 5rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.get-in-touch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.get-in-touch-main {
    position: relative;
    z-index: 2;
}

.get-in-touch-responsive {
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.get-in-touch .sm-title {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.get-in-touch .lg-title {
    font-size: 42px;
    margin-bottom: 35px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--primary-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-item {
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-text label, .hours-text label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 500;
}

.tel-number {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-speed);
    letter-spacing: 1px;
}

.tel-number:hover {
    opacity: 0.9;
    transform: translateX(5px);
}

.email-link, .address-link {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all var(--transition-speed);
    opacity: 0.9;
}

.email-link:hover, .address-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

.contact-item:hover i {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.office-hours {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.office-hours i {
    font-size: 1.5rem;
}

.office-hours span {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.get-in-touch-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-speed);
    border: 2px solid white;
    margin-top: 1rem;
}

.get-in-touch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: transparent;
    color: white;
}

/* Why Dubai Section */
.why-dubai-desc {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* --- Modern Footer Redesign --- */
.footer-section {
  background: linear-gradient(120deg, #fffbe6 60%, #f8f9fa 100%);
  color: #222;
  padding: 2.2rem 0 0.7rem 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -8px 32px rgba(208,167,71,0.07);
  position: relative;
  margin-top: 3rem;
}
.footer-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-section img {
  filter: drop-shadow(0 2px 8px rgba(208,167,71,0.08));
}
.footer-desc-line {
  font-size: 0.98rem;
  margin: 0.7rem 0 1rem 0;
  color: #6c6c6c;
  margin: 1.2rem 0 1.5rem 0;
  line-height: 1.7;
}
.footer-menu-wrapper {
  gap: 2.5rem;
}
.footer-menu-box b {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  display: block;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li {
  margin-bottom: 0.3rem;
}
.footer-menu a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover {
  color: #d0a747;
  text-decoration: underline;
}
.footer-menu-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu-info li {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-icon {
  opacity: 0.8;
  margin-right: 0.5rem;
}
.social a {
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 0.2s;
}
.social a:hover {
  transform: scale(1.12) rotate(-6deg);
}
.footer-section strong {
  color: #b88f2e;
}
.footer-section .w-25 {
  min-width: 220px;
  max-width: 320px;
}
.footer-section .footer-copyright {
  margin-top: 1.2rem;
  padding-top: 0.5rem;
  font-size: 0.92rem;
  color: #888;
  justify-content: space-between;
}
.footer-gradient-bar {
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #d0a747 0%, #b88f2e 100%);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  margin-bottom: 1.2rem;
}
.footer-main {
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-brand {
  min-width: 180px;
  max-width: 260px;
}
.footer-newsletter {
  min-width: 180px;
  max-width: 260px;
  margin-top: 1.5rem;
}
.newsletter-form {
  display: flex;
  margin-top: 0.7rem;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(208,167,71,0.07);
  overflow: hidden;
}
.newsletter-form input[type="email"] {
  border: none;
  padding: 0.5rem 0.7rem;
  font-size: 0.95rem;
  flex: 1;
  border-radius: 30px 0 0 30px;
  outline: none;
}
.newsletter-form button {
  background: linear-gradient(90deg, #d0a747 60%, #b88f2e 100%);
  color: #fff;
  border: none;
  padding: 0 0.8rem;
  font-size: 1rem;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: linear-gradient(90deg, #b88f2e 0%, #d0a747 100%);
}
.newsletter-note {
  font-size: 0.9rem;
  margin-top: 0.3rem;
  display: block;
  color: #b88f2e;
}
.footer-contact {
  min-width: 180px;
  max-width: 260px;
}
.footer-section .footer-menu-info i.footer-icon {
  font-size: 1.1rem;
  color: #b88f2e;
  margin-right: 0.5rem;
  opacity: 0.9;
}
.footer-section .social i {
  font-size: 1.3rem;
  color: #b88f2e;
  margin-right: 0.7rem;
  transition: color 0.2s, transform 0.2s;
}
.footer-section .social i:hover {
  color: #d0a747;
  transform: scale(1.18) rotate(-8deg);
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .footer-section {
    padding: 1.2rem 0 0.2rem 0;
  }
  .footer-gradient-bar {
    margin-bottom: 0.5rem;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-stats {
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 calc(50% - 2rem);
    }

    .cube-box-desc {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .d-flex {
        flex-direction: column;
    }

    .lg-title {
        font-size: 2rem;
    }

    .service-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .stat-item {
        flex: 0 0 100%;
    }

    .get-in-touch-responsive {
        padding: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }

    .tel-number {
        font-size: 2rem;
    }

    .action-btn {
        padding: 0.875rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-aos="custom-fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-aos="custom-fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--card-index) * 0.1s);
}

.card {
    animation: fadeIn 0.6s ease-out forwards;
}

.grid-container > *:nth-child(1) { animation-delay: 0.1s; }
.grid-container > *:nth-child(2) { animation-delay: 0.2s; }
.grid-container > *:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Pro Hero Section - Mobile Styles */
@media (max-width: 600px) {
  .pro-hero .hero-title {
    font-size: 2.2rem;
  }
  .pro-hero .hero-description {
    font-size: 1.1rem;
    padding: 0 0.5rem;
  }
  .hero-cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.2rem;
  }
}

.btn {
    color: #e8e8e8;
    text-decoration: none;
    padding: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin: 10px;
    width: 300px;
    font-size: 16px;
    background: #cfa647;
    }

    .btn:hover {
    outline: 2px solid #cfa647;
    background: transparent;
    color: #cfa647;
    }

    .card {
    min-width: 200px;
    height: 250px;
    margin: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    background: #1716168a;
    border-radius: 10px;
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #cfa647;
    }

    .icon {
    margin: 0 auto;
    width: 100%;
    height: 80px;
    max-width: 80px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.8s ease;
    background-position: 0px;
    background-size: 200px;
    }

    .card .title {
    width: 100%;
    margin: 0;
    text-align: center;
    color: #cfa647;
    font-weight: 600;
    font-size: 22px;
    }

    .card .text {
    width: 80%;
    margin: 0 auto;
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
    color: white;
    font-weight: 200;
    letter-spacing: 2px;
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease;
    }

    .card:hover {
    height: 350px;
    padding: 0px;
    }

    .card:hover .text {
    transition: all 0.3s ease;
    opacity: 1;
    max-height: 40px;
    }

    .card:hover .icon {
    margin-top: -140px;
    }

    header, .header, .navbar {
    position: relative;
    z-index: 1000;
    }

    .bg-animation,
    .hero-section::before,
    .hero-section::after {
    pointer-events: none; /* allow clicks to pass through */
    }

    .header .nav-menu .menu-list .sub-menu .menu-item {
    margin-bottom: 0.5rem;
    }

    @media (min-width: 1208px) and (max-width: 1600px) {
    .elig-btn {
        margin: 100px 0px 0px 0px
    }

    .home-header-bg .header-info-wrapper {
        width: 100%;
        display: inline-block;
    }

    .home-header-bg .header-info-wrapper h1 {
        font-size: 30px;
        padding-top: 0.4rem;
        width: 35%;
        float: left
    }

    .elig-btn-cont {
        float: left;
        margin: 100px 0px 0px 100px
    }

    .home-header-bg {
        height: 160vh !important;
    }

    .btn {
        font-size: 15px;
        margin: 5px;
        padding: 8px;
        ;
    }

    .header .nav-menu .menu-list .sub-menu .menu-item {
        margin-bottom: 0.1rem;
    }

    .header .nav-menu .menu-list .sub-menu {
        padding: 0.2rem 1rem;
    }

    .card {
        height: 230px;
    }

    .card:hover {
        height: 330px;
    }

    .card:hover .icon {
        margin-top: -100px;
    }

    .cardmt {
        margin-top: 25px;
    }
    }

    @media (min-width: 1600px) {
    .cardmt {
        margin-top: 50px;
    }
    }

    .cardmt {
    margin-top: 25px;
    }

    .blink-style {
    text-align: center;
    display: flex;
    justify-content: center;
    }

    .blink-style h2 {
    text-align: center;
    font-family: Verdana;
    color: #ffc310;
    animation: blink-text 1.5s linear infinite;
    font-size: 6em;
    width: 380px;
    }

    @keyframes blink-text {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        backdrop-filter: blur(10px);
    }

    100% {
        opacity: 0;
    }
    }

    .home-header-bg {
    height: 110vh;
    }

    @media (max-width: 899px) {
    .home-header-bg {
        height: auto !important;
    }

    .card:hover {
        height: 420px;
    }

    .elig-btn-cont {
        margin: 30px 0px 0px 0px;
        width: 100%
    }
    }

    .card2:hover .icon {
    margin-top: -190px;
    }

    .card2:hover {
    height: 350px;
    ;
    }

    .card3:hover .icon {
    margin-top: 0px;
    }

    .card2 .btn {
    padding: 6px;
    margin: 6px 10px;
    }

    .home-header-bg {
    height: 145vh;
    }
    .m-auto {
    margin: auto;
    }

    .btn1 {
    top: 70% !important;
    }

    .btn2 {
    top: 79% !important;
    }

    .btn3 {
    top: 88% !important;
    }

