* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Gordita';
  src: url('images/Gordita-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
    
body {
  font-family: 'Montserrat', sans-serif;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  color: white;
  background-color: black;
}

.section {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ddd;
  cursor: pointer;
  transition: width 0.3s ease;
  overflow: hidden;
}

/* Header section */
.header {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  gap: 2rem;
}

.header-icon {
  font-size: 1.5rem;
  color: #333;
  transition: all 0.2s ease;
}

.header-icon:hover {
  color: #0066cc;
  transform: scale(1.1);
}

.logo {
  width: 50px;
  height: 50px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Content sections */
.section-title {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Initial states */
.main-content {
  width: calc(100% - 80px * 5);
  padding: 2rem;
}

.collapsed {
  width: 80px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Expanded state */
.expanded {
  width: 100%;
  padding: 2rem;
}

.section-content {
  display: none;
  height: 100%;
  overflow-y: auto;
  padding-right: 1rem;
}

.expanded .section-content {
  display: flex;
  flex-direction: column;
}

/* Typography */
h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.75rem;
}

/* Home page layout */
.home-main {
  flex: 2;
  padding-right: 2rem;
}

.home-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.home-content {
  display: flex;
  height: calc(100% - 150px);
  gap: 2rem;
}

/* Visual elements */
.security-ring {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #0066cc;
}

/* About Us page styles */
.full-width-container {
  width: 100%;
  background-color: #1a1a1a;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.columns-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.column-card {
  flex: 1;
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Services page styles */
.services-columns {
  display: flex;
  gap: 2rem;
}

.service-column {
  flex: 1;
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 8px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.rotate-icon {
  margin-right: 8px;
  animation: slow-spin 6s linear infinite;
  color: #fff;
}

@keyframes slow-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Contact section styles */
.contact-content {
  position: relative;
  z-index: 2;
  background-color: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.meeting-link {
  margin-top: 2rem;
}

.meeting-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #0066cc;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.meeting-btn:hover {
  background-color: #0055aa;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Animated rings background */
.contact-rings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 102, 204, 0.2);
  animation: rotate linear infinite;
}

.ring-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  left: -50px;
  animation-duration: 20s;
}

.ring-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  animation-duration: 25s;
  animation-direction: reverse;
}

.ring-3 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  left: 50%;
  animation-duration: 15s;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* About Us Section Styling */
.columns-container {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1.5rem;
}

.column-card {
  background-color: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  flex: 1;
  text-align: center;
  transition: transform 0.3s ease;
}

.column-card:hover {
  transform: translateY(-5px);
}

.icon-container {
  margin-bottom: 1.5rem;
}

.icon-container i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Rotating icon animation */
.rotate-icon {
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Mobile Menu Styles */
.mobile-menu-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: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background-color: #1a1a1a;
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-header {
  padding: 1rem;
  display: flex;
  justify-content: flex-end;
}

.mobile-menu-close {
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

.mobile-menu-items {
  padding: 1rem;
}

.mobile-menu-item {
  padding: 1rem 0;
  color: white;
  font-size: 1.1rem;
  border-bottom: 1px solid #333;
  cursor: pointer;
}

.mobile-menu-item:last-child {
  border-bottom: none;
}

/* Show mobile menu when active */
.mobile-menu-active .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-active .mobile-menu {
  right: 0;
}

/* Update the mobile breadcrumb button styles */
.mobile-breadcrumb {
  display: flex !important;
  cursor: pointer;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  body {
    flex-direction: column;
    overflow: auto;
    height: auto;
  }

  .section {
    width: 100% !important;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #ddd;
    writing-mode: horizontal-tb !important;
    text-orientation: initial !important;
  }

  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem;
    position: relative;
  }

  .logo {
    margin-bottom: 0;
    order: 1;
    flex: 0 0 auto;
  }

  .company-name {
    order: 2;
    flex: 1;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
  }

  .mobile-breadcrumb {
    order: 3;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .mobile-breadcrumb i {
    font-size: 1.5rem;
    color: white;
  }

  .main-content, .expanded {
    padding: 1.5rem;
  }

  .home-content {
    flex-direction: column;
    height: auto;
  }

  .home-main, .home-side {
    padding-right: 0;
    padding-left: 0;
    flex: unset;
  }

  .columns-container,
  .services-columns {
    flex-direction: column;
  }

  .column-card,
  .service-column {
    width: 100%;
  }

  .contact-content {
    max-width: 100%;
    padding: 1.5rem;
  }

  .ring-center img {
    height: 180px !important;
  }

  h1 {
    font-size: 2rem;
  }
}

@media screen and (min-width: 769px) {
  .company-name {
    display: none;
  }
  
  .mobile-menu-overlay,
  .mobile-menu {
    display: none;
  }
  
  .mobile-breadcrumb {
    display: none !important;
  }
}