
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
         
        .company-header {
            background: #fafafa;
            color: #333;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;

        }
        
        .company-name {
            display: flex;
            flex-direction: column;
        }
        
        .company-name h1 {
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .company-name p {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 2px;
        }
        
        .nav-menu {
            display: flex;
            gap: 25px;
        }
        
        .nav-item {
            position: relative;
            padding: 0.5rem 0;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #333;
        }
        
        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #2196f3;
            transition: width 0.3s ease;
        }
        
        .nav-item:hover::after {
            width: 100%;
        }
        
        .nav-item:hover {
            color: #2196f3;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 5px;
        }
        
        .phone-number {
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .email-address {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #000;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            background: #2c3e50;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .mobile-nav.active {
            display: block;
        }
        
        .mobile-nav-item {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            display: block;
        }
        
        .mobile-nav-item:hover {
            color: #2196f3;
            padding-left: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-menu {
                gap: 15px;
            }
            
            .company-name h1 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu, .contact-info {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .company-header {
                padding: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .logo {
                width: 50px;
                height: 50px;

            }
            
            .company-name h1 {
                font-size: 1.3rem;
            }
            
            .company-name p {
                font-size: 0.8rem;
            }
        }


        .btn-success{
            background-color: #FFF !important;
            border:1px solid #f5a62f !important;
            border-radius: 5px !important;
            color: #f5a62f !important;
            width: 100% !important;
            padding: 10px !important;
        }
        .btn-success:hover{
            background-color: #f5a62f !important;
            color: #FFFFFF !important;
        }



        .btn{
            background-color: #FFF !important;
            border:1px solid #f5a62f !important;
            border-radius: 5px !important;
            color: #f5a62f !important;

            padding: 10px !important;
        }
        .btn:hover{
            background-color: #f5a62f !important;
            color: #FFFFFF !important;
        }



        p {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #333 !important;
}

p a{
    color:#0D3B66 !important;
}

.building-sidebar {
    width: 350px;
    background: #ffffff;
    padding: 1rem;
    overflow-y: auto;
    color: #333;
        }

        .planimetry-wrapper {
    position: relative;
    width: 100%;
    max-width: 1250px;
    background: #ffffff;
box-shadow:0 !important;}



        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #0D3B66;
            font-weight: 300;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #0D3B66, #2c5282);
            border-radius: 2px;
        }


.breadcrumb {
  margin-top: 20px !important;
  padding: 8px 15px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 14px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "›";
  margin: 0 8px;
  color: #6c757d;
  font-weight: bold;
}

.breadcrumb a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.breadcrumb .active {
  color: #6c757d;
  pointer-events: none;
}
