* {
           margin: 0;
           padding: 0;
           box-sizing: border-box;
           font-family: 'Inter', sans-serif;
           
       }

       :root {
          --primarycolors: rgb(45, 108, 114);
          --footer-color:rgb(3, 76, 64);
          --secondary-color:rgb(239, 239, 239);
          --app-color:rgb(251, 238, 238);
       }

       @import url("/assets/fonts/Inter/Inter-VariableFont_opsz\,wght.ttf");
       .nav-link:hover{
          background-color: rgb(239, 238, 238);
          border-radius: 10px;
       }

       .navbar-nav .dropdown:hover .dropdown-menu {
           display: block;
           margin-top: 0;
       }

       .navbar-nav .dropdown-menu {
           margin-top: 0;
           border-top: none;
           animation: fadeIn 0.15s ease-in;
       }

       @keyframes fadeIn {
           from {
               opacity: 0;
               transform: translateY(-10px);
           }

           to {
               opacity: 1;
               transform: translateY(10px);
           }
       }

       /* Ensure smooth transitions */
       .dropdown-menu {
           transition: all 0.15s ease-in-out;
       }

       /* Add some spacing for the body content to account for fixed navbar */
       body {
           padding-top: 80px;
       }

       /* Style improvements for dropdown items with descriptions */
       .dropdown-item {
           padding: 0.75rem 1rem;
           line-height: 1.2;
       }

       .dropdown-item small {
           display: block;
           margin-top: 0.25rem;
       }
       #person-icon{
        color: gray;
       }
       #person-icon:hover{
        animation: float1 200ms ease  infinite ;
        cursor:pointer;
        
       }

          @keyframes float1 {
            0%, 100% { transform:scale(1.3) rotate(-10deg); }
            50% { transform:scale(1.3)  rotate(10deg); }
        }
          #sub-dropdown {
            position: absolute;
            top: 0;
            left: 100%;
            background: white;
            margin-left: 5px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            padding: 20px;
            width: 29vh;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }
         .dropdown-menu > li:hover #sub-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        @media (max-width: 980px) {
             .dropdown-menu > li:hover #sub-dropdown {
                opacity: 0;
               visibility: hidden;
            }
            
        }



       /* ----------------------------------------------------------------------------------------------------- */


.profile-header {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .profile-header img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
    }
    .verified-badge {
      background-color: #dff5df;
      color: #2b7a2b;
      font-size: 0.8rem;
      padding: 3px 8px;
      border-radius: 5px;
      display: inline-flex;
      align-items: center;
    }
    .main-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }
    .small-img img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
    }
    @media (max-width: 768px) {
      .small-img img {
        height: 150px;
      }
    }


    .photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
  }
  .photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .photo-card:hover img {
    transform: scale(1.05);
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .photo-card:hover .overlay {
    opacity: 1;
  }
  .overlay i {
    font-size: 2rem;
    color: #fff;
  }



    .container-fluid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .main-content {
            background: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        /* About Section */
        .about-section h1 {
            font-size: 2.5rem;
            font-weight: 400;
            color: #1a1a1a;
            margin-bottom: 30px;
        }

        .about-text {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 50px;
        }

        /* Services Section */
        .services-section h2 {
            font-size: 2rem;
            font-weight: 400;
            color: #1a1a1a;
            margin-bottom: 30px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 50px;
        }

        .service-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            font-size: 0.95rem;
            color: #666;
        }

        .service-item i {
            font-size: 1.1rem;
            color: #888;
            margin-right: 12px;
            width: 20px;
        }

        /* Projects Section */
        .projects-section h2 {
            font-size: 2rem;
            font-weight: 400;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .project-filters {
            display: flex;
            gap: 0;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            color: #495057;
            padding: 8px 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
            border-radius: 0;
        }

        .filter-btn:first-child {
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .filter-btn:last-child {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

        .filter-btn.active {
            background: #007bff;
            color: white;
            border-color: #007bff;
        }

        .filter-btn:hover:not(.active) {
            background: #e9ecef;
        }

        /* Contact Section */
        .contact-section {
            position: sticky;
            top: 10px;
            background: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
        }

        .contact-section h2 {
            font-size: 1.5rem;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .contact-subtitle {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

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

        .form-control {
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 12px 15px;
            font-size: 0.95rem;
            background: white;
            transition: border-color 0.2s;
        }

        .form-control:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
            outline: none;
        }

        .form-control::placeholder {
            color: #999;
        }

        .btn-send {
            background: #dc3545;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
            width: 100%;
        }

        .btn-send:hover {
            background: #c82333;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .project-filters {
                justify-content: center;
            }
            .contact-section {
           display: none;
        }
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 25px;
            }
            
            .about-section h1 {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .project-filters {
                flex-direction: column;
            }
            
            .filter-btn {
                border-radius: 4px !important;
                margin-bottom: 5px;
            }
            
            .contact-section {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .container-fluid {
                padding: 20px 10px;
            }
            
            .main-content {
                padding: 20px;
            }
            
            .about-section h1 {
                font-size: 1.75rem;
            }
        }


.projects-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0;
            background: white;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .project-item {
            background: white;
            border-right: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .project-item:nth-child(even) {
            border-right: none;
        }

        .project-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .project-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-item:hover .project-image {
            transform: scale(1.05);
        }

        .project-info {
            padding: 20px;
        }

        .project-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
            text-decoration: none;
            display: block;
            position: relative;
            transition: all 0.3s ease;
        }

        .project-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #007bff;
            transition: width 0.5s ease;
        }

        .project-item:hover .project-title::after {
            width: 100%;
        }

        .project-item:hover .project-title {
            color: #007bff;
        }

        .project-location {
            display: flex;
            align-items: flex-start;
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .project-location i {
            margin-right: 6px;
            margin-top: 2px;
            font-size: 0.8rem;
            color: #999;
            flex-shrink: 0;
        }

        .load-more-container {
            text-align: center;
            padding: 30px;
            border-top: 1px solid #e9ecef;
        }

        .load-more-btn {
            background: white;
            border: 1px solid #ddd;
            color: #666;
            padding: 10px 24px;
            font-size: 0.9rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .load-more-btn:hover {
            border-color: #007bff;
            color: #007bff;
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .project-item {
                border-right: none;
            }
            
            .project-image {
                height: 180px;
            }
            
            .project-info {
                padding: 15px;
            }
            
            .project-title {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .projects-container {
                margin: 0 10px;
            }
            
            .project-image {
                height: 160px;
            }
            
            .project-info {
                padding: 12px;
            }
        }
  


















        /* --------------------------reviews section --------------------------------------------------- */
        .reviews-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .rating-summary {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
        }
        .rating-number {
            font-size: 3rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        .stars {
            color: #ffc107;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        .rating-bar {
            background: #e9ecef;
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
            margin: 5px 0;
        }
        .rating-fill {
            background: #ffc107;
            height: 100%;
        }
        .review-item {
            border-bottom: 1px solid #e9ecef;
            padding: 20px 0;
        }
        .review-item:last-child {
            border-bottom: none;
        }
        .reviewer-name {
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 5px;
        }
        .review-date {
            color: #6c757d;
            font-size: 0.9rem;
        }
        .review-stars {
            color: #ffc107;
            margin: 10px 0;
        }
        .review-text {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        .review-actions button {
            background: none;
            border: none;
            color: #6c757d;
            padding: 5px 10px;
            margin-right: 15px;
            cursor: pointer;
            font-size: 0.9rem;
        }
        .review-actions button:hover {
            color: #007bff;
        }
        .btn-add-review {
            border: 1px solid #dee2e6;
            background: white;
            color: #666;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        .btn-add-review:hover {
            border-color: #007bff;
            color: #007bff;
        }



        /* --------------------------pagination------------------------------------ */


         .simple-pagination {
            padding-top: 3vh;
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 20px;
        }
        .page-number {
            color: #666;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 5px;
            transition: color 0.2s ease;
        }
        .page-number:hover {
            color: #007bff;
            text-decoration: none;
        }
        .page-number.active {
            color: #007bff;
            font-weight: 500;
        }
        .page-dots {
            color: #666;
            font-size: 0.95rem;
        }



        /* ------------------------footer----------------------------- */

         .demo-content {
            background: white;
           
            text-align: center;
           
        }

        /* Footer Styles */
        .footer {
            background-color: var(--footer-color);
            color: #ecf0f1;
            padding: 0;
            margin-top: auto;
        }

        /* Newsletter Section */
        .newsletter-section {
            background-color:  var(--footer-color);
            padding: 2rem 0;
            border-bottom: 1px solid #3a4a5c;
        }

        .newsletter-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .newsletter-text {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0;
        }

        .newsletter-text i {
            font-size: 1.5rem;
            color: #ecf0f1;
        }

        .newsletter-text span {
            font-size: 1.1rem;
            font-weight: 500;
            color: #ecf0f1;
        }

        .newsletter-form {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .newsletter-input {
            background:  var(--footer-color);
            border: 1px solid #4a5568;
            color: #ecf0f1;
            padding: 0.75rem 1rem;
            border-radius: 0.375rem;
            min-width: 250px;
        }

        .newsletter-input::placeholder {
            color: #a0aec0;
        }

        .newsletter-input:focus {
            background:  var(--footer-color);
            border-color: #e74c3c;
            color: #ecf0f1;
            box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
        }

        .btn-subscribe {
            background-color: #e74c3c;
            border-color: #e74c3c;
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 500;
            border-radius: 0.375rem;
            transition: all 0.2s ease;
        }

        .btn-subscribe:hover {
            background-color: #c0392b;
            border-color: #c0392b;
            color: white;
        }

        .help-text {
            color: #94a3b8;
            margin-bottom: 0;
        }

        .contact-link {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            margin-left: 0.5rem;
        }

        .contact-link:hover {
            color: #e74c3c;
        }

        /* Main Footer Content */
        .footer-content {
            padding: 3rem 0 2rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .footer-logo {
            width: 40px;
            height: 40px;
            background-color: #e74c3c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            font-weight: bold;
        }

        .footer-brand-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ecf0f1;
            margin: 0;
        }

        .footer-description {
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: #3a4a5c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .social-link:hover {
            background-color: #e74c3c;
            color: white;
        }

        .footer-section h5 {
            color: #ecf0f1;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: #e74c3c;
        }

        /* Cities Section */
        .cities-section {
            background-color:  var(--footer-color);
            padding: 2rem 0;
            border-top: 1px solid #3a4a5c;
            border-bottom: 1px solid #3a4a5c;
        }

        .cities-title {
            color: #ecf0f1;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .city-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .city-tag {
            background-color:  var(--footer-color);
            color: #94a3b8;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            border: 1px solid #3a4a5c;
        }

        .city-tag:hover {
            background-color: #e74c3c;
            color: white;
            border-color: #e74c3c;
        }

        /* Footer Bottom */
        .footer-bottom {
            background-color:  var(--footer-color);
            padding: 1.5rem 0;
        }

        .footer-bottom-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .copyright-text {
            color: #94a3b8;
            margin: 0;
            font-size: 0.9rem;
        }

        .createx-link {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 500;
        }

        .createx-link:hover {
            color: #e74c3c;
        }

        .payment-methods {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .payment-icon {
            height: 24px;
            width: auto;
            opacity: 0.8;
            transition: opacity 0.2s ease;
        }

        .payment-icon:hover {
            opacity: 1;
        }

        /* Payment method placeholders */
        .payment-placeholder {
            background: #3a4a5c;
            color: #94a3b8;
            padding: 0.25rem 0.75rem;
            border-radius: 0.25rem;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .newsletter-content {
                flex-direction: column;
                text-align: center;
            }

            .newsletter-form {
                width: 100%;
                flex-direction: column;
            }

            .newsletter-input {
                width: 100%;
                min-width: auto;
            }

            .btn-subscribe {
                width: 100%;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .city-tags {
                justify-content: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .newsletter-section,
            .footer-content,
            .cities-section,
            .footer-bottom {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .city-tags {
                gap: 0.5rem;
            }

            .city-tag {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
        }