/*  About Page Style sheet for Header Started Here */

/* Style for the About section */
.about-header {
    position: relative; 
    width: 100%; 
    height: 200px; 
    
    display: flex;
    justify-content: center;
    align-items: center; 
    text-align: center;
}

/* Overlay style for a dark overlay effect */
.overlay-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333; 
    padding: 20px; 
}

/* Style for the H2 */
.overlay-about h2 {
    font-size: 26px; 
    margin-bottom: 10px; 
    text-transform: uppercase;
    letter-spacing: 2px; 
    font-family: 'Georgia', serif;
    color:#b78727 ;
}

/* Style for the horizontal rule (hr) */
.overlay-about hr {
    width: 50px;
    border: 2px solid #b78727;
    margin: 15px 20px;
}

/* Style for the H1 */
.overlay-about h1 {
    font-size: 18px; 
    max-width: 80%; 
    margin: 20px 0;
    line-height: 1.5; 
    font-family: 'Georgia', serif;
    color:#b78727 ;
}

/* Adjust responsiveness for smaller screens */
@media (max-width: 768px) {
    .about-header {
        height: 300px; 
    }
    .overlay-about h2 {
        font-size: 28px; 
    }
    .overlay-about h1 {
        font-size: 18px; 
        padding: 0 10px; 
    }
}

@media (max-width: 480px) {
    .about-header {
        height: 250px; 
    }
    .overlay-about h2 {
        font-size: 24px; 
    }
    .overlay-about h1 {
        font-size: 16px; 
        padding: 0 5px; 
    }
}

/*   About Page Style sheet for Header Ended Here */




/* About Page Founder Description And Image Code Style Sheet Started Here */

/* Founder section container */
.founder-content {
    padding: 50px 20px;
    background-color: white;
    display: flex;
    justify-content: center;
}

/* Inner container for description and image */
.founder-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
}

/* Left: Description styles */
.founder-description {
    flex: 1;
    padding-right: 20px;
}

.founder-description h3 {
    font-size: 20px;
    color: #b78727;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: left;
    font-family: 'Georgia', serif;
}

.founder-description h2 {
    font-size: 26px;
    color: #b78727;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
    font-family: 'Georgia', serif;
}

.founder-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    font-family: 'Georgia', serif;
}

/* Right: Image styles */
.founder-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.founder-image img {
    max-width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile View for Founder Section */
@media (max-width: 768px) {
    .founder-container {
        flex-direction: column-reverse;  /* Reverse the order: image first, description next */
        gap: 20px;
    }

    .founder-description {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .founder-image img {
        width: 100%;
        height: auto;
    }

    .founder-description h2 {
        font-size: 16px;
    }

    .founder-description h3 {
        font-size: 16px;
    }

    .founder-description p {
        font-size: 12px;
    }
}

/* About Page Founder Description And Image Code Style Sheet Ended Here */

/* About Page Managing Director Description And Image Code Style Sheet Started Here */

/* Managing Director section container */
.director-content {
    padding: 50px 20px;
    background-color: white;
    display: flex;
    justify-content: center;
}

/* Inner container for description and image */
.director-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    flex-direction: row-reverse;
}

/* Right: Description styles */
.director-description {
    flex: 1;
    padding-left: 20px;
}

.director-description h3 {
    font-size: 20px;
    color: #b78727;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: left;
    font-family: 'Georgia', serif;
}

.director-description h2 {
    font-size: 26px;
    color: #b78727;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
    font-family: 'Georgia', serif;
}

.director-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    font-family: 'Georgia', serif;
}

/* Left: Image styles */
.director-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.director-image img {
    max-width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile View for Managing Director Section */
@media (max-width: 768px) {
    .director-container {
        flex-direction: column-reverse;  /* Reverse the order: image first, description next */
        gap: 20px;
    }

    .director-description {
        padding-left: 0;
        margin-bottom: 20px;
    }

    .director-image img {
        width: 100%;
        height: auto;
    }

    .director-description h2 {
        font-size: 16px;
    }

    .director-description h3 {
        font-size: 16px;
    }

    .director-description p {
        font-size: 12px;
    }
}

/* About Page Managing Director Description And Image Code Style Sheet Ended Here */

/* About Page CEO Description And Image Code Style Sheet Started Here */

/* CEO section container */
.ceo-content {
    padding: 50px 20px;
    background-color: white;
    display: flex;
    justify-content: center;
}

/* Inner container for description and image */
.ceo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
}

/* Left: Description styles */
.ceo-description {
    flex: 1;
    padding-right: 20px;
}

.ceo-description h3 {
    font-size: 20px;
    color: #b78727;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: left;
    font-family: 'Georgia', serif;
}

.ceo-description h2 {
    font-size: 26px;
    color: #b78727;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
    font-family: 'Georgia', serif;
}

.ceo-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    font-family: 'Georgia', serif;
}

/* Right: Image styles */
.ceo-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ceo-image img {
    max-width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile View for CEO Section */
@media (max-width: 768px) {
    .ceo-container {
        flex-direction: column-reverse;  /* Reverse the order: image first, description next */
        gap: 20px;
    }

    .ceo-description {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .ceo-image img {
        width: 100%;
        height: auto;
    }

    .ceo-description h2 {
        font-size: 16px;
    }

    .ceo-description h3 {
        font-size: 16px;
    }

    .ceo-description p {
        font-size: 12px;
    }
}

/* About Page CEO Description And Image Code Style Sheet Ended Here */




/* About Page COO Description And Image Code Style Sheet Started Here */

/* COO section container */
.coo-content {
    padding: 50px 20px;
    background-color: white;
    display: flex;
    justify-content: center;
}

/* Inner container for description and image */
.coo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    flex-direction: row-reverse;  /* Initially the image is on the right */
}

/* Right: Description styles */
.coo-description {
    flex: 1;
    padding-left: 20px;
}

.coo-description h3 {
    font-size: 20px;
    color: #b78727;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: left;
    font-family: 'Georgia', serif;
}

.coo-description h2 {
    font-size: 26px;
    color: #b78727;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
    font-family: 'Georgia', serif;
}

.coo-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    font-family: 'Georgia', serif;
}

/* Left: Image styles */
.coo-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.coo-image img {
    max-width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    .coo-container {
        flex-direction: column-reverse;  /* Reverse the order: image first, description second */
        gap: 20px;
    }

    .coo-description {
        padding-left: 0;
        margin-bottom: 20px;
    }

    .coo-image img {
        width: 100%;
        height: auto;
    }

    .coo-description h2 {
        font-size: 16px;
    }

    .coo-description h3 {
        font-size: 16px;
    }

    .coo-description p {
        font-size: 12px;
    }
}

/* About Page COO Description And Image Code Style Sheet Ended Here */



/* About Page Why Choose Us Style Sheet Started Here */

/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 20px;
    background-color: white;
    text-align: center;
    font-family: 'Georgia', serif;
}

.box img {
    width: 60%;
    height: 150px;
    max-height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    margin-left: 110px;
}

.why-choose-us h2 {
    font-size: 26px;
    color: #b78727;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Container for the boxes */
.box-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual box styling */
.box {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Box hover effect */
.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.box h3 {
    font-size: 18px;
    color: #b78727;
    margin-bottom: 15px;
    text-align: center;
}

.box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Mobile View Styles */
@media (max-width: 768px) {
   
    .why-choose-us {
        padding: 30px 15px;
    }

    /* Adjust the heading size for mobile */
    .why-choose-us h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    /* Adjust the image inside the boxes */
    .box img {
        width: 80%; 
        margin-left: 20px; 
    }

    /* Adjust the box container to 1 column */
    .box-container {
        grid-template-columns: 1fr; 
        gap: 15px; 
    }

    /* Adjust the box padding */
    .box {
        padding: 15px;
    }

    /* Adjust the heading inside the box */
    .box h3 {
        font-size: 16px;
    }

    /* Adjust text size inside the box */
    .box p {
        font-size: 13px;
    }
}

/* Mobile View for Very Small Screens */
@media (max-width: 480px) {
    .why-choose-us {
        padding: 20px 10px;
    }

    /* Further reduce the heading size */
    .why-choose-us h2 {
        font-size: 16px;
    }

    .box img {
        width: 90%; 
    }

    .box h3 {
        font-size: 14px;
    }

    .box p {
        font-size: 12px;
    }
}

/* About Page Why Choose Us Style Sheet Ended Here */

