<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Centering Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background: url("../../office_photo/office-1.JPG") no-repeat center center/cover;
    position: relative;
    color: #fff;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}

/* Dark Gradient Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

/* Hero Content */
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    padding: 20px;
    animation: fadeIn 1s linear forwards;
}

/* Typewriter Heading */
.typewriter h1 {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #85c554;
    font-size: 4rem;
    font-weight: bold;
    max-width: 100%;
    color: #f8f9fa;
    letter-spacing: 2px;
    text-shadow: 0 0 15px #85c554;
    animation: typing 3s steps(40, end) infinite, blink 0.7s infinite;
}

/* Typewriter Keyframes */
@keyframes typing {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Floating Logo */
.floating-image {
    animation: zoomInOut 2s linear infinite;
    max-height: 300px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s linear;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Logo Hover Effect */
.floating-image:hover {
    transform: scale(1.15);
}

/* Fade In Animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* Call-to-Action Button */
.hero .cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 18px;
    color: #fff;
    background: #85c554;
    border: 2px solid #85c554;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s linear;
    box-shadow: 0 0 15px rgba(133, 197, 84, 0.8);
}

.hero .cta-btn:hover {
    background: transparent;
    color: #85c554;
    box-shadow: 0 0 25px rgba(133, 197, 84, 1);
    transform: scale(1.1);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .typewriter h1 {
        font-size: 2.5rem;
    }

    .floating-image {
        max-height: 120px;
    }

    .hero .cta-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Loader Wrapper */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url("../../office_photo/office-1.JPG") center/cover no-repeat;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Particle Canvas */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 1s linear;
}

/* Loader */
.loader {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Shutter Panels */
.shutter {
    position: absolute;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    z-index: 3;
    transition: all 0.7s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.shutter-top {
    top: 0;
    transform: translateY(0);
}

.shutter-bottom {
    bottom: 0;
    transform: translateY(0);
}

/* Loader Content */
.loader-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    text-align: center;
    opacity: 1;
    transition: opacity 0.5s linear;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Loader Logo */
.loader-logo {
    max-width: 300px;
    height: auto;
    animation: zoomInOut 2s infinite;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Welcome Text */
.loader-welcome-text {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 10px;
    animation: fadeInOut 2s infinite;
}

/* Text Fade In-Out Animation */
@keyframes fadeInOut {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* When Page Loads */
.loaded #particleCanvas {
    opacity: 0;
}

.loaded .shutter-top {
    transform: translateY(-100%);
}

.loaded .shutter-bottom {
    transform: translateY(100%);
}

.loaded .loader-content {
    opacity: 0;
}



.header_font {
  text-align: center;
  padding: 60px 20px;
}

.header_font h1 {
  font-size: 56px;
  color: #0f187e;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.header_font h1 .blue {
  color: #0f187e;
  font-weight: bold;
}

.header_font h1:hover {
  transform: scale(1.25);
}

.highlight {
  color: #6ab04c;
  font-weight: bold;
}


.header_font h2 .green {
  color: #6ab04c;
}

.header_font h2 {
  font-size: 38px;
  /* font-weight: 300; */
  font-weight: bold;
  margin-bottom: 35px;
  transition: all 0.3s ease;
}

.header_font h2:hover {
  color: #6ab04c;   
  transform: scale(1.15);
}



.header_font p {
  font-size: 22px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  color: #555;
  font-style: italic;
}</pre></body></html>