

/* Disable text selection */
body {
    user-select: none; /* Prevent text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Disable copying */
body {
    -webkit-touch-callout: none; /* Disable touch context menu */
}


/* No screenshot */
.no-screenshot {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0); /* Invisible overlay */
    pointer-events: none; /* Allow interactions below */
}

/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}


/*prevent drag and drop img*/
img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}


/* Header */
header {
    background: url('image/bg/bg3.jpg') no-repeat center center/cover #343a40;
    padding: 40px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-blend-mode: overlay;
}

/* Overlay to improve readability */
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Header Logo */
.logo {
    margin-right: 20px;
}

/* Heading Style */
.header-content h1 {
    color: #FF0000FF;
    margin: 0 20px;
    font-size: 28px;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a,
nav .btn {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: bold;
}

nav .btn {
    background: #FF0000;
}

nav ul li a:hover,
nav .btn:hover {
    background: #FF0000;
}

/* Hamburger Menu Button (Hidden by default) */
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
} give more attractive design with proper spacing and padding 

/* Responsive Styles for 999px and below */
@media (max-width: 999px) {
    header {
        padding: 30px 0;
    }

    .header-content {
        flex-direction: column; /* Stack the content vertically */
        align-items: center; /* Center align the content */
    }

    .header-content h1 {
        font-size: 24px;
        margin-bottom: 20px; /* Add spacing below the heading */
    }

    nav ul {
        flex-direction: row; /* Align buttons horizontally */
        justify-content: center; /* Center the buttons horizontally */
        gap: 15px; /* Add space between buttons */
        margin-top: 10px;
        padding: 0; /* Remove extra padding */
    }

    nav ul li {
        margin: 0; /* Reset margins for a clean horizontal layout */
    }

    nav ul li a,
    nav .btn {
        padding: 10px 15px; /* Adjust button size */
        font-size: 16px; /* Ensure readability */
    }

    .hamburger {
        display: none; /* Hide the hamburger button */
    }
}

/* Responsive Styles for 768px and below */
@media (max-width: 998px) {
    .container {
        width: 95%;
    }

    header {
        padding: 20px 0;
    }

    .header-content {
        flex-direction: column; /* Keep content stacked vertically */
        align-items: center; /* Center the content */
    }

    .header-content h1 {
        font-size: 25px;
        margin-bottom: 15px; /* Add spacing below the heading */
    }

    nav ul {
        flex-direction: row; /* Align buttons horizontally */
        justify-content: center; /* Center the buttons horizontally */
        gap: 10px; /* Add space between buttons */
        margin-top: 10px;
        padding: 0; /* Remove extra padding */
    }

    nav ul li {
        margin: 0; /* Reset margins for a clean horizontal layout */
    }

    nav ul li a,
    nav .btn {
        padding: 8px 10px; /* Adjust button size */
        font-size: 14px; /* Maintain readability on smaller screens */
    }

    .hamburger {
        display: none; /* Hide the hamburger button */
    }
}


/* Hamburger Menu Button (Hidden by default) */
.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Navigation Drawer (Hidden by default) */
#nav-links {
    transition: transform 0.3s ease;
}


/* 480 px */
@media (max-width: 480px) {
    .header-content {
        flex-direction: row; /* Align logo and hamburger button in a row */
        justify-content: space-between; /* Space out the items */
        align-items: center; /* Vertically align the items */
    }

    .hamburger {
        display: block; /* Make hamburger button visible */
        font-size: 24px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        position: absolute;
        right: 20px; /* Align hamburger button to the right side */
        top: 50px; /* Align with the header */
    }

    .header-content h1 {
        font-size: 24px; /* Adjust font size for medium display */
        margin: 0;
        text-align: center; /* Center align the heading */
        flex: 1; /* Ensure it takes available space */
        margin-right: 70px; /* Some margin for spacing with hamburger */
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%; /* Initially off-screen */
        width: 50%; /* Width of the menu drawer */
        height: 100%;
        background: url('image/bg/b2.jpg') no-repeat center center / cover; /* Background image */
        display: flex; /* Added display flex for alignment */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        padding: 20px 0;
        transition: transform 0.3s ease, right 0.3s ease;
        background-color: rgba(0, 0, 0, 0.7); /* Fallback color for browsers with no image support */
        background-blend-mode: darken; /* Optional: Blend image and color */
    }

    nav ul.show {
        right: 0; /* Slide in the drawer */
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 20px;
        text-align: center;
    }

    nav .btn {
        padding: 10px 20px;
        font-size: 20px;
    }
}



/* Home Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden; /* Hide content outside the visible area */
    background-color: #ffffff;
    padding: 10px 0;
    position: relative;
    text-align: center; /* Center-align content */
}


.marquee {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    animation: scroll 25s linear infinite; /* Smooth continuous scroll */
    width: auto;
}

.marquee img {
    margin: 0 15px; /* Spacing between images */
    width: 100px; /* Image width */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s; /* Smooth hover effect */
}

.marquee img:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Duplicate content and move from right to left */
@keyframes scroll {
    0% {
        transform: translateX(100%); /* Start position */
    }
    100% {
        transform: translateX(-200%); /* Scroll entire width of images */
    }
}






/* Hero Section */
.hero {
    background: url('image/bg/bg1.jpg') no-repeat center center/cover; /* Replace with the actual path */
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    /*padding-top: 10px;*/
    text-align: center;
    position: relative;
    overflow: hidden; /* Prevents overflow issues */
}

.hero-overlay {
    background: rgba(0, 50, 100, 0.7); /* Darker blue overlay */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0; /* Ensures overlay sits below content */
}

.hero-content {
    position: relative; /* Ensures content is above the overlay */
    max-width: 800px;
    margin: 0 auto;
    z-index: 1; /* Places text above the overlay */
    padding: 0 20px; /* Adds padding for smaller screens */
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size */
    font-weight: bold;
    margin: 0.5em 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Subtle text shadow */
}

.hero-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive font size */
    font-weight: bold;
    color: #FF0000; /* Accent color */
    margin: 0.5em 0;
    animation: fadeIn 1s ease-in-out; /* Smooth fade-in animation */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Subtle text shadow */
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Responsive font size */
    margin-bottom: 1em;
    line-height: 1.6; /* Improves readability */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Subtle text shadow */
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1em;
    flex-wrap: wrap; /* Ensures buttons stack on smaller screens */
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease; /* Smooth transition */
    font-size: 1rem; /* Standardized font size */
}

.btn-primary {
    background: #808080; /* Gray */
    color: #fff;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2); /* Button shadow */
}

.btn-secondary {
    background: #008000; /* Green */
    color: #fff;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2); /* Button shadow */
}

.btn:hover {
    transform: translateY(-3px); /* Hover lift effect */
    opacity: 0.9;
    box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

/* Keyframe Animation for Hero Text */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    .hero {
        height: auto; /* Adjust height for smaller devices */
        padding: 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .button-group {
        flex-direction: column; /* Stack buttons on small screens */
        gap: 10px;
    }
}


/* Home Index certificate*/
/*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.certificatr-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px; 
}

.slider-box {
    width: 500px; 
    height: 300px; 
    padding: 5px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;

}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
}

.slides input {
    display: none;
}

.slide {
    width: 100%;
    transition: 2s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auto-navigation {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}*/




/* Home certificate Button
.auto-btn1, .auto-btn2, .auto-btn3 {
    width: 0px;
    height: 0px;
    border: 0px solid #fff;
    border-radius: 00%;
    margin: 5px;
    cursor: pointer;
}

.manual-navigation {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.manual-btn {
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s;
}

.manual-btn:not(:last-child) {
    margin-right: 10px;
}

#radio1:checked ~ .first {
    margin-left: 0;
}

#radio2:checked ~ .first {
    margin-left: -100%;
}

#radio3:checked ~ .first {
    margin-left: -200%;
}

.static-message {
    max-width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.static-message h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.static-message p {
    font-size: 16px;
    color: #555;
}*/




/* Basic styling */
.industry-domain {
    text-align: center;
    margin: 0 auto;
    padding: 20px 10px; /* Balanced padding for spacing */
}

.industry-domain h2 {
    color: #8B0000;
}

.slider-container {
    position: relative;
    width: 100%; /* Make container width 100% to adapt to screen size */
    max-width: 960px; /* Max width for large screens */
    margin: 20px auto; /* Add vertical margin for cleaner separation */
    overflow: hidden; /* Hide cards outside the viewport */
    display: flex;
    justify-content: center;
}

.cards {
    display: flex;
    transition: transform 0.5s ease; /* Smooth slide transition */
    width: 100%; /* Ensure the cards take the full width of the container */
    padding: 10px 0; /* Add vertical spacing for clean appearance */
}

.card {
    width: 300px; /* Width of each card */
    margin: 0 10px; /* Reduced spacing for better alignment */
    flex-shrink: 0; /* Prevent cards from shrinking */
    box-sizing: border-box;
    border-radius: 10px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    overflow: hidden; /* Prevent overflow of content */
    background: #fff; /* Clean white background */
}

.card img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #f1f1f1; /* Add a subtle separator */
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px; /* Add spacing between title and content */
    color: #333; /* Dark text for readability */
}

/* Button styles */
.slider-btn {
    background-color: rgba(0, 0, 0, 0.6); /* Slightly darker background for contrast */
    color: white;
    padding: 12px 16px; /* Larger clickable area */
    border: none;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 50%; /* Circular buttons */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add shadow for emphasis */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Darker on hover */
}

.prev-btn {
    left: 15px; /* Offset from the edge for spacing */
}

.next-btn {
    right: 20px; /* Offset from the edge for spacing */
}


/* Responsive styling */

/* For screen widths between 769px and 1023px (landscape tablets and small desktops) */
@media (max-width: 1023px) and (min-width: 769px) {
    .card {
        width: 45%; /* Cards take up 45% of the container width */
        margin: 0 5px; /* Adjust margin for better spacing */
    }

    .slider-container {
        max-width: 95%; /* Slightly smaller container for medium screens */
        padding: 0 15px; /* Add padding for spacing */
    }
}

/* For tablets (portrait and landscape, max 768px) */
@media (max-width: 768px) {
    .card {
        width: calc(50% - 20px); /* Ensure two cards fit side by side with proper spacing */
        margin: 10px; /* Provide even spacing around each card */
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1); /* Adjust shadow for a subtle effect */
        padding: 0; /* Remove padding within the card itself to avoid image cropping */
        padding-left: 5px;
        padding-right: 10px;
    }

    .slider-container {
        max-width: 100%; /* Ensure the container spans the full width */
        padding: 0 15px; /* Add consistent padding to the container edges */
    }

    .card img {
        width: 100%; /* Images take the full width of the card */
        height: auto; /* Maintain aspect ratio to prevent distortion */
        object-fit: cover; /* Ensure the image covers the card area without cutting off important parts */
    }

    .prev-btn {
        left: 25px; /* Adjust left button spacing */
    }

    .next-btn {
        right: 30px; /* Adjust right button spacing */
    }
}


/* For mobile phones (portrait) */
@media (max-width: 480px) {
    .card {
        width: 100%; /* Cards take up full width of the container on mobile */
        margin: 0 5px; /* Reduced margin for mobile */
        padding-right: 10px;
    }

    .slider-container {
        max-width: 100%; /* Container width for mobile */
        padding: 0 5px; /* Padding for mobile to avoid cut off */
        padding-right: 10px;
    }

    .slider-btn {
        font-size: 20px; /* Smaller buttons on mobile */
        padding: 8px;
        border-radius: 50%; /* Keep circular buttons */
    }
}

/* For very small screens (portrait phones or very narrow screens) */
@media (max-width: 320px) {
    .card {
        width: 100%; /* Cards take up full width of the container on very small screens */
        margin: 0 2px; /* Reduced margin for very small screens */
        padding-right: 5px;
    }

    .slider-container {
        max-width: 100%; /* Full width container for very small screens */
        padding: 0 5px; /* Padding for very small screens to avoid cut off */
        padding-right: 5px;
    }

    .slider-btn {
        font-size: 18px; /* Even smaller buttons on very small screens */
        padding: 6px;
    }
}

/* For larger screens (desktop) */
@media (min-width: 1024px) {
    .slider-container {
        max-width: 960px; /* Max width for larger screens */
    }

    .card {
        width: 30%; /* Cards take up 30% of the container on larger screens */
        margin: 0 15px; /* Default margin for larger screens */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    }
}





/* Facts and Figures */
.facts-figures {
    padding: 40px;
    text-align: center;
    background-color: #f4f4f4;
}

.facts-figures h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #8B0000; /* Change to your brand color */
}

.facts-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.fact {
    width: 120px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fact h3 {
    font-size: 2.5em;
    color: #333;
    margin: 0;
}

.fact p {
    font-size: 1em;
    color: #666;
}

/* Responsive Styles for Medium Screens (Tablets) */
@media (max-width: 1024px) {
    .facts-figures {
        padding: 30px 20px;
    }

    .facts-figures h2 {
        font-size: 1.8em;
    }

    .facts-container {
        gap: 20px;
    }

    .fact {
        width: 150px; /* Slightly larger width on tablets */
        padding: 15px; /* Reduced padding */
    }

    .fact h3 {
        font-size: 2.2em; /* Smaller heading size */
    }

    .fact p {
        font-size: 0.9em; /* Slightly smaller text */
    }
}

/* Responsive Styles for Small Screens (Mobile) */
@media (max-width: 768px) {
    .facts-figures {
        padding: 20px;
    }

    .facts-figures h2 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }

    .facts-container {
        gap: 15px; /* Smaller gap between items */
    }

    .fact {
        width: 100%; /* Full width on mobile */
        padding: 15px;
    }

    .fact h3 {
        font-size: 2em; /* Adjust heading size */
    }

    .fact p {
        font-size: 0.9em;
    }
}

/* Responsive Styles for Extra Small Screens */
@media (max-width: 480px) {
    .facts-figures {
        padding: 15px;
    }

    .facts-figures h2 {
        font-size: 1.4em;
        margin-bottom: 10px;
    }

    .facts-container {
        gap: 10px; /* Further reduce gap */
    }

    .fact {
        width: 100%; /* Full width on small screens */
        padding: 12px; /* Reduced padding */
    }

    .fact h3 {
        font-size: 1.8em; /* Smaller heading size */
    }

    .fact p {
        font-size: 0.8em; /* Smaller font size */
    }
}




/* 2. About Page Container Styling */
.content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

/* About Section */
.about-section {
    display: flex;
    flex-direction: column; /* Stack the sections vertically */
    align-items: center;
    justify-content: center;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Reverse layout for the second rotator (text on the left, image on the right) */
.content:nth-child(2) {
    flex-direction: row-reverse; /* This will reverse the order of image and text */
}

/* Rotating Background Container */
.rotating-bg {
    position: relative;
    width: 450px;
    height: 300px;
    margin-right: 20px;
    overflow: hidden;
    border: 2px solid #333;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Adjust margin for the second content block so the margin is on the left side */
.content:nth-child(2) .rotating-bg {
    margin-right: 0;
    margin-left: 20px; /* Shift margin to the left when image is on the right */
}

/* Each Background Image */
.rotating-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: fade 20s infinite;
}

/* Specific Timings for Each Image in First Rotator */
.rotating-bg img:nth-child(1) {
    animation-delay: 0s;
}

.rotating-bg img:nth-child(2) {
    animation-delay: 5s;
}

.rotating-bg img:nth-child(3) {
    animation-delay: 10s;
}

.rotating-bg img:nth-child(4) {
    animation-delay: 15s;
}

/* Specific Timings for Each Image in Second Rotator */
.content:nth-child(2) .rotating-bg img:nth-child(1) {
    animation-delay: 0s;
}

.content:nth-child(2) .rotating-bg img:nth-child(2) {
    animation-delay: 5s;
}

.content:nth-child(2) .rotating-bg img:nth-child(3) {
    animation-delay: 10s;
}

.content:nth-child(2) .rotating-bg img:nth-child(4) {
    animation-delay: 15s;
}

/* Text Content Styling */
.text-content {
    max-width: 500px;
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 2s forwards;
    animation-delay: 1s;
}

/* Slide-In Animation for Text */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Fade Animation */
@keyframes fade {
    0%, 25% { opacity: 1; }
    30%, 100% { opacity: 0; }
}

/* About New Text Content Specific Styling */
.text-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 18px;
    color: #333;
}

/* Existing CSS remains the same */

/* Media Query for Mobile Screens */
@media screen and (max-width: 768px) {
    /* About Page Container Styling */
    .content {
        flex-direction: column; /* Stack elements vertically */
        padding: 20px; /* Reduced padding for mobile */
    }

    /* About Section */
    .about-section {
        padding: 20px; /* Reduced padding for mobile */
        max-width: 100%; /* Ensure the section takes full width */
    }

    /* Rotating Background Container */
    .rotating-bg {
        width: 100%; /* Make the rotating background container take full width */
        height: 200px; /* Adjust height for mobile */
        margin-right: 0;
        margin-bottom: 20px; /* Space between image and text */
        border-radius: 10px; /* Reduced border radius for mobile */
    }

    /* Adjust images to cover better on smaller screens */
    .rotating-bg img {
        object-fit: cover; /* Ensure the images cover the container */
        height: 100%; /* Make sure the images cover the height */
    }

    /* Text Content Styling */
    .text-content {
        max-width: 100%; /* Make text content take full width */
        padding: 0 10px; /* Padding for mobile */
        transform: translateX(0); /* Make text fully visible */
        animation-delay: 0.5s; /* Adjust animation delay for better effect on mobile */
    }

    /* Reduce font size for mobile screens */
    .text-content h2 {
        font-size: 20px; /* Smaller heading for mobile */
    }

    .text-content p {
        font-size: 14px; /* Smaller text for mobile */
    }
}





/*mission vision*/
/* Scoped CSS for Vision and Mission Section */
.vision-mission-section {
  padding: 40px 20px; /* Padding around the section */
  background-color: #f9f9f9;
}

.vm-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Makes it responsive by wrapping cards on smaller screens */
}

.vm-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 300px; /* Increased width for a longer card */
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease; /* Add hover effect */
}

.vm-card:hover {
  transform: translateY(-5px); /* Slight elevation on hover */
}

.vm-icon img {
  width: 50px; /* Slightly larger icons */
  height: 50px;
  margin-bottom: 15px;
}

.vm-card h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #2c3e50;
}

.vm-card p {
  color: #555;
  font-size: 14px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vm-container {
    flex-direction: column; /* Stack cards vertically on smaller screens */
    align-items: center;
  }

  .vm-card {
    width: 100%; /* Full width on smaller devices */
    max-width: 400px;
  }
}







/* About Us Section Styling */
.about-us {
    padding: 60px 10%; /* Adds ample padding around the section */
    background-image: url('image/bg/bg4.jpg'); /* Background image for the section */
    background-size: cover; /* Scales the image to cover the entire section */
    background-position: center; /* Centers the image */
    background-attachment: fixed; /* Creates a parallax effect */
    color: #2E7D32; /* Ensures text is readable on a background image */
    position: relative; /* Ensures child elements are positioned relative to this container */
}

/* Adding a slight overlay to make text readable */
.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark transparent overlay */
    z-index: 1; /* Places overlay behind content */
}

.about-us-container {
    position: relative; /* Places the content above the overlay */
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* Adds space between the image and text */
    flex-wrap: nowrap; /* Prevent wrapping for larger screens */
}

.image-container {
    flex: 1;
    text-align: center;
    margin: auto 0; /* Centers vertically */
    padding: 0 15px; /* Adds some space to the left and right of the image */
}

.image-container img {
    width: 400px; /* Fixed width for the image */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover; /* Maintains aspect ratio and crops extra */
    border: 4px solid #3E2723; /* White border around the image */
    border-radius: 10px; /* Rounded corners for a polished look */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3); /* Adds a shadow for depth */
    margin: 20px 0;
}

/* Text Content Styling */
.text-container {
    flex: 2;
    padding: 0 20px; /* Adds horizontal padding */
    text-align: left;
    color: #ffffff; /* Text color matching the dark overlay */
}

.text-container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FF4D4D; /* Highlighted heading for emphasis */
}

.text-container ul {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 0;
    line-height: 1.8; /* Improves readability */
}

.text-container ul li {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-us-container {
        flex-wrap: wrap; /* Allows wrapping for medium screens */
        text-align: center; /* Centers content */
    }

    .image-container,
    .text-container {
        flex: 1 1 100%; /* Full width for both containers */
        max-width: 100%;
    }

    .text-container {
        padding: 20px;
    }

    .image-container img {
        width: 400px; /* Maintain 400px width */
        height: 200px; /* Reduce height for medium screens */
    }

    .text-container h2 {
        font-size: 2.2rem; /* Adjust font size for medium screens */
    }

    .text-container ul li {
        font-size: 1.1rem; /* Adjust font size for readability */
    }
}

@media (max-width: 992px) {
    .about-us-container {
        flex-wrap: wrap; /* Allows wrapping for smaller screens */
        text-align: center; /* Centers content */
    }

    .image-container,
    .text-container {
        flex: 1 1 100%; /* Full width for both containers */
        max-width: 100%;
    }

    .image-container img {
        width: 400px; /* Maintain 400px width */
        height: 180px; /* Reduce height for smaller screens */
    }

    .text-container h2 {
        font-size: 2rem; /* Adjust font size for readability */
    }

    .text-container ul li {
        font-size: 1rem; /* Adjust font size for readability */
    }
}

@media (max-width: 768px) {
    .about-us-container {
        flex-wrap: wrap; /* Stacks the content vertically */
        text-align: center; /* Centers the content */
    }

    .image-container,
    .text-container {
        flex: 1 1 100%; /* Full width for both containers */
        max-width: 100%;
    }

    .image-container img {
        width: 400px; /* Maintain 400px width */
        height: 160px; /* Reduce image height for smaller screens */
    }

    .text-container h2 {
        font-size: 1.8rem; /* Adjust heading font size for smaller screens */
    }

    .text-container ul li {
        font-size: 0.95rem; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 480px) {
    .about-us-container {
        flex-direction: column; /* Stacks content vertically */
        padding: 0 10px; /* Adds some padding to ensure content doesn't touch edges */
    }

    .image-container {
        padding: 0; /* Removes extra padding */
    }

    .image-container img {
        width: 100%; /* Ensures the image takes up full width of the container */
        height: auto; /* Adjusts height automatically based on width */
    }

    .text-container h2 {
        font-size: 1.6rem; /* Adjust heading font size */
    }

    .text-container ul li {
        font-size: 0.9rem; /* Adjust font size for very small screens */
    }
}









/* About Workflow Section */
/* Workflow Section */
.workflow {
    padding: 60px 30px; /* Adjusted padding for better balance */
    background-color: #f9f9f9;
    text-align: center;
    overflow: hidden; /* Prevent overflow during animation */
}

.workflow h2 {
    font-size: 2.4rem; /* Medium font size for readability */
    color: #003366;
    margin-bottom: 30px; /* Balanced spacing below heading */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.2px; /* Slightly reduced letter spacing for better flow */
}

/* Workflow Container */
.workflow-container {
    display: flex;
    justify-content: center; /* Center-align steps */
    flex-wrap: wrap;
    align-items: center;
    gap: 30px; /* Balanced gap between steps */
}

/* Workflow Step */
.workflow-step {
    text-align: center;
    width: 200px; /* Slightly larger width for better proportions */
    padding: 20px; /* Balanced padding inside steps */
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1), 0 -3px 8px rgba(255, 255, 255, 0.6);
    opacity: 0; /* Hidden until animation starts */
    transform: translateY(40px); /* Adjust movement for animation */
    transition: all 0.8s ease-out; /* Slightly slower animation for elegance */
}

/* Icons Styling */
.workflow-step i {
    font-size: 2.5rem; /* Adjusted icon size for better balance */
    color: #0066cc;
    margin-bottom: 15px;
    animation: icon-bounce 1.5s infinite ease-in-out; /* Subtle bounce effect */
}

/* Heading and Description */
.workflow-step h3 {
    font-size: 1.2rem; /* Reduced heading size for clarity */
    color: #003366;
    margin: 10px 0; /* Balanced spacing */
    font-weight: 600;
    text-transform: capitalize; /* Enhance readability */
}

.workflow-step p {
    font-size: 0.95rem; /* Slightly reduced text size */
    color: #666;
    line-height: 1.6; /* Better readability with line spacing */
}

/* Arrows */
.arrow {
    font-size: 1.8rem; /* Adjusted arrow size for better balance */
    color: #0066cc;
    align-self: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out; /* Smooth transition */
}

/* Animation on Scroll */
.workflow-step.animated,
.arrow.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Icon Bounce Animation */
@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Layout for Medium Screens (Tablets, Laptops) */
@media (max-width: 1024px) {
    .workflow-container {
        gap: 25px; /* Slightly smaller gap for medium screens */
    }

    .workflow-step {
        width: 22%; /* Adjust step width for medium screens */
    }

    .workflow h2 {
        font-size: 2.2rem; /* Adjust heading size for medium screens */
    }
}

/* Responsive Layout for Small Screens (Phones, Small Tablets) */
@media (max-width: 768px) {
    .workflow-container {
        flex-direction: column; /* Stack steps vertically */
        gap: 30px; /* Balanced gap for small screens */
    }

    .workflow-step {
        width: 85%; /* Full width on small screens */
    }

    .arrow {
        display: none; /* Hide arrows on small screens */
    }

    .workflow h2 {
        font-size: 1.9rem; /* Adjust heading size */
        margin-bottom: 25px;
    }
}

/* Responsive Layout for Very Small Screens (Portrait Phones) */
@media (max-width: 480px) {
    .workflow-container {
        flex-direction: column; /* Stack steps vertically */
        gap: 20px; /* Adequate space between steps */
    }

    .workflow-step {
        width: 90%; /* Full width for small screens */
        margin: 0 auto; /* Center-align steps */
    }

    .arrow {
        display: none; /* Hide arrows for small screens */
    }

    .workflow h2 {
        font-size: 1.6rem; /* Reduce heading size for small screens */
    }
}

/* Responsive Layout for Very Large Screens (Desktops, Large PCs) */
@media (min-width: 1440px) {
    .workflow-container {
        gap: 40px; /* Larger gap for spacious layout */
    }

    .workflow-step {
        width: 15%; /* Fit more steps comfortably on large screens */
    }

    .arrow {
        font-size: 2.0rem; /* Slightly larger arrows for large screens */
    }
}




/* Expertise Section */
.aboutcontent {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    gap: 40px;
    flex-wrap: wrap; /* Ensures content wraps on smaller screens */
    background-image: url('image/bg/bg6'); /* Background image */
    background-size: cover; /* Scales the image to cover the section */
    background-position: center;
    position: relative;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adds depth */
    background-color: rgba(34, 49, 63, 0.85); /* Overlay with dark teal for better contrast */
    color: #ccaa87; /* Soft khaki text color for labels */
}

/* Expertise Section Styles */
.expertise {
    flex: 2;
    min-width: 300px;
    padding: 20px; /* Padding ensures no text touches the edge */
}

/* Progress Bar Styles */
.expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.label {
    flex: 1;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff; /* Golden yellow text for labels */
}

.progress-bar {
    flex: 3;
    background-color: #3A3A3A; /* Dark gray for the empty bar */
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    background-color: #8B0000; /* Dark red for progress bar fill */
    width: 0%; /* Initially hidden for animation */
    transition: width 1s ease-out;
    box-shadow: 0 0 8px rgba(139, 0, 0, 0.8); /* Glowing effect for progress bar */
}

.percentage {
    flex: 0.5;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    color: #ffffff; /* Lime green for percentage numbers */
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25d366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: blink 1.5s infinite; /* Add blinking animation */
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

/* Blinking Animation */
@keyframes blink {
    0%, 100% {
        opacity: 1; /* Fully visible */
    }
    50% {
        opacity: 0; /* Invisible */
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .aboutcontent {
        gap: 20px; /* Reduce spacing for medium screens */
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center align sections */
    }

    .expertise {
        width: 100%; /* Take full width on smaller screens */
    }

    .design-standards {
        width: 100%; /* Take full width on smaller screens */
        text-align: center; /* Center align text */
    }

    .design-standards h2 {
        font-size: 16px; /* Reduce heading size */
    }
}

@media (max-width: 768px) {
    .label {
        font-size: 14px; /* Reduce font size for smaller devices */
    }

    .progress-bar {
        height: 16px; /* Adjust height of progress bars */
    }

    .percentage {
        font-size: 14px; /* Adjust font size of percentage */
    }

    h1.title {
        font-size: 20px; /* Reduce title font size */
    }
}

@media (max-width: 480px) {
    .expertise-item {
        margin-right: 10px; /* Add space to the right of items */
    }

    .progress-bar {
        height: 12px; /* Maintain previous height */
        margin-right: 10px; /* Add spacing between bar and percentage */
    }

    .label,
    .percentage {
        font-size: 12px; /* Maintain smaller font size */
    }

    .percentage {
        text-align: left; /* Align percentage slightly away from the edge */
        margin-left: 5px; /* Ensure spacing from the right end of progress bar */
    }

    .whatsapp-button {
        width: 50px; /* Resize WhatsApp button */
        height: 50px;
    }

    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }
}




/* Our Team */
/* Team Section 
.team-section {
    text-align: center;
    padding: 40px 0;
}

.team-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 200px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}


.team-member:hover {
    background-color: #D3D3D3; 
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); 
    transform: translateY(-10px); 
}

.team-member h3 {
    font-size: 18px;
    margin-top: 10px;
}

.team-member img.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.role-description {
    font-size: 14px;
    color: #666; 
    margin-top: 10px;
    margin-bottom: 10px;
}

.team-member a .linkedin-icon {
    margin-top: 10px;
    display: inline-block;
    width: 24px;
    height: 24px;
}


@media (max-width: 992px) {
    .content {
        flex-direction: column;
        padding: 20px; 
    }

    .rotating-bg {
        width: 250px; 
        height: 250px;
        margin: 10px 0;
    }

    .text-content {
        max-width: 100%;
        margin-top: 20px;
        animation-delay: 
    }

    .team-container {
        flex-direction: column;
        gap: 15px;
    }

    .team-member {
        width: 90%; 
        margin: 10px auto; 
    }
}


@media (max-width: 768px) {
    .text-content h2 {
        font-size: 20px;
    }

    .text-content p {
        font-size: 14px;
    }

    .team-section h2 {
        font-size: 28px;
    }

    .team-member {
        width: 80%; 
    }
}


@media (max-width: 480px) {
    .content {
        padding: 15px; 
    }

    .rotating-bg {
        width: 200px;
        height: 200px;
    }

    .text-content h2 {
        font-size: 18px;
    }

    .text-content p {
        font-size: 12px;
    }

    .team-member {
        width: 90%; 
        margin: 10px auto;
    }
}*/



/* Team Category */
.chart-wrapper {
    text-align: center;
    max-width: 100%; /* Ensure full width responsiveness */
    margin: 0 auto;
    padding: 10px; /* Add some padding for smaller screens */
    box-sizing: border-box; /* Prevent padding from exceeding the width */
}

.chart-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
    margin-top: 30px;
    text-transform: uppercase;
    background-color: #f4f6f8;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
} 

.chart-row {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    flex-wrap: wrap; /* Ensure items wrap to the next line on small screens */
    margin-top: 15px;
}

.chart-image {
    max-width: 100%; /* Ensure the image scales within its container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Add rounded corners for aesthetics */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-top: 10px;
}

.chart-item{
    cursor: pointer; /* Show that this is clickable */
}



/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .chart-title {
        font-size: 1.5rem; /* Slightly smaller text for medium screens */
        padding: 10px 20px;
    }

    .chart-image {
        max-width: 90%; /* Limit image width on medium screens */
    }
}

@media (max-width: 480px) {
    .chart-title {
        font-size: 1.2rem; /* Smaller text for mobile screens */
        padding: 8px 15px;
    }

    .chart-image {
        max-width: 100%; /* Full-width image for small devices */
    }
}







/* 4. Services Section Styling */
.section {
    padding: 60px 20px; /* Added padding for smaller screens */
    text-align: center;
}

/* Projects Section Styles */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* Slightly larger grid items */
    gap: 20px; /* Space between grid items */
    max-width: 1200px; /* Set a max width for large screens */
    margin: 0 auto; /* Center grid container */
}

.project-item {
    background: #fff;
    border-radius: 8px;
    border: 2px solid #ddd; /* Added border for better visibility */
    overflow: hidden; /* Keep the image and text contained */
    cursor: pointer; /* Show that this is clickable */
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; /* Required for positioning child elements */
}

.project-item img {
    width: 100%; /* Full width of the container */
    height: 250px; /* Increased height for better visibility */
    object-fit: cover; /* Ensures the image covers the space without distortion */
    filter: brightness(70%); /* Dim images slightly for better text contrast */
    transition: filter 0.3s, transform 0.3s;
}

.project-item:hover img {
    filter: brightness(100%);
    transform: scale(1.05); /* Slight zoom-in effect */
}

.project-details {
    padding: 15px;
    position: absolute; /* Positioned over the image */
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: #fff; /* White text for contrast */
    text-align: left;
    opacity: 1;
    transition: opacity 0.3s, background 0.3s;
    border-top: 2px solid #ddd; /* Divider between image and text */
}

.project-details h3 {
    margin: 0;
    font-size: 1.25em;
    font-weight: bold; /* Bold the title */
    color: #686A6C; /* Darker title color */
    transition: color 0.3s ease-in-out;
}

.project-details p {
    color: #ddd; /* Slightly muted text color */
    margin: 10px 0 0; /* Add space above the description */
}

.project-item:hover .project-details {
    background: rgba(0, 0, 0, 0.8); /* Darken overlay on hover */
}

.project-item:hover .project-details h3 {
    color: #ffffff; /* Change title color to white on hover */
}

/* Projects Hover Effect for Project Items */
.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Project Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
    padding-top: 60px; /* Location of the box */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px; /* Maximum width of the modal image */
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal-caption {
    margin: 10px auto;
    text-align: center;
    color: #fff;
    font-size: 20px;
}

/* Responsive Layout for Medium Screens (Tablets, Laptops) */
@media (max-width: 1024px) {
    .section {
        padding: 50px 20px; /* Added padding for tablet */
    }

    .project-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Slightly larger columns */
        margin-left: auto; /* Equal margin on the left */
        margin-right: auto; /* Equal margin on the right */
    }

    .project-item img {
        height: 220px; /* Increased height for medium screens */
    }

    .project-details h3 {
        font-size: 1.1em; /* Slightly smaller title for medium screens */
    }

    .modal-content {
        width: 90%; /* Adjust modal size for tablets */
    }
}

/* Responsive Layout for Small Screens (Phones, Small Tablets) */
@media (max-width: 768px) {
    .section {
        padding: 40px 20px; /* Adjust padding for smaller screens */
    }

    .project-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Larger grid items */
        margin-left: 15px; /* Added margin for left side */
        margin-right: 15px; /* Added margin for right side */
    }

    .project-item img {
        height: 180px; /* Increased height for smaller screens */
    }

    .project-details h3 {
        font-size: 1em; /* Slightly smaller text size */
    }

    .modal-content {
        width: 95%; /* Almost full width for small screens */
    }

    .close {
        font-size: 35px; /* Smaller close button */
    }
}

/* Responsive Layout for Very Small Screens (Portrait Phones) */
@media (max-width: 480px) {
    .section {
        padding: 30px 20px; /* More compact padding for very small screens */
    }

    .project-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); /* Adjust grid for very small screens */
        margin-left: 15px; /* Equal margin on left */
        margin-right: 15px; /* Equal margin on right */
    }

    .project-item img {
        height: 160px; /* Slightly increased height for very small screens */
    }

    .project-details h3 {
        font-size: 0.9em; /* Even smaller text for mobile devices */
    }

    .modal-content {
        width: 95%; /* Full width modal */
    }

    .close {
        font-size: 30px; /* Smaller close button for mobile */
    }
}





/* 5. Contact Us Page General body styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: #2c3e50;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

/* Contact Us Location and Contact Details */
.locations, .contact-details, .message-form {
    flex: 1 1 45%;
    margin: 10px;
}

.locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.location {
    flex: 1;
    margin: 10px 0;
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.location:hover {
    transform: translateY(-5px);
}

.location h3 {
    margin-top: 0;
    color: #34495e;
    font-size: 24px;
}

.contact-details h3 {
    color: #34495e;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Contact Us Message Form */
.message-form {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.message-form input, .message-form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.message-form input:focus, .message-form textarea:focus {
    border-color: #2980b9;
    outline: none;
}

.message-form button {
    padding: 12px 30px;
    background-color: #2980b9;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.message-form button:hover {
    background-color: #3498db;
}

/* Contact Us Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 15px;
    }

    .contact-section {
        padding: 30px;
    }

    .locations, .contact-details, .message-form {
        flex: 1 1 48%;
    }
}

@media (max-width: 992px) {
    .contact-section {
        flex-direction: column;
        padding: 20px;
    }

    .locations, .contact-details, .message-form {
        flex: 1 1 100%;
        margin: 15px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    h2 {
        font-size: 28px;
    }

    .contact-section {
        flex-direction: column;
        padding: 15px;
    }

    .locations, .contact-details, .message-form {
        flex: 1 1 100%;
        margin: 15px 0;
    }

    .location {
        margin-bottom: 20px;
    }

    .message-form input,
    .message-form textarea {
        font-size: 14px;
        padding: 12px;
    }

    .message-form button {
        font-size: 14px;
        padding: 10px 25px;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 24px;
    }

    .message-form input,
    .message-form textarea {
        font-size: 14px;
        padding: 10px;
    }

    .message-form button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .location h3 {
        font-size: 20px;
    }
}




/* Footer */
footer {
    background: #222; /* Darker gray for footer */
    color: #f8f9fa; /* Light gray text color */
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the start */
    padding: 20px 10%; /* Padding for spacing */
}

.contact-info {
    width: 45%; /* Allow space for the map */
    text-align: left; /* Left-align the contact info */
}

.map {
    width: 45%; /* Allow space for contact info */
}

.map iframe {
    width: 100%; /* Make the map responsive */
    border: 0; /* Remove default border */
}

h3 {
    margin-top: 0; /* Remove default margin for headings */
}

/* Footer Responsive Styles for Medium Screens (Tablets) */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        padding: 20px 5%; /* Adjust padding for smaller screens */
    }

    .contact-info, .map {
        width: 100%; /* Stack the contact info and map vertically */
        text-align: center; /* Center align on smaller screens */
        margin-bottom: 20px; /* Add space between sections */
    }
}

/* Responsive Styles for Small Screens (Mobile) */
@media (max-width: 768px) {
    footer {
        padding: 15px 0;
        font-size: 12px; /* Smaller text on mobile */
    }

    .footer-content {
        padding: 0 10px; /* Set equal padding on left and right for small screens */
        margin: 0 auto; /* Center footer content with auto margins */
        max-width: 100%; /* Ensure content doesn't exceed full width */
    }

    .contact-info, .map {
        width: 100%; /* Ensure full width on mobile */
        text-align: center; /* Center content */
        margin-bottom: 15px;
    }
}

/* Responsive Styles for Extra Small Screens */
@media (max-width: 480px) {
    footer {
        font-size: 10px; /* Smaller font for very small screens */
        padding: 10px 20px; /* Add equal padding on the top, bottom, left, and right */
        box-sizing: border-box; /* Ensure padding doesn't exceed the container width */
    }

    .footer-content {
        padding: 0; /* Remove internal padding if not needed */
        margin: 0 auto; /* Center the footer content */
        max-width: calc(100% - 40px); /* 20px padding on each side */
        text-align: center; /* Align content to the center */
    }

    .contact-info, .map {
        width: 100%;
        text-align: center;
        margin-bottom: 10px; /* Reduce bottom margin for compact layout */
    }
}
