/********** Theme Colors **********/
:root {
    --primary-gradient: linear-gradient(135deg, #FF6B6B, #FFE66D, #6BCB77, #4D96FF, #FF9F1C);
    --primary-color: #FF6B6B;
    --secondary-color: #6BCB77;
    --light-color: #F2F2F2;
    --dark-color: #272630;
    --text-color: #444;
}

/********** Buttons **********/
.btn {
    font-weight: 700;
    border: none;
    transition: 0.4s;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/********** Navbar **********/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 30px;
    padding: 35px 0;
    font-size: 18px;
    color: var(--light-color);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/********** Hero Section **********/
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background: var(--light-color);
}

#heroCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-color);
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-color);
}

.hero-buttons .btn {
    margin: 0 10px;
}

/********** About Section **********/
.about-start, .about-end, .bg-call-to {
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255,107,107,0.15), rgba(255,230,109,0.15), rgba(107,203,119,0.15));
    padding: 40px;
}

/********** Quote / Request Section **********/
.bg-call-to {
    padding: 50px 0;
    margin: 90px 0;
    border-radius: 15px;
}

.bg-call-to .bg-white {
    padding: 40px;
    border-radius: 15px;
}

/********** Team Section **********/
.team-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    height: 90px;
    padding: 0 30px;
    right: 15px;
    left: 15px;
    bottom: -45px;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    height: 100%;
    bottom: 0;
}

/********** Footer **********/
.bg-footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 50px 0;
}

.bg-footer a {
    color: #fff;
    transition: 0.4s;
}

.bg-footer a:hover {
    color: var(--primary-color);
}

/********** RTL Adjustments **********/
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .container {
    direction: rtl;
}

/********** Cards Hover Effects **********/
.service-item, .contact-item {
    transition: .5s;
    border-radius: 15px;
}

.service-item:hover a.btn,
.contact-item:hover a.btn {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/********** Responsive Adjustments **********/
@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
    .hero-text h1 {
        font-size: 40px;
    }
    .hero-text p {
        font-size: 18px;
    }
}




:root {
    --primary-gradient: linear-gradient(135deg, #FF6B6B, #FF9F1C, #FFE66D, #6BCB77, #4D96FF);
    --primary-color: #FF6B6B;
    --secondary-color: #6BCB77;
    --light-color: #F9F9F9;
    --dark-color: #272630;
    --text-color: #444;
}

/* Buttons */
.btn {
    font-weight: 700;
    border: none;
    transition: 0.4s;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--dark-color);
}
.hero-text h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FF6B6B, #FF9F1C, #FFE66D, #6BCB77, #4D96FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 5s linear infinite;
}
.hero-text p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-color);
}
@keyframes rainbow {
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}
.hero-buttons .btn {
    margin: 0 10px;
    font-size: 18px;
}

/* Canvas improvements */
#heroCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-text h1 { font-size: 40px; }
    .hero-text p { font-size: 18px; }
}
