:root {
    --primary: #7213d9;
    --primary-dark: #560fa2;
    --primary-light: #f0e6ff;
    --light: #ffffff;
    --dark: #121212;
    --gray: #f8f9fa;
    --gray-dark: #e9ecef;
    --text: #333333;
    --text-light: #6c757d;
    --border: #dee2e6;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light);
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark);
}
.row {
    --bs-gutter-y: 1.5rem;
}
/* Header & Navigation */
#topbar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    padding: 8px 0;
    font-size: 0.9rem;
}

#topbar a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}
#topbar i {
    color: white;
}

#topbar a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin-left: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
}

.logo img {
    max-width: 200px;
}

.navbar {
    padding: 0;
}

.navbar ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar li {
    position: relative;
}

.navbar a {
    color: var(--text);
    padding: 10px 15px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.navbar a:hover, .navbar a.active {
    color: var(--primary);
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 15px;
    background-color: var(--primary);
    transition: var(--transition);
}

.navbar a:hover::after, .navbar a.active::after {
    width: calc(100% - 30px);
}

.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    background-position: center;
    background-size: cover;
}

.carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.carousel-content {
    max-width: 800px;
    padding: 0 20px;
}

.carousel-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1111;
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1111;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

#hero .carousel-indicators li {
    cursor: pointer;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-indicators .active {
    background-color: var(--primary);
}

.home-bottom {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
}

.move a {
    color: white;
    font-size: 2rem;
    display: inline-block;
    animation: bounce 2s infinite;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styling */
section {
    padding: 80px 0;
    background-color: var(--light);
}

#hero {
    padding: 0px 0 !important;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h4 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-title h3 span {
    color: var(--primary);
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about .box {
    background: var(--gray);
    padding: 40px 30px;
    border-radius: 10px;
    height: 100%;
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border);
}

.about .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(114, 19, 217, 0.15);
    background: white;
}

.about .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about .icon i {
    font-size: 1.8rem;
    color: white;
}

.about .box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.about .box p {
    color: var(--text-light);
}

.about .content {
    margin-top: 50px;
    text-align: center;
}

.about .content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about .content p {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services .box {
    background: var(--gray);
    padding: 40px 30px;
    border-radius: 10px;
    height: 100%;
    transition: var(--transition);
    border-left: 4px solid transparent;
    border: 1px solid var(--border);
}

.services .box:hover {
    border-left: 4px solid var(--primary);
    transform: translateX(5px);
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.services .box h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.services .box p {
    color: var(--text-light);
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--gray);
    border-radius: 10px;
    height: 120px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.client-logo:hover {
    transform: scale(1.05);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-height: 60px;
    filter: none;
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    opacity: 1;
    filter: none;
}
.carousel-control-prev{
    left: 25px;
}
.carousel-control-next{
    right: 25px;
}

/* Portfolio Section */
#portfolio-flters {
    padding: 0;
    margin: 0 0 35px 0;
    list-style: none;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

#portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 0 5px;
    transition: var(--transition);
    border-radius: 30px;
    background: var(--gray);
}

#portfolio-flters li:hover, #portfolio-flters li.filter-active {
    color: white;
    background: var(--primary);
}

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.portfolio-wrap img {
    transition: var(--transition);
    width: 100%;
}

.portfolio-wrap:hover img {
    transform: scale(1.1);
}

.portfolio-links {
    position: absolute;
    inset: 0;
    background: rgba(86, 15, 162, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-wrap:hover .portfolio-links {
    opacity: 1;
}

.portfolio-links a {
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.portfolio-links a:hover {
    background: white;
    color: var(--primary);
}

/* Portfolio Filter Transitions */
.portfolio-item {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.portfolio-container {
    transition: height 0.6s ease;
}

/* Smooth filter button transitions */
#portfolio-flters li {
    transition: all 0.3s ease;
    cursor: pointer;
}

#portfolio-flters li.filter-active {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 19, 217, 0.3);
}

/* FAQ Section */
.faq-list {
    padding: 0;
    list-style: none;
}

.faq-list li {
    background: var(--gray);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-list .question {
    padding: 20px;
    display: block;
    position: relative;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.faq-list .question:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.faq-list .question i {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.2rem;
    color: var(--primary);
}

.faq-list .icon-show, .faq-list .icon-close {
    transition: var(--transition);
}

.faq-list .collapsed .icon-show {
    display: inline-block;
}

.faq-list .collapsed .icon-close {
    display: none;
}

.faq-list .question:not(.collapsed) .icon-show {
    display: none;
}

.faq-list .question:not(.collapsed) .icon-close {
    display: inline-block;
}

.faq-list {
    padding: 0 20px 20px;
}

.faq-list .collapse {
    padding: 0 20px 20px;
}

.faq-list .collapse p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Section */
.info-box {
    background: var(--gray);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.info-box:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.info-box p {
    color: var(--text-light);
    margin: 0;
}

.php-email-form {
    background: var(--gray);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.php-email-form .form-group {
    margin-bottom: 20px;
}

.php-email-form input, .php-email-form textarea {
    background: white;
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text);
    padding: 12px 15px;
    width: 100%;
    transition: var(--transition);
}

.php-email-form input:focus, .php-email-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(114, 19, 217, 0.1);
}

.php-email-form input::placeholder, .php-email-form textarea::placeholder {
    color: var(--text-light);
}

.php-email-form button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 12px 30px;
    color: white;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.php-email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 19, 217, 0.3);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 12px 30px;
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 19, 217, 0.3);
}
#header-div{
    position: sticky;
    top: 0px;
    left: 0px;
    z-index: 11111111;
    width: 100%;
}
.loading, .error-message, .sent-message {
    display: none;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.loading {
    background: var(--primary-light);
    color: var(--primary);
}

.error-message {
    background: #ffe6e6;
    color: #dc3545;
}

.sent-message {
    background: #e6ffe6;
    color: #28a745;
}

/* Footer */
footer {
    background: var(--gray);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

footer p {
    margin: 0;
    color: var(--text-light);
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary);
}

/* Floating Call Banner */
.floating-call-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(114, 19, 217, 0.3);
    transition: var(--transition);
}

.phone-link:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(114, 19, 217, 0.4);
}

.phone-link i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.whatsapp-link {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.whatsapp-link:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(114, 19, 217, 0.3);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.back-to-top.active {
    opacity: 1;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader:after {
    content: '';
    width: 60px;
    height: 60px;
    border: 6px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {

    
    .mobile-nav-toggle {
        display: block;
    }
    
    .carousel-content h2 {
        font-size: 2.5rem;
    }
    
    .section-title h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .carousel-content h2 {
        font-size: 2rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .section-title h3 {
        font-size: 1.8rem;
    }
    
    .floating-call-banner {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 576px) {
    #topbar .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #topbar .mobile-info {
        margin-top: 5px;
    }
    
    .carousel-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title h3 {
        font-size: 1.6rem;
    }
    
    .floating-call-banner {
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top {
        bottom: 15px;
        left: 15px;
    }
}