:root {
    --primary-color: #1a73e8;
    --primary-dark: #0d47a1;
    --secondary-color: #34a853;
    --accent-color: #fbbc05;
    --light-color: #f8f9fa;
    --dark-color: #202124;
    --text-color: #3c4043;
    --text-light: #5f6368;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 800;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 60px;
    background: linear-gradient(to right, #ff9999, #3b82f6);
    
}


.btn:hover{
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

a.btnn{
   display: inline-block;
    padding: 10px 15px;
    padding-bottom: 7px;
    padding-top: 7px;
    border-radius: 4px;
    font-weight: 800;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 60px;
    border-width: 40px;
}


a.btnn:hover{
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);

}


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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
}

h2.section-title{
    text-align: center;
    color: white;
    
}

p.section-subtitle{
    text-align: center;
    color: wheat;
}
.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.section-title-cont{
      font-size: 3rem;
}

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

.header.scrolled {
    background-color: var(--primary-dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    object-fit: contain;
    background-color: rgb(230, 231, 236);
    border-radius: 50%;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    line-height: 1.2;
}

.site-slogan {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.3;
}

/* Navigation */
.desktop-nav ul {
    display: flex;
    gap: 20px;
}

.desktop-nav a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.desktop-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.desktop-nav a:hover::after {
    width: calc(100% - 24px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background-color: #2d3748; /* Modern dark blue-gray */
    z-index: 1000;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

.mobile-nav-list {
    padding: 20px;
}

.mobile-nav-list li {
    margin-bottom: 15px;
}

.mobile-nav-list a {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.mobile-nav-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* New add for mobile nav */

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo .logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.mobile-logo .logo-text {
    color: var(--dark-color);
}

.mobile-logo .site-title {
    font-size: 1.2rem;
    margin: 0;
    color: var(--dark-color);
}

.mobile-logo .site-slogan {
    font-size: 0.7rem;
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
}

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.submenu {
    display: none;
    padding-left: 20px;
    list-style: none;
    background-color: rgba(0, 0, 0, 0.05);
    margin-top: 5px;
    border-radius: 5px;
}

.submenu li {
    margin-bottom: 0;
}

.submenu a {
    padding: 8px 0 8px 15px;
    border-bottom: none;
    font-size: 1rem;
    font-weight: 500;
}

.submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-right: 5px; */
}

.submenu-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.submenu-toggle.active i {
    transform: rotate(180deg);
}

/* .submenu-toggle i {
  margin-left: 8px;
  transition: transform 0.3s ease, color 0.2s ease;
  font-size: 0.9em;
} */

/* Animation for plus/minus toggle */
.submenu-toggle.active .fa-plus {
  transform: rotate(45deg);
}

/* Animation for circular icons */
.submenu-toggle.active .fa-chevron-circle-down,
.submenu-toggle.active .fa-arrow-alt-circle-down {
  transform: rotate(180deg);
  color: var(--primary-color);
}

/* Standard arrow animations */
.submenu-toggle.active .fa-angle-down,
.submenu-toggle.active .fa-caret-down {
  transform: rotate(180deg);
}

/* बॉक्स एरो एनिमेशन */
.submenu-toggle.active .fa-expand-alt {
  transform: rotate(180deg);
  color: #3b82f6; /* ब्लू कलर */
}

/* Dropdown arrow styling */
.dropdown-arrow {
  margin-left: 5px;
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth animation */
  display: inline-block;
}

/* Rotate arrow when submenu is active */
.submenu-toggle.active .dropdown-arrow {
  transform: rotate(90deg);
  color: #3b82f6; /* Optional: Change color when active */
}



/* Modern Mobile Nav Background */
.mobile-nav-header .mobile-nav-close {
    color: white;
}

.mobile-nav-list a {
    color: white ;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-list a:hover {
    color: var(--primary-color);
}

.mobile-logo .logo-text,
.mobile-logo .site-title,
.mobile-logo .site-slogan {
    color: white !important;
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Nav Container */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    /* background: #fff; */
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav-overlay.active .mobile-nav {
    transform: translateX(0);
}

/* No Scroll */
.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #272424;
    border: 3px solid;
    border-color: antiquewhite;
}

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

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: #10100fcd;
    border: 3px solid var(--primary-color) ;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;

}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(7, 70, 206, 0.792);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    padding: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    margin: 0 30px 30px;
    width: calc(100% - 60px);
    background-color: rgba(72, 0, 255, 0.614);
    color: white;
    
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-color);
    border: 3px solid;
    border-color: #ff9999;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.button {
  background: #1e40af;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin: 10px;
  box-shadow: 0 4px 6px rgba(61, 115, 223, 0.662);
}

.button:hover{
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
    border: 3px solid;
    border-color: #3bddf6;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer-logo h3 {
    font-size: 1.5rem;
}

.footer-about {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.7;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.business-hours li {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-legal a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

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

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    a.btnn{
        background: linear-gradient(to right, #14d0ff , #0d47a1);
        color: white;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .hero-section {
        padding: 150px 0 80px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .btn-secondary{
        background-color: #1a73e8;
        color: #ddd;
    }

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

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .site-slogan {
        font-size: 0.8rem;
    }

    .top-bar {
        padding: 10px 0;
    }

    .logo-img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    div.hero-content.h1{
        text-align: center;
        font-size: 5rem;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .mobile-nav-list a {
        font-size: 1rem;
        padding: 8px 0;
    }

    /* .fas.fa-home::before, .fas.fa-concierge-bell::before
    .fas.fa-money-bill-wave::before, .fas.fa-house-user::before,
    .fas.fa-boxes::before, .fas.fa-box-open::before,
    .fas.fa-boxes::before, .fas.fa-box-open::before,
    .fas.fa-calculator::before, .fas.fa-video::before, .fas.fa-phone::before, 
    .fas.fa-info-circle::before, .fas.fa-question-circle::before, .fas.fa-file-contract::before
    { 
     color: #34a853;
    } */
}