/* General Styles */
:root {
    --org: #FFA500;
    --blu: #2a6496;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    position: relative;
}
   
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--org);
}

/* ==================== */
/* Header & Navigation */
/* ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 15px 20px;
    background-color: var(--blu);
}

/* .logo img {
    max-width:60%;
    height: auto; 
    max-height: 80px; 
    padding:0 10vw;
} */

nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

 
.slogan{
    width: auto;
    height: 57px;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav-links li a:hover {
    color: var(--org);
    border-bottom: 2px solid var(--org);
}

.thought-info h3 {
    font-size: 18px;
    color: rgb(45, 146, 45);
    text-align: center;
    margin: 0;
    font-style: italic;
    font-weight: 400;
    padding: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
} 

/* General Styles */
:root {
    --org: #FFA500;
    --blu: #2a6496;
    --transition: all 0.3s ease;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 15px 20px;
    background-color: var(--blu);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.slogan {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: var(--transition);
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--org);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--org);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    z-index: 1000;
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--org);
}

/* Responsive Navigation */
@media (max-width: 800px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--blu);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 12px 20px;
    }

    .nav-links li a:hover {
        background-color: rgba(255,255,255,0.1);
    }

    .nav-links li a::after {
        display: none;
    }
    .slogan{
        display: none;
    }
}


/* ==================== */
/* Hero Section */
/* ==================== */
.hero {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 100vh;
    text-align: center;
    padding: 100px 20px;
    opacity: 0.95;
    position: relative;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap; 
}
.cta-button {
    background-color: var(--org);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e69500;
}

/* ==================== */
/* Services Section */
/* ==================== */
.services {
    padding: 50px 20px;
    text-align: center;
    background-color: #F5F5F5;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--blu);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon-diamond {
    width: 80px;
    height: 80px;
    background-color: var(--org);
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    margin-right: 20px;
    transition: background-color 0.3s ease;
}

.icon-diamond i {
    color: white;
    font-size: 24px;
}

.service-card:hover .icon-diamond {
    background-color: var(--blu);
}

.service-content {
    text-align: left;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--blu);
}

.service-content p {
    font-size: 14px;
    color: #555;
}

/* ==================== */
/* Why Choose Us Section */
/* ==================== */
.why-choose-us {
    padding: 50px 20px;
    text-align: center;
    background-color: #F5F5F5;
}

.why-choose-us h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--blu);
}

.why-choose-us p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    perspective: 1000px;
}

.feature-card-inner {
    position: relative;
    width: 100%;
    height: 200px;
    text-align: center;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.feature-card:hover .feature-card-inner {
    transform: rotateY(180deg);
}

.feature-card-front,
.feature-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
}

.feature-card-front {
    background-color: var(--blu);
    color: white;
}

.feature-card-front i {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card-front h3 {
    font-size: 20px;
    margin: 0;
}

.feature-card-back {
    background-color: var(--org);
    color: white;
    transform: rotateY(180deg);
}

.feature-card-back p {
    font-size: 14px;
    margin: 0;
    text-align: center;
}

/* ==================== */
/* Products Section */
/* ==================== */
.products {
    padding: 50px 20px;
    text-align: center;
    background-color: #F5F5F5;
}

.products h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--blu);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    perspective: 1000px;
}

.product-card-inner {
    position: relative;
    width: 100%;
    height: 300px;
    text-align: center;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.product-card:hover .product-card-inner {
    transform: rotateY(180deg);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: var(--blu); /* #2a6496 */
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title p {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
.product-card-front,
.product-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
}

.product-card-front {
    background-color: white;
    color: var(--blu);
}

.product-card-front img {
    max-width: 100%;
    height: 150px;
    margin-bottom: 15px;
}

.product-card-front h3 {
    font-size: 20px;
    margin: 0;
}

.product-card-back {
    background-color: var(--blu);
    color: white;
    transform: rotateY(180deg);
}

.product-card-back p {
    font-size: 14px;
    margin: 0 0 15px 0;
    text-align: center;
}

.product-card-back .price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-card-back .cta-button {
    background-color: var(--org);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.product-card-back .cta-button:hover {
    background-color: #e69500;
}

/* ==================== */
/* Contact Section */
/* ==================== */
.contact-grid {
    width: 100%;
    text-align: center;
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.contact-details {
    /* text-align: left; */
    width:100%;
}

.contact-details h3 {
    margin-bottom: 10px;
    color: var(--blu);
}

.contact-section {
    padding: 100px 20px;
    margin-top: 80px; 
}

.contact-details p {
    margin-bottom: 30px;
    line-height: 1.6;
    word-wrap: break-word;
}

.careers-content {
    min-height: calc(100vh - 200px);
    padding: 100px 20px;
    margin-top: 80px;
    text-align: center;
}
.contact-form {
    text-align: left;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--blu);
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: var(--org);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #e69500;
}

/* Modern Footer Styles */
.modern-footer {
    background-color: #2a6496;
    color: white;
    position: relative;
    padding-top: 80px;
    margin-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col h3 {
    color: #FFA500;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #FFA500;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

.tagline {
    font-style: italic;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.footer-links li, 
.contact-info li, 
.business-hours li {
    margin-bottom: 12px;
}

.footer-links a, 
.contact-info a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    display: flex;
    text-decoration: none;
    align-items: center;
}

.footer-links a:hover, 
.contact-info a:hover {
    color: #FFA500;
    padding-left: 5px;
}

.footer-links i, 
.contact-info i {
    margin-right: 8px;
    color: #FFA500;
    font-size: 0.8rem;
}

.contact-info i {
    width: 20px;
    text-align: center;
}

.business-hours span {
    color: #FFA500;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #FFA500;
    transform: translateY(-3px);
}

.emergency-contact {
    margin-top: 25px;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-left: 3px solid #FFA500;
    border-radius: 4px;
}

.emergency-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.emergency-contact i {
    color: #FFA500;
    margin-right: 8px;
}

.emergency-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #FFA500;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 {
        font-size: 36px;
        padding: 0 20px;
        white-space: normal;
    }
}

/* ==================== */
/* Introduction Section */
/* ==================== */
.introduction {
    background-image: url('images/intro-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    z-index: 100;
}

.introduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blu);
}

.intro-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.introduction h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.introduction h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--org);
}

.introduction p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.introduction .cta-button {
    background-color: var(--org);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.introduction .cta-button:hover {
    background-color: #e69500;
}

/* PRODUCT CARD */
.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .product-details {
    padding: 15px;
  }
  
  .learn-more {
    background: #2a6496;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
  }
  .learn-more button{
    
  }
  /* MODAL STYLES */
  .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 100;
  }
  
  .modal {
    display: none;
    position: fixed;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: white;
    border-radius: 8px;
    z-index: 101;
    overflow-y: auto;
  }
  
  .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* SUB-PRODUCTS GRID */
  .sub-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
  }
  
  .sub-product-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
  }
  
  .sub-product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
  }

  /* About Us Section */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-card p {
    color: #555;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.values-list i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 3px;
}

/* Decorative elements */
.about-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.vision-card::after {
    background: linear-gradient(90deg, #2a6496, #4a8bc9);
}

.mission-card::after {
    background: linear-gradient(90deg, #FFA500, #ffc04d);
}

.values-card::after {
    background: linear-gradient(90deg, #28a745, #5cb85c);
}

@media (max-width: 800px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--blu);
        flex-direction: column;
        padding: 20px 0;
        transition: all 0.3s ease;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links li a {
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .logo img{
        width: 100%;
        /* padding:0 20vw; */
    }
}

