@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');

/* Custom scrollbar */
::-webkit-scrollbar {
   width: 3px;
   height: 3px;
}

::-webkit-scrollbar-track {
   background: #ffffff;
   border-radius: 20px;
}

::-webkit-scrollbar-thumb {
   background: linear-gradient(180deg, #21aad4 0%, #21aad4 100%);
   border-radius: 20px;
   min-height: 40px;
}

::-webkit-scrollbar-corner {
   background: transparent;
}

* {
   scrollbar-width: thin;
   scrollbar-color: #21aad4 transparent;
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

:root {
   --primary-color: #003366;
   --secondary-color: #0056b3;
   --text-color: #333;
   --overlay-color: rgba(0, 0, 0, 0.5);
   --link-color: #fff;
}

body {
   font-family: 'Raleway', sans-serif;
   font-size: 16px;
   line-height: 1.5;
   color: var(--text-color);
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 4rem 2rem;
}

/* Hero Section */
.hero {
   position: relative;
   height: 500px;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   overflow: hidden;
   background-color: var(--secondary-color);
}

.hero-background img {
   width: 100%;
   height: 200%;
   object-fit: cover;
   position: absolute;
   top: 0;
   left: 0;
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(
       135deg,
       rgba(33, 170, 212, 0.685),
       rgba(0, 51, 102, 0.507)
   );
   backdrop-filter: blur(2px);
}

.hero-content {
   position: relative;
   z-index: 2;
   color: white;
   padding: 0 20px;
   max-width: 800px;
}

.hero h1 {
   font-size: clamp(2.5rem, 5vw, 4.5rem);
   margin-bottom: 1.5rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 2px;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Typography Hierarchy */
.header-gold {
   color: #21aad4;
   text-align: center;
   font-size: 22px;
   font-weight: normal;
   margin-bottom: 10px;
}

.header-blue {
   color: #003366;
   text-align: center;
   font-size: 26px;
   margin-bottom: 20px;
   font-weight: normal;
}

.section-title {
   color: #003366;
   text-align: center;
   font-size: 22px;
   margin-bottom: 35px;
}

.section-description {
   text-align: center;
   max-width: 800px;
   margin: 0 auto 2rem;
   color: #333;
   font-size: 1.1rem;
   line-height: 1.6;
}

/* Grid Layouts */
.services-grid,
.features-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   margin-top: 3rem;
}

/* Service Items */
.service-item {
   margin-bottom: 2.5rem;
   transition: transform 0.3s ease;
}

.service-item:hover {
   transform: translateY(-5px);
}

.service-content h4 {
   color: var(--primary-color);
   margin-bottom: 0.5rem;
   font-size: 1.3rem;
}

.service-content p {
   color: var(--text-color);
   line-height: 1.6;
}

/* Images */
.services-image img,
.features-image img {
   width: 100%;
   height: 500px;
   object-fit: cover;
   border-radius: 8px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
}

.services-image img:hover,
.features-image img:hover {
   transform: scale(1.02);
}

/* Breadcrumb */
.breadcrumb {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   font-size: 1.1rem;
}

.breadcrumb a {
   color: white;
   text-decoration: none;
   transition: 0.3s ease;
}

.breadcrumb a:hover {
   color: #21aad4;
}

/* Media Queries */
@media (max-width: 1024px) {
   .container {
       padding: 3rem 1.5rem;
   }
   
   .services-grid,
   .features-grid {
       gap: 2rem;
   }
}

@media (max-width: 768px) {
   .services-grid,
   .features-grid {
       grid-template-columns: 1fr;
   }

   .services-image,
   .features-image {
       order: -1;
   }

   .services-image img,
   .features-image img {
       height: 300px;
   }

   .header-blue {
       font-size: 22px;
   }
}

@media (max-width: 480px) {
   .hero {
       height: 300px;
   }

   .container {
       padding: 2rem 1rem;
   }

   .service-item {
       margin-bottom: 1.5rem;
   }

   body {
       font-size: 14px;
   }
   
   .header-gold {
       font-size: 20px;
   }
   
   .section-description {
       font-size: 1rem;
   }
}

/* Print styles */
@media print {
   .hero {
       height: auto;
       padding: 2rem 0;
   }

   .hero-overlay {
       display: none;
   }

   .hero-content {
       color: #000;
   }

   .services-image img,
   .features-image img {
       height: auto;
   }
}

