/* Mobile-first styles */
:root {
    --primary-color: #8b0000;
    --secondary-color: #2c3e50;
    --text-color: #333;
}

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

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color:rgba(23, 20, 75);
}

/* Header */
header {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 70px;
    width: 150px;
    object-fit: contain;
    margin-left: 5px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    position: relative;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: rgba(23, 20, 75);
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: color 0.3s;
    font-size: 18px;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 0;
    min-width: 180px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: rgba(23, 20, 75);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background: rgba(23, 20, 75, 0.1);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    padding: 2px 10px;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background: var(--secondary-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transform: translateX(100%);
        transition: 0.3s;
        color: rgba(23, 20, 75);
    }

    .nav-active {
        transform: translateX(0);
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}
/* Main Content */
main {
    
    padding: 2rem 1rem;
}
/* Forms */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.2rem;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    background-color: rgba(227, 188, 65);
    color: rgba(23, 20, 75);
    border: none;
    height: 50px;
    padding: 5px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 35%;
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(227, 188, 65);
    color: rgba(23, 20, 75);
    padding: 15px 20px;
    font-size: 16px;
    text-align: center;
    font-weight:700;
  }
  
  .footer-top {
    margin-bottom: 10px;
  }
  
  .footer-bottom {
    display: flex;
    gap: 15px;
  }
  
  .footer-bottom a {
    color: rgba(23, 20, 75);
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: none;
  }
  
  

/* Desktop Styles */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    .products-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    button {
        width: auto;
    }
}
/* ======================
   Contact Section Styles
   ====================== */

   .contact-section ,
   .AboutUs-section{
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgb(255, 255, 255);
    border-radius: 0.8rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    margin-top: 55px;
    line-height: 2;
    margin-bottom: 15px;
}

.contact-form {
    margin: 2rem auto;
    max-width: 600px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: .375rem .75rem;
    border: 1px solid #ddd;
    border-radius: 50px; /* or use 9999px for fully rounded edges */
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1192e9;
    outline: none;
}

/* Contact Groups Layout */
.contact-group {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-box {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

.contact-box h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-box p {
    color: #555;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.contact-box a {
    color: #1192e9;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.contact-box a:hover {
    opacity: 0.8;
}

/* Map Styling */
.contact-map {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 1rem auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-group {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-box {
        width: 100%;
        min-width: auto;
    }

    .contact-map {
        width: 200px;
        height: 200px;
    }

    .contact-section {
        margin-top: 4rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-map {
        width: 180px;
        height: 180px;
    }
    
    .contact-box p {
        font-size: 0.9rem;
    }
}
/* ======================
   Careers Page Styles
   ====================== */
   .careers-section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.job-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media (min-width: 768px) {  /* Apply for tablets and larger screens */
    .job-grid {
        grid-template-columns: repeat(2, 1fr); /* Exactly two cards per row */
    }
}
.job-listing {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.job-listing:hover {
    transform: translateY(-5px);
}

.job-meta {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.job-meta p {
    margin: 0.5rem 0;
    color: #444;
}

.responsibilities-list,
.requirements-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.responsibilities-list li,
.requirements-list li {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.apply-btn {
    display: inline-block;
    background: rgba(227, 188, 65);
    color:rgba(23, 20, 75);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.apply-btn:hover {
    background: rgba(227, 188, 65);
}

@media (max-width: 768px) {
    .job-grid {
        grid-template-columns: 1fr;
    }
    
    .job-listing {
        padding: 1rem;
    }
    
    .job-meta {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .careers-section {
        padding: 1rem;
    }
    
    .apply-btn {
        width: 100%;
        text-align: center;
    }
}
h2,
h1{
    color: rgba(227, 188, 65);
    font-family: "Montserrat", sans-serif;
}
.contact-banner{
    position:static;
    width: 100%;
   margin-top: 80px;
    
}
/*products css*/
.products-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    margin: 60px auto 0; /* Centers the container horizontally */
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
    padding: 15px; /* Adds spacing inside the card */
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.product-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Download Button */
.download-btn {
    border: 2px solid rgba(227, 188, 65);
    background-color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    display: block;
    width: 80%;
    margin: 10px auto; /* Centers the button */
    text-align: center;
}

.download-btn:hover {
    background-color: rgba(227, 188, 65);
    color: white;
}

.download-btn svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.download-btn:hover svg {
    fill: white;
}
    section.careers-section {
        margin-top: 40px;
    }
   
/* home section */
    b {
        color: rgba(23, 20, 75);
    }
	/*loader*/
	.loader-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      z-index: 9999;
      transition: all 1s ease;
    }

    .logo-inner {
      width: 180px;
      margin-top: 20px;
      opacity: 0;
      animation: logoFadeIn 0.8s ease-in forwards;
      animation-delay: 0.8s;
    }

    @keyframes logoFadeIn {
      0% {
        transform: scale(0.8);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    .brand-name {
      font-size: 1.6rem;
      font-weight: 700;
      color: #0d1b4c;
      opacity: 0;
      margin-top: 20px;
      animation: brandFadeIn 1s ease-out forwards;
      animation-delay: 2s;
    }

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

    /* === Exit Animation (Zoom forward + fade) ===*/
    .loader-container.exit {
      animation: zoomOutForward 0.65s ease-in forwards;
    }

    @keyframes zoomOutForward {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      100% {
        transform: scale(3);
        opacity: 0;
      }
    }     
    /* welcome Section */
    .welcome-section {
        text-align: center;
        padding: 50px 20px;
        background-color: #ffffff;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        margin: 20px;
        border-radius: 10px;
        
    }
    
    .welcome-content {
        max-width: 800px;
        margin: auto;
    }
    
    .title-line {
        width: 100px;
        height: 4px;
        background-color: rgba(227, 188, 65);
        margin: 10px auto 20px;
    }
    
    /* Mission & Vision */
    .mv-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 40px;
        max-width: 1000px;
        margin: auto;
    }
    
    .mission, .vision {
        flex: 1;
        min-width: 300px;
        padding: 20px;
        background-color: #f1f1f1;
        border-radius: 10px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .separator {
        width: 4px;
        height: 100px;
        background-color:rgba(227, 188, 65);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .mv-container {
            flex-direction: column;
        }
        .separator {
            display: none;
        }
    }
    .iso-certification {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        text-align: left;
        margin-top: 30px;
        font-size: 18px;
        font-weight: bold;
        color: rgba(227, 188, 65);
        background-color: #f1f1f1;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .iso-certification img {
        width:120px;
        height: auto;
    }
    .founder-section {
        margin-top: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px 20px;
    }
    
    .founder-container {
        display: flex;
        align-items: center;
        max-width: 1200px;
        background: white;
        padding: 40px;
        border-radius: 10px;
       
    }
    
    .founder-image {
        width: 300px; /* Adjust size as needed */
        height: 300px; /* Ensure it's a perfect circle */
        border-radius: 50%; /* Makes it round */
        object-fit: cover; /* Ensures the image fills the circle */
        margin-right: 40px;
       
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Stronger shadow in all directions */
    
    }
    
    .founder-content {
        max-width: 700px;
    }
    
    .founder-content h1 {
        margin-top: 20px;
        color:rgba(227, 188, 65);
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .founder-content p {
        color: #555;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
        .founder-container {
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }
    
        .founder-image {
            width: 100%;
            max-width: 300px;
            margin:auto;
        }
    
        .founder-content {
            max-width: 100%;
        }
    }
    .contact-banner-div{
        align-content: center;
    }
    .welcome-video-con{
margin-top: 75px;
    }
