* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Optional: Other loader styles */
}

/* From Uiverse.io by Praashoo7 */ 
.l {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 0.2s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .o {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 0.4s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .a {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 0.6s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .d {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 0.8s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .i {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 1s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .n {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 1.2s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .g {
    color: black;
    opacity: 0;
    animation: pass 2s ease-in-out infinite;
    animation-delay: 1.4s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .d1 {
    color: black;
    opacity: 0;
    animation: pass1 2s ease-in-out infinite;
    animation-delay: 1.6s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  .d2 {
    color: black;
    opacity: 0;
    animation: pass1 2s ease-in-out infinite;
    animation-delay: 2s;
    letter-spacing: 0.5em;
    text-shadow: 2px 2px 3px #919191;
}
  
  @keyframes pass {
    0% {
      opacity: 1;
    }
  
    50% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
}
  
  @keyframes pass1 {
    0% {
      opacity: 1;
    }
  
    50% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
}

.navbar-container {
    width: 100%;
    height: 85px;
    background-color: white;
    padding: 14px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3px;
    height: 60px;
}

.logo img {
    height: 75px;
    width: auto;
}


.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 17px;
}

.nav-links a {
    font-family: "Roboto Condensed", sans-serif;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    margin-top: 30px;
    margin-right: 20px;
}

.nav-links a:hover {
    color: #608BC1;
}

.phone-number a {
    font-size: 20px;
    background-color: white;
    border-radius: 20px;
    padding: 15px;
    color: #ED6a5a;
    border: 2px solid #ED6a5a;
}

.nav-links .phone-number a:hover {
    color: white;
    background-color: #ED6a5a;
}
.main-content{
    text-align: center;
    padding: 40px;
    color: #333;
    background-color: #dedfdf;
}

.main-content h1{
    font-family: "Titillium Web", sans-serif;
    font-size: 50px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 50px;
    color: rgb(21, 21, 21);
}

.main-content p{
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    margin-bottom: 40px;
    color: black;
}

/* Container for the whole section */
.owner {
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.owner h2 {
    font-size: 30px;
    font-weight: bold;
    color: #2C2F3A;
    padding: 40px;
}

/* Flexbox container for directors */
.directors {
    display: flex;
    justify-content: center;
    gap: 70px;
}

/* Individual director card */
.director {
    background-color: #F9FAFB;
    border-radius: 10px;
    width: 300px;
    height: 320px;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.director:hover {
    transform: translateY(-5px);
}

/* Image styling */
.director img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Director name styling */
.director h3 {
    font-size: 18px;
    color: #1e1f22;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Position styling */
.director p {
    font-size: 16px;
    color: #6A6F7A;
    margin: 0;
}

.position {
    color: #007bff; /* Link color for non-executive position */
}

.image-section {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.image-section img {
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}




/* Footer Container */
.foot {
    background-color: #1e1e28;
    color: #ffffff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Column */
.footer-column {
    flex: 1;
    margin: 0 15px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
}

.footer-column h3::after {
    content: "▸";
    color: #007bff;
    font-size: 18px;
    position: absolute;
    margin-left: 5px;
}

/* Footer Text */
.footer-column p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.6;
}

/* Links Styling */
.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin: 8px 0;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Contact Information */
.contact-info li {
    font-size: 14px;
    color: #cccccc;
}

.verified-badge {
    margin-top: 20px;
    max-width: 100px;
}

/* Footer Column Spacing */
.footer-container .footer-column:not(:last-child) {
    margin-right: 30px;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

/* Dropdown Menu for Mobile */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px; /* Adjust based on navbar height */
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.mobile-nav a {
    padding: 10px 0;
    color: #333;
    font-size: 18px;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
}

.mobile-nav a:hover {
    color: #608BC1;
}

/* Responsive adjustments for navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide main nav links */
    }

    .hamburger {
        display: block; /* Show hamburger icon */
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .container,
    .content-section,
    .product-cards,
    .stat {
        flex-direction: column;
        gap: 20px;
    }

    /* Ensure content centers and resizes for mobile */
    .content h1 {
        font-size: 50px;
    }
    .content h3 {
        font-size: 28px;
    }
    .content h2 {
        font-size: 18px;
        padding: 8px 16px;
    }
    .left-column,
    .right-column {
        width: 100%;
    }
    .image-section img,
    .product-card {
        width: 100%;
    }
    .footer-container {
        display: block;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .testimonial-container {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
        align-items: center;
        padding: 50px;
    }
}

/* Responsive adjustments for .main-content */
@media (max-width: 768px) {
    .main-content {
        padding: 20px; /* Reduced padding for mobile */
    }

    .main-content h1 {
        font-size: 32px; /* Smaller font size for mobile */
    }

    .main-content p {
        font-size: 16px; /* Smaller font size for mobile */
    }
}

/* Responsive adjustments for .director cards */
@media (max-width: 1024px) {
    .directors {
        flex-direction: column; /* Stack cards vertically on tablet and mobile */
        align-items: center; /* Center-align cards */
        gap: 50px; /* Smaller gap between cards */
    }

    .director {
        width: 90%; /* Full width on smaller screens */
        max-width: 400px; /* Limit max width for larger tablets */
        height: auto; /* Allow height to adjust based on content */
    }

    .director img {
        width: 140px; /* Reduce image size */
        height: 140px; /* Keep image size proportional */
    }

    .director h3 {
        font-size: 16px; /* Smaller font size for mobile */
    }

    .director p {
        font-size: 14px; /* Smaller font size for mobile */
    }
}

