:root {
    --main_background: #fff;
    --main_string_color: #fff;
    --secondary_text_color: #1652bf;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    font-family: "Roboto", "Open Sans", sans-serif;
    background: var(--main_background);
    color: var(--main_string_color);
}

iframe,
video,
img {
    max-width: 100%;
}

a {
    transition: 0.5s all ease;
}

a:hover {
    text-decoration: none;
}

.custom-container {
    width: 60%;
    max-width: 60%;
    margin-right: auto;
    margin-left: auto;
}

.large-container {
    width: 70%;
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
}

header.main-header {
    position: relative;
    z-index: 5;
    width: 100%;
    transition: 0.3s all ease;
    min-height: 100vh;
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(252, 194, 54, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

/* Navigation Section */
header .section-menu {
    transition: all 0.4s ease;
    position: absolute;
    z-index: 100;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .section-menu.sticky {
    position: fixed;
    top: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(252, 194, 54, 0.2);
}

/* Navbar Container */
.section-menu .navbar {
    padding: 0;
    transition: all 0.3s ease;
}

.section-menu.sticky .navbar {
    padding: 15px 0;
}

/* Logo Styling */
.section-menu .navbar .navbar-brand {
    transition: all 0.3s ease;
}

.section-menu .navbar .navbar-brand img {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.section-menu.sticky .navbar .navbar-brand img {
    max-width: 100px;
}

/* Navigation Links */
.section-menu .navbar .navbar-nav {
    padding-left: 0;
    align-items: center;
    gap: 10px;
}

.section-menu .navbar .navbar-nav .nav-item {
    padding: 0;
    margin: 0 8px;
    position: relative;
}

.section-menu .navbar .navbar-nav .nav-item .nav-link {
    padding: 12px 20px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect for Nav Links */
.section-menu .navbar .navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 194, 54, 0.1) 0%, rgba(252, 194, 54, 0.05) 100%);
    transition: left 0.3s ease;
    border-radius: 25px;
}

.section-menu .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #fcc236;
    background: rgba(252, 194, 54, 0.1);
    transform: translateY(-2px);
}

.section-menu .navbar .navbar-nav .nav-item .nav-link:hover::before {
    left: 0;
}

/* Active Link Styling */
.section-menu .navbar .navbar-nav .nav-item .nav-link.active {
    color: #fcc236;
    background: rgba(252, 194, 54, 0.15);
    border: 1px solid rgba(252, 194, 54, 0.3);
}

/* Contact Info Section */
.section-menu .navbar .contact-info {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid #333;
    border-radius: 50px;
    padding: 12px 25px;
    transition: all 0.3s ease;
}

.section-menu .navbar .contact-info:hover {
    border-color: #fcc236;
    box-shadow: 0 5px 20px rgba(252, 194, 54, 0.2);
    transform: translateY(-2px);
}

.section-menu .navbar .contact-info .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fcc236 0%, #e6a82d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    color: #0a0a0a;
}

.section-menu .navbar .contact-info .info span {
    display: block;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.section-menu .navbar .contact-info .info a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.section-menu .navbar .contact-info .info a:hover {
    color: #fcc236;
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid #333;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 102; /* Changed from 101 to 102 */
}

.navbar-toggler:hover {
    border-color: #fcc236;
    background: rgba(252, 194, 54, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
}

/* NEW: Hide toggle button when menu is open */
.navbar-collapse.show ~ .navbar-toggler {
    opacity: 0;
    pointer-events: none;
}

header .header-content {
    position: relative;
    padding: 150px 0 100px;
    background: url("../images/works/1.webp") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

header .header-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(252, 194, 54, 0.1) 100%
    );
    z-index: 1;
}

header .header-content .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Hero Typography */
header .header-content .main-title h5 {
    color: #ccc;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

header .header-content .main-title h1 {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    font-size: 4.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

header .header-content .main-title span {
    color: #fcc236;
    position: relative;
}

header .header-content .main-title span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fcc236 0%, #e6a82d 100%);
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

/* Hero Description */
header .header-content .description {
    margin: 30px 0 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}

header .header-content .description .quick-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

header .header-content .description .quick-info span {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #ccc;
    position: relative;
    padding: 12px 25px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

header .header-content .description .quick-info span:hover {
    color: #fcc236;
    border-color: rgba(252, 194, 54, 0.3);
    transform: translateY(-3px);
}

/* Hero CTA Button */
header .header-content .social-button {
    margin: 40px auto 0;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #fcc236 0%, #e6a82d 100%);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(252, 194, 54, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(252, 194, 54, 0.5);
    color: #0a0a0a;
}

.hero-cta-button:hover::before {
    left: 100%;
}

.hero-cta-button i {
    transition: transform 0.3s ease;
}

.hero-cta-button:hover i {
    transform: translateX(5px);
}

section.about {
    position: relative;
    padding: 100px 0;
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(252, 194, 54, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    z-index: 1;
    overflow: hidden;
}

/* Add subtle animated background */
section.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 40% 80%, rgba(252, 194, 54, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.01) 0%, transparent 30%);
    animation: subtleMove 20s ease-in-out infinite;
    z-index: 1;
}

section.about .large-container {
    position: relative;
    z-index: 2;
}

/* Header Styling */
section.about .main-title h6 {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

section.about .main-title h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 2.5rem;
    line-height: 1.2;
}

/* Left Side - Image Container */
section.about .about-left {
    position: relative;
    display: block;
    margin-right: 0;
    height: 100%;
}

/* Modern Image Container */
section.about .about-left .image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

section.about .about-left .image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(252, 194, 54, 0.3);
}

section.about .about-left .image-container img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

section.about .about-left .image-container:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

/* Modern Achievement Badge */
section.about .about-left .achievement-badge {
    display: none !important;
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fcc236 0%, #e6a82d 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(252, 194, 54, 0.4);
    border: 4px solid #0a0a0a;
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
}

section.about .about-left .achievement-badge h3 {
    color: #0a0a0a;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

section.about .about-left .achievement-badge span {
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Experience Years Counter */
section.about .about-left .experience-counter {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 20px 25px;
    text-align: center;
    z-index: 3;
}

section.about .about-left .experience-counter h4 {
    color: #fcc236;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1;
}

section.about .about-left .experience-counter p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Side - Content */
section.about .about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 40px;
}

section.about .about-right .content-wrapper {
    max-width: 100%;
}

section.about .about-right p {
    font-size: 16px;
    color: #ccc;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 30px;
}

section.about .about-right p strong {
    color: #fcc236;
    font-weight: 600;
}

/* Modern Features List */
section.about .about-right .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px 30px;
}

section.about .about-right .features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    position: relative;
}

section.about .about-right .features-list li .icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #fcc236 0%, #e6a82d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0a0a0a;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

section.about .about-right .features-list li:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(252, 194, 54, 0.4);
}

section.about .about-right .features-list li .text {
    flex: 1;
}

section.about .about-right .features-list li .text p {
    color: #fff;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

section.about .about-right .features-list li:hover .text p {
    color: #fcc236;
}

/* Company Highlight Box */
section.about .about-right .company-highlight {
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px;
    margin: 35px 0;
    position: relative;
    overflow: hidden;
}

section.about .about-right .company-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 194, 54, 0.05) 0%, transparent 50%);
    border-radius: 20px;
}

section.about .about-right .company-highlight .highlight-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

section.about .about-right .company-highlight h4 {
    color: #fcc236;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

section.about .about-right .company-highlight p {
    color: #ccc;
    margin: 0;
    font-size: 16px;
    font-style: italic;
}

/* Call to Action Button */
section.about .about-right .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #fcc236 0%, #e6a82d 100%);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(252, 194, 54, 0.3);
    position: relative;
    overflow: hidden;
}

section.about .about-right .cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.6s ease;
}

section.about .about-right .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(252, 194, 54, 0.4);
    color: #0a0a0a;
}

section.about .about-right .cta-button:hover::before {
    left: 100%;
}

section.about .about-right .cta-button i {
    transition: transform 0.3s ease;
}

section.about .about-right .cta-button:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid #333;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #fcc236;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-item h3 {
    color: #fcc236;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.stat-item p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Services Section Styles */
section.services {
    position: relative;
    padding: 100px 0;
    background: #0a0a0a;
    background-image: radial-gradient(circle at 25% 25%, #1a1a1a 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, #151515 0%, transparent 50%);
    z-index: 1;
}

section.services .main-title h6 {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

section.services .main-title h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

section.services .services-list {
    margin-top: 60px;
    gap: 0;
}

section.services .services-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid #333;
    border-radius: 16px;
    margin: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 320px;
    padding: 0;
    backdrop-filter: blur(10px);
}

/* Remove the old counter styling */
section.services .services-item:before {
    display: none;
}

/* Add subtle glow effect */
section.services .services-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 194, 54, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 16px;
}

section.services .services-item:hover {
    transform: translateY(-8px);
    border-color: #fcc236;
    box-shadow: 0 20px 40px rgba(252, 194, 54, 0.15);
}

section.services .services-item:hover::after {
    opacity: 1;
}

section.services .services-icon {
    position: relative;
    background: linear-gradient(135deg, #fcc236 0%, #e6a82d 100%);
    box-shadow: 0 8px 32px rgba(252, 194, 54, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    padding: 1rem;
    margin: 30px auto 0;
    font-size: 40px;
    color: #0a0a0a;
    transition: all 0.4s ease;
}

/* Remove the rotating border */
section.services .services-icon::before {
    display: none;
}

section.services .services-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%);
    transition: all 0.4s ease;
}

section.services .services-item:hover .services-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 48px rgba(252, 194, 54, 0.4);
}

section.services .services-content {
    color: #ccc;
    padding: 25px 30px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

section.services .services-title {
    margin-bottom: 15px;
}

section.services .services-title a {
    font-weight: 600;
    text-decoration: none;
    font-size: 22px;
    color: #fff;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.3;
}

section.services .services-item:hover .services-title a {
    color: #fcc236;
}

section.services .services-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #aaa;
    margin: 0;
    transition: color 0.3s ease;
}

section.services .services-item:hover .services-text {
    color: #ccc;
}

/* Add a subtle pattern overlay */
section.services .services-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(252, 194, 54, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    border-radius: 16px;
    pointer-events: none;
}

.satis-header h1,
.satis-header p {
    color: white;
}

section.satisfaction {
    position: relative;
    padding: 120px 0;
    background: #000;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(252, 194, 54, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    overflow: hidden;
}

section.satisfaction .large-container {
    position: relative;
    z-index: 2;
}

/* Header Styling */
section.satisfaction .satis-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

section.satisfaction .satis-header h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

section.satisfaction .satis-header h1 span {
    color: #fcc236;
    position: relative;
    display: inline-block;
}

/* Add subtle animation to the "Estimate" text */
section.satisfaction .satis-header h1 span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fcc236 0%, #e6a82d 100%);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

.heading-divider {
    display: inline-block;
    position: relative;
    height: 4px;
    border-radius: 30px;
    background: linear-gradient(90deg, transparent 0%, #fcc236 50%, transparent 100%);
    width: 120px;
    margin: 20px auto;
    overflow: hidden;
}

.heading-divider:after {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    height: 4px;
    width: 40px;
    background: linear-gradient(90deg, transparent 0%, #fff 50%, transparent 100%);
    animation: shimmer 3s infinite linear;
    border-radius: 30px;
}

/* Description Text */
section.satisfaction .col-lg-8 p {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

section.satisfaction .col-lg-8 p strong {
    color: #fcc236;
    font-weight: 600;
}

/* Call-to-Action Button */
.estimate-cta {
    text-align: center;
    margin-top: 50px;
}

.estimate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, #fcc236 0%, #e6a82d 100%);
    color: #0a0a0a;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(252, 194, 54, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.estimate-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.estimate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(252, 194, 54, 0.4);
    color: #0a0a0a;
}

.estimate-btn:hover::before {
    left: 100%;
}

.estimate-btn:active {
    transform: translateY(-1px);
}

/* Add icon to button */
.estimate-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.estimate-btn:hover i {
    transform: translateX(5px);
}

/* Floating elements for visual interest */
section.satisfaction .floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(252, 194, 54, 0.1);
    pointer-events: none;
}

section.satisfaction .floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation: float1 15s ease-in-out infinite;
}

section.satisfaction .floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation: float2 20s ease-in-out infinite reverse;
}

section.satisfaction .floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}


section.works {
    position: relative;
    padding: 100px;
    background: #000;
    background-image: url(../images/bg-dotted.svg);
    z-index: 1;
    background-repeat: repeat;
}

section.works .gallery {
    margin-top: 50px;
}

section.works .gallery .work {
    background: #fff;
    margin: 15px 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
    transition: 0.2s all ease;
}

section.works .gallery .work:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85%;
    display: block;
    z-index: 1;
    content: "";
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 15, 0),
        rgba(15, 15, 15, 0.75) 100%
    );
    transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
    cursor: pointer;
}

section.works .gallery .work .work-box {
    position: relative;
}
section.works .gallery .work:hover {
    transform: scale(1.1);
    cursor: pointer;
}
section.works .gallery .work:hover:before {
    opacity: 0.1;
}
section.works .gallery .work .work-box .thumbnail {
    position: relative;
    display: block;
}

section.works .gallery .work .work-box img {
    width: 100%;
    height: 25vh;
    object-fit: cover;
}
section.works .gallery .work .work-box .inner {
    position: absolute;
    bottom: 0;
    left: 50%;
    padding: 30px 30px 20px;
    z-index: 999;
    width: 100%;
    transform: translateX(-50%);
    display: none;
}
section.works .gallery .work .work-box .inner h4 {
    color: white;
}

/* Modern Reviews Section Styles */
section.reviews {
    position: relative;
background: #000;
    background-image: radial-gradient(circle at 20% 20%, rgba(252, 194, 54, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    z-index: 1;
    overflow: hidden;
}

.vertical-lines {
    padding: 100px 0;
    background-image: none; /* Remove the old vertical lines */
    position: relative;
}

/* Add subtle animated background */
.vertical-lines::before {
    display: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(252, 194, 54, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.01) 0%, transparent 40%);
    animation: subtleFloat 15s ease-in-out infinite;
    z-index: 1;
}

/* Header Styling */
section.reviews .main-title h6 {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

section.reviews .main-title h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Swiper Container */
section.reviews .swiper {
    padding: 80px 20px 80px; /* Increased top padding to accommodate profile images */
    overflow: visible;
    position: relative;
    z-index: 2;
}

/* Fix swiper wrapper overflow */
section.reviews .swiper .swiper-wrapper {
    overflow: visible;
}

section.reviews .swiper .swiper-slide {
    overflow: visible;
}

/* Individual Review Item */
section.reviews .reviews .item {
    position: relative;
    z-index: 3; /* Higher z-index */
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid #333;
    border-radius: 20px;
    margin: 0;
    padding: 50px 40px 40px;
    text-align: center;
    min-height: 320px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    overflow: visible; /* Allow profile image to show outside */
    margin-top: 40px; /* Add margin to accommodate profile image */
}

/* Remove old quote icon */
section.reviews .reviews .item .icon {
    display: none;
}

/* Add modern quote styling */
section.reviews .reviews .item::before {
    content: """;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(252, 194, 54, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 1;
}

/* Hover Effects */
section.reviews .reviews .item:hover {
    transform: translateY(-8px);
    border-color: #fcc236;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
}

section.reviews .reviews .item:hover::after {
    opacity: 1;
}

/* Add subtle glow effect */
section.reviews .reviews .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 194, 54, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

/* Profile Image/Avatar */
section.reviews .reviews .item .figure {
    position: absolute;
    top: -35px; /* Moved up slightly */
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    background: transparent;
    z-index: 10; /* Very high z-index to ensure it's on top */
    width: 80px; /* Fixed width to prevent layout issues */
    height: 80px; /* Fixed height */
}

section.reviews .reviews .item .figure img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #fcc236;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 11;
}

section.reviews .reviews .item .figure .fa {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #fcc236;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    font-size: 35px;
    line-height: 62px;
    color: #fcc236;
    background: #1a1a1a;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 11;
}

section.reviews .reviews .item:hover .figure img,
section.reviews .reviews .item:hover .figure .fa {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(252, 194, 54, 0.3);
}

/* Star Rating */
section.reviews .reviews .item .rating {
    list-style: none;
    margin: 30px 0 25px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

section.reviews .reviews {
    overflow: hidden;
}

section.reviews .reviews .item .rating .star {
    font-size: 18px;
    transition: all 0.3s ease;
}

section.reviews .reviews .item .rating .star.gold .fa {
    color: #fcc236;
    text-shadow: 0 0 10px rgba(252, 194, 54, 0.5);
}

section.reviews .reviews .item .rating .star .fa {
    color: #444;
}

section.reviews .reviews .item:hover .rating .star.gold .fa {
    color: #ffd700;
    transform: scale(1.1);
}

/* Review Text */
section.reviews .reviews .item p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 25px;
    font-style: italic;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

section.reviews .reviews .item:hover p {
    color: #e0e0e0;
}

/* Reviewer Name */
section.reviews .reviews .item .writer-name {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

section.reviews .reviews .item:hover .writer-name {
    color: #fcc236;
}

/* Add a subtle line above the name */
section.reviews .reviews .item .writer-name::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fcc236 50%, transparent 100%);
    border-radius: 1px;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px !important;
    text-align: center;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #444;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #fcc236;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(252, 194, 54, 0.5);
}

/* Navigation Arrows (if you want to add them) */
.swiper-button-next,
.swiper-button-prev {
    color: #fcc236;
    background: rgba(26, 26, 26, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(252, 194, 54, 0.1);
    border-color: #fcc236;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}


/* Modern Contact Section Styles */
section.contact {
    position: relative;
    padding: 100px 0;
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(252, 194, 54, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    z-index: 1;
    overflow: hidden;
}

/* Add subtle animated background */
section.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(252, 194, 54, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.01) 0%, transparent 30%);
    animation: subtleMove 20s ease-in-out infinite;
    z-index: 1;
}

section.contact .large-container {
    position: relative;
    z-index: 2;
}

/* Header Styling */
section.contact .main-title h6 {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

section.contact .main-title h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* Contact Form Container */
.contact-form-wrapper {
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid #333;
    border-radius: 25px;
    padding: 60px 50px;
    margin-top: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Add subtle glow effect */
.contact-form-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 194, 54, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 25px;
}

.contact-form-wrapper:hover::after {
    opacity: 1;
}

/* Form Styling */
section.contact .form-control {
    background: #222;
    border: 2px solid #333;
    border-radius: 15px;
    color: #fff;
    font-size: 16px;
    padding: 18px 25px;
    transition: all 0.3s ease;
    font-weight: 400;
    height: auto;
    box-shadow: none;
}

section.contact .form-control:focus {
    background: #2a2a2a;
    border-color: #fcc236;
    box-shadow: 0 0 0 3px rgba(252, 194, 54, 0.1);
    color: #fff;
    outline: none;
}

section.contact .form-control::placeholder {
    color: #999;
    font-weight: 400;
}

/* Form Labels */
section.contact .form-label {
    color: #ccc;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Submit Button */
section.contact .btn-custom {
    background: linear-gradient(135deg, #fcc236 0%, #e6a82d 100%);
    border: none;
    border-radius: 15px;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(252, 194, 54, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    height: auto;
    line-height: 1.2;
}

/* Button hover effect */
section.contact .btn-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.6s ease;
}

section.contact .btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(252, 194, 54, 0.4);
    filter: brightness(1.1);
}

section.contact .btn-custom:hover::before {
    left: 100%;
}

section.contact .btn-custom:active {
    transform: translateY(-1px);
}

/* Form Row Styling */
section.contact .row.g-3 {
    gap: 25px 0;
}

section.contact .col-md-3 {
    margin-bottom: 0;
}

.main-header .container {
    max-width: 90%;
}

/* Contact Info Section */
.contact-info {
    text-align: center;
}

.contact-info h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 194, 54, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: #fcc236;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-method:hover::before {
    opacity: 1;
}

.contact-method .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fcc236 0%, #e6a82d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #0a0a0a;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-method:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(252, 194, 54, 0.4);
}

.contact-method h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.contact-method p {
    color: #ccc;
    margin: 0;
    font-size: 15px;
    position: relative;
    z-index: 2;
}

.contact-method a {
    color: #fcc236;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #fff;
}

/* Form Animation */
section.contact .col-md-3 {
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

section.contact .col-md-3:nth-child(1) { animation-delay: 0.1s; }
section.contact .col-md-3:nth-child(2) { animation-delay: 0.2s; }
section.contact .col-md-3:nth-child(3) { animation-delay: 0.3s; }
section.contact .col-md-3:nth-child(4) { animation-delay: 0.4s; }

@keyframes subtleMove {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-15px) translateX(10px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for form submission */
.btn-custom.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-custom.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #0a0a0a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.swiper-slide {
    background: transparent !important;
}
.custom-button {
    display: block;
    text-align: center;
    width: 250px;
    line-height: 60px;
    min-height: 60px;
    background: #333;
    color: var(--main_string_color);
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    background: #fcc236;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    transition: 0.2s all ease;
}

.ctm-button {
    display: block;
    text-align: center;
    width: 180px;
    line-height: 50px;
    min-height: 50px;
    background: #333;
    color: var(--main_string_color);
    font-weight: bold;
    text-decoration: none;
    /*background-image: linear-gradient(
        to left top,
        #41a6e3,
        #1c92dd,
        #007ed6,
        #0068cc,
        #1652bf
    );*/
    background: #fcc236;
    transition: 0.2s all ease;
}

.ctm-button:hover {
    color: white;
    background: #287ff9;
}

.custom-button:hover {
    filter: brightness(120%);
    color: #333;
}

header .header-content .description .quick-info span {
    font-family: "Roboto";
    font-weight: 400;
    font-size: 1.1em;
    position: relative;
}

header .header-content .description .quick-info span:not(:last-child):after {
    display: none !important;
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #fcc444;
right: -20px;
    position: absolute;
    top: 18px;
}

header .header-content .main-title span {
    color: #fcc236;
}

footer.main-footer {
    position: relative;
    padding: 80px 0 40px;
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 20%, #1a1a1a 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #151515 0%, transparent 50%);
    z-index: 1;
    overflow: hidden;
}

/* Add subtle animated background */
footer.main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(252, 194, 54, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.01) 0%, transparent 30%);
    animation: subtleFloat 25s ease-in-out infinite;
    z-index: 1;
}

footer.main-footer .custom-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Grid Layout */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Company Info Section */
.footer-brand {
    padding-right: 20px;
}

.footer-brand .footer-logo {
    margin-bottom: 25px;
}

.footer-brand .footer-logo img {
    max-width: 140px;
    height: auto;
    filter: brightness(1.1);
}

.footer-brand .company-description {
    color: #bbb;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

.footer-brand .company-tagline {
    color: #fcc236;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    font-style: italic;
}

/* Social Media Section */
.social-section h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.social-section h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fcc236;
    border-radius: 1px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border: 1px solid #333;
    border-radius: 12px;
    color: #ccc;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #fcc236 0%, #e6a82d 100%);
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(252, 194, 54, 0.3);
    border-color: #fcc236;
}

/* Quick Links Section */
.footer-links h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fcc236;
    border-radius: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #fcc236;
    font-size: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-5px);
}

.footer-links ul li a:hover {
    color: #fcc236;
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Services Section */
.footer-services h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-services h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fcc236;
    border-radius: 1px;
}

.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services ul li {
    margin-bottom: 12px;
}

.footer-services ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-services ul li a:hover {
    color: #fcc236;
    padding-left: 20px;
}

.footer-services ul li a:hover::before {
    opacity: 1;
}

/* Contact Info Section */
.footer-contact h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-contact h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fcc236;
    border-radius: 1px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 15px;
}

.contact-info-item .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fcc236 0%, #e6a82d 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item .info {
    flex: 1;
}

.contact-info-item .info span {
    display: block;
    color: #999;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-item .info a,
.contact-info-item .info p {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-info-item .info a:hover {
    color: #fcc236;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom .copyright {
    color: #888;
    font-size: 14px;
}

.footer-bottom .copyright strong {
    color: #fcc236;
}

.footer-bottom .dc-credit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom .dc-credit span {
    color: #888;
    font-size: 13px;
}

.footer-bottom .dc-credit a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-bottom .dc-credit img {
    width: 35px;
    height: auto;
    transition: all 0.3s ease;
    filter: brightness(0.8);
}

.footer-bottom .dc-credit a:hover img {
    filter: brightness(1.2);
    transform: scale(1.1);
}

.section-text {
    left: 0%;
    position: absolute;
    top: 50%;
    opacity: 0.3;
}

.section-text h2 {
    color: #efefef;
    font-family: Josefin Sans;
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 15px;
    writing-mode: vertical-rl;
    transform: rotate(180deg) translateY(50%) translateX(0);
}

section.services .section-text h2 {
    color: #d3d3d3;
}

.whatsapp {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    right: 44px;
    cursor: pointer;
    display: none;
    z-index: 9;
    color: white;
    background: #25d366;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    transition: 0.2s all ease;
    line-height: 52px;
}
.whatsapp a {
    color: white;
}
.whatsapp .fa {
    position: relative;
    top: unset;
}

.theme-btn {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    padding: 11px 20px;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: #fcc236;
    border: none;
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    -webkit-transition: all 0.5s ease-in-out;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

.theme-btn:hover {
    color: #fff;
    background-color: #333;
}

.toTop {
    background: #fcc236;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--main_string_color);
    position: fixed;
    bottom: 100px;
    right: 44px;
    cursor: pointer;
    display: none;
    z-index: 9;
    font-size: 28px;
    text-align: center;
    border-radius: 50%;
    transition: 0.5s all ease;
}
.toTop:hover {
    filter: brightness(120%);
}

.heading-divider {
    display: inline-block;
    position: relative;
    height: 3px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #222;
    width: 90px;
    overflow: hidden;
}

.dc {
    width: 40px;
}

.heading-divider:after {
    content: "";
    position: absolute;
    left: 0;
    top: -1.1px;
    height: 7px;
    width: 12px;
    background-color: #fcc236;
    -webkit-animation: heading-move 5s infinite linear;
    animation: heading-move 5s infinite linear;
}

@-webkit-keyframes bounceInUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

@keyframes bounceInUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

@-webkit-keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-1px);
    }
}

@keyframes heading-move {
    0% {
        transform: translateX(-1px);
    }
    50% {
        transform: translateX(85px);
    }
    100% {
        transform: translateX(-1px);
    }
}

@-webkit-keyframes sticker-rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sticker-rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-30px) translateX(20px);
    }
    66% {
        transform: translateY(20px) translateX(-15px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-40px) translateX(-25px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(15px);
    }
    75% {
        transform: translateY(15px) translateX(-20px);
    }
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 0 5px rgba(252, 194, 54, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(252, 194, 54, 0.8);
    }
}

@keyframes shimmer {
    0% {
        left: -40px;
    }
    100% {
        left: 120px;
    }
}

section.satisfaction .row > div {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

section.satisfaction .row > div:nth-child(1) {
    animation-delay: 0.2s;
}

section.satisfaction .row > div:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

footer.main-footer .footer-content > div {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

footer.main-footer .footer-content > div:nth-child(1) { animation-delay: 0.1s; }
footer.main-footer .footer-content > div:nth-child(2) { animation-delay: 0.2s; }
footer.main-footer .footer-content > div:nth-child(3) { animation-delay: 0.3s; }
footer.main-footer .footer-content > div:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 0 5px rgba(252, 194, 54, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(252, 194, 54, 0.8);
    }
}