* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e70b3;
    --secondary-color: #3e449c;
    --accent-color: #ffc42b;
    --text-light: #ffffff;
    --text-dark: #333333;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #ff8a00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 196, 43, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 196, 43, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    padding: 0 15px;
}

.section-title {
    font-size: 2.5rem;
    margin: 0 auto 15px;
    color: var(--primary-color);
    position: relative;
    display: block;
    max-width: 100%;
}

.section-title span {
    color: var(--accent-color);
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.big-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 32px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff7a18, #ff9f1c);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.big-arrow-btn i {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.big-arrow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.big-arrow-btn:hover i {
  transform: translateX(6px);
}


/* ==========================================================================
   #HEADER
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    padding: 30px 30px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 12px;
    transition: var(--transition);
}

.logo-text {
    text-align: left;
    line-height: 1.1;
}

.logo h1 {
    font-size: 1.6rem;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo p {
    font-size: 0.75rem;
    color: #666;
    margin: 3px 0 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

/* Header Navigation */
.header-content {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.contacts {
    margin-right: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-left: 25px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-item img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    margin-left: 15px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
}

/* Navigation */
.main-nav {
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.main-nav li {
    margin: 0 2px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}
.spacer {
    height: 90px;
    width: 100%;
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    transition: var(--transition);
    border-radius: 3px 3px 0 0;
}

.main-nav a:hover,
.main-nav .active {
    color: var(--primary-color);
}

.main-nav a:hover:after,
.main-nav .active:after {
    width: 60%;
}

/* Contact Button */
.btn-contact {
    background: linear-gradient(135deg, var(--accent-color), #ff8a00);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 30px;
    margin-left: 10px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 196, 43, 0.3);
    height: auto !important;
    line-height: 1;
}

.btn-contact:after {
    display: none !important;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 196, 43, 0.4);
    background: linear-gradient(135deg, #ff8a00, var(--accent-color));
}

.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ==========================================================================
   #HERO
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 800px;
    color: white;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   #ABOUT
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   #SERVICES
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-service {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.btn-service::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn-service:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==========================================================================
   #MISSION
   ========================================================================== */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.mission-logo {
    flex: 1;
    text-align: center;
}

.mission-logo img {
    max-width: 200px;
    margin: 0 auto 20px;
}

.mission-logo h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0;
}

.mission-logo span {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    color: var(--accent-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-outline-light {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid white;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ==========================================================================
   #CONTACT
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 196, 43, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-details {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.contact-cta {
    margin-top: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item p,
.contact-item a {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--accent-color);
}
.contact-info {
    text-align: center;
}

/* ==========================================================================
   #FOOTER
   ========================================================================== */
.main-footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: auto;
    margin-right: 15px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.2;
}

.footer-logo span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: #aaa;
}

.footer-about p {
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #aaa;
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: #aaa;
    transition: var(--transition);
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-info .contact-item {
    margin-bottom: 20px;
}

.contact-info .contact-item i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1rem;
    margin-top: 5px;
}

.contact-info .contact-item p,
.contact-info .contact-item a {
    color: #aaa;
    margin: 0;
    line-height: 1.6;
    transition: var(--transition);
}

.contact-info .contact-item a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.footer-legal {
    margin-top: 15px;
}

.footer-legal a {
    color: #777;
    margin: 0 10px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow: hidden;
}

.gallery-modal .modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-modal .modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-modal .close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.gallery-modal .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 1001;
}

.gallery-modal .nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.gallery-modal .prev-btn {
    left: 20px;
}

.gallery-modal .next-btn {
    right: 20px;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px;
    max-width: 100%;
    overflow-x: auto;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all 0.3s;
    border-radius: 4px;
}

.thumbnail:hover, .thumbnail.active {
    opacity: 1;
    border-color: #fff;
}

@media (max-width: 768px) {
    .gallery-modal .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .gallery-modal .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .gallery-modal .close-btn {
        font-size: 30px;
        top: -35px;
    }
    
    .thumbnail {
        width: 40px;
        height: 40px;
    }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* ==========================================================================
   #POPUP
   ========================================================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    width: 100%;
    max-width: 400px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.popup-icon svg {
    color: white;
    width: 40px;
    height: 40px;
}

.popup-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.popup-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.popup-content .btn {
    min-width: 120px;
}

/* ==========================================================================
   #RESPONSIVE
   ========================================================================== */
@media (max-width: 1199px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px;
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 0 0 15px;
    }
    
    .main-nav a {
        color: var(--text-dark);
        padding: 8px 0;
        display: block;
    }
    
    .main-nav .btn-contact {
        display: inline-block;
        margin: 10px 0 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text,
    .about-image {
        width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info,
    .map-container {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .logo img {
        height: 80px;
    }

    .contacts {
        padding-top: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        margin-top: 70px;
        min-height: 600px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about {
        padding-right: 0;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 2rem;
    }
    .logo img {
        width: 60px;
        height: 60px;
    }

    header {
        padding: 10px 5px;

    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .mission-content {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-logo {
        margin-bottom: 30px;
    }
    
    #back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* Form Validation */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff3860;
}

.error-message {
    color: #ff3860;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Section 2 Styles */
.sec2 {
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 20px;
    gap: 40px;
}

.sec2-text {
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.sec2-text p{
    font-size: 1.5rem;
}

.sec2-text h1 {
    color: orange;
    width: fit-content;
    border-bottom: #3e449c solid 5px;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.sec2-img img {
    width: 100%;
    
}

.sec2-img {
    max-width: 600px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.sec2-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Services Section */
.sec3 {
    width: 100%;
    background-color: rgb(240, 250, 255);
    text-align: center;
    padding: 60px 20px;
}

.sec3-text h1 {
    font-size: 3rem;
    font-family: 'Courier New', Courier, monospace;
}

.sec3-text p {
    font-size: 1.5rem;
}

.sec3-text .sec3text { 
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.cards h1{
    font-size: 1.5rem;
}

.cards img{
    width: 500px;
    height: 400px;
}

.cards .card1,
.cards .card5,
.cards .card6 {
    background-color: var(--secondary-color);
    width: 100%;
    max-width: 400px;
    color: white;
    padding: 0 0 20px 0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cards .card1:hover,
.cards .card5:hover,
.cards .card6:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.sec3-text .wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.sec3-text .stick {
    height: 10px;
    width: 200px;
    background-color: #1e70b3;
    margin: 10px 0;
}


/* About Section */
.sec4 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--primary-color);
    text-align: center;
    align-items: center;
    padding: 60px 20px;
}

.sec4 .logo1 img {
    width: 250px;
} 

.logo1 {
    width: 100%;
    background-color: white;
    padding: 30px 10px;
}

.sec4-text {
    width: 100%;
    color: white;
}

.logo1 h1 {
    color: orange;
}

.sec4-text p{
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.sec4-text h1{
    margin-bottom: 20px;
}

.sec4-text button {
    background: linear-gradient(290deg, #09ff00b0 0%, #3e449c 100%);
    padding: 15px 30px;
    font-size: 1rem;
    border: none;
    color: white;
    cursor: pointer;
}


/* Contact Section */
.sec5 {
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 40px;
}

.message p {
    font-size: 1.2rem;
    color: white;
}

.message h1 {
    color: rgb(48, 172, 48);
}

.message h1 span {
    color: white;
}

.message button {
    background: linear-gradient(290deg, #09ff00b0 0%, #3e449c 100%); 
    padding: 15px 30px;
    font-size: 1rem;
    border: none;   
    color: white;
    cursor: pointer;
}

.message {
    max-width: 500px;
    padding: 20px;
    color: white;
    text-align: center;
}

.map {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map iframe,
.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Footer */
.main-foot {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.foot-text {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.foot-text h1 {
    font-size: 2.5rem;
    margin: 15px 0;
}

.foot-text h1 span {
    color: var(--accent-color);
}

.tri-contacts {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 30px;
    text-align: center;
    margin: 30px 0;
}

.contact1,
.contact2,
.comtact3 {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact1:hover,
.contact2:hover,
.comtact3:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .sec1 .card h1 {
        font-size: 2rem;
    }
    
    .sec3-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    header {
        flex-direction: column;
        margin-left: 0;
    }
    .spacer {
        height: 200px;
    }
    .logo {
        justify-content: center;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .sec2-text,
    .sec2-img {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    
    .sec4 .logo1 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contacts {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .spacer {
        height: 180px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul li a span {
        display: none;
    }
    
    .sec1 .card {
        padding: 30px 20px;
        margin: 20px 10px;
    }
    
    .sec1 .card h1 {
        font-size: 1.8rem;
    }
    
    .sec3-text h1 {
        font-size: 2rem;
    }
    
    .cards .card1,
    .cards .card5,
    .cards .card6 {
        max-width: 100%;
    }
    
    .tri-contacts {
        flex-direction: column;
        align-items: center;
    }
    
    .contact1,
    .contact2,
    .comtact3 {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo img {
        width: 50px;
        height: 50px;
    }
    .spacer {
        height: 150px;
    }
    
    .sec1 .card h1 {
        font-size: 1.5rem;
    }
    
    .sec1 .card p {
        font-size: 1rem;
    }
    
    .sec1 .card button {
        padding: 12px 24px;
    }
    
    .sec2-text h1 {
        font-size: 1.8rem;
    }
    
    .sec2-text p,
    .sec2-text .sec2-p {
        font-size: 1rem;
    }
    
    .sec3-text h1 {
        font-size: 1.8rem;
    }
    
    .sec3-text p {
        font-size: 1.2rem;
    }
    
    .cards img {
        height: 250px;
    }
    
    .map {
        height: 300px;
    }
}

/* Button Styles */
button {
    background: linear-gradient(290deg, #09ff00b0 0%, #3e449c 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

button:active {
    transform: translateY(0);
}

/* Accessibility Improvements */
:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 420px) {
    header {
        padding: 5px;
    }
    .logo img {
        width: 50px;
        height: 50px;
    }
    .contacts {
        margin-bottom: 20px;
    }
    .spacer {
        height: 150px;
    }
    
}