


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        }

        :root {
    --font-heading: 'Montserrat', sans-serif;  /* Change this to your preferred heading font */
    --font-paragraph: 'Open Sans', sans-serif;  /* Change this to your preferred paragraph font */
    --heading-size: 22px; /* Default heading size */
    --paragraph-size: 15px; /* Default paragraph size */
    --heading-color: #0b1632; /* Default heading color */
    --paragraph-color: #0b1632; /* Default paragraph color */
    
    /* Button Colors */
    --button-bg: #0b1632; /* Default button background */
    --button-text: #FFFFFF; /* Default button text color */
    --button-hover-bg: #162C6D; /* Button background on hover */
    --button-hover-text: #F1F1F1; /* Button text color on hover */
}

/* Apply global styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-size: var(--heading-size);
    color: var(--heading-color);
}

p {
    font-family: var(--font-paragraph);
    font-size: var(--paragraph-size);
    color: var(--paragraph-color);
    line-height: 1.5;
	letter-spacing: 0.5px;
}

/* Button */
button {
    display: inline-block;
    position: relative;
    padding: 12px 24px;
    background-color: transparent;
    color: #0b1632;
    font-size: 1rem;
    
    margin-bottom: 0rem;
    text-decoration: none;
    border: 2px solid #0b1632;
    border-radius: 5px;
    overflow: hidden; /* Ensures effect stays within button */
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
    z-index: 1;
    cursor: pointer;
}

/* Hover Effect */
button::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -350%;
    width: 500%;
    height: 500%;
    background-color: #fcd404; /* Hover fill color */
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

button:hover::before {
    top: -50%;
    left: -50%;
}

button:hover {
    background-color: transparent;
    font-weight: bold;
    color: #24449c;
    border: 2px solid #24449c; 
}

/* Click (Active) Effect */
button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}


/* Loading Page Styles - Mobile First */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #0b1632;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
    font-size: 1rem; /* Base font size */
    z-index: 1000;
    font-family: "Poppins", sans-serif;
    padding: 20px; /* Add padding for mobile */
    box-sizing: border-box;
}

/* Styling for Heading */
#loading-screen h1 {
    font-size: clamp(18px, 5vw, 24px); /* Responsive font size */
    font-weight: bold;
    color: #ffffff;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

/* Styling for Paragraph */
#loading-screen p {
    width: 90%; /* Full width on mobile */
    max-width: 900px; /* Limits width on larger screens */
    font-size: clamp(12px, 3.5vw, 16px); /* Responsive font size */
    color: #f2f2f2;
    font-family: var(--font-paragraph);
    line-height: 1.5; /* Better readability */
    margin: 0 auto 30px; /* Centered with spacing */
}

/* Progress Bar Container */
.progress-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #24449c;
    height: 16px; /* Thinner on mobile */
    border-radius: 0;
}

/* Progress Bar */
.progress-bar {
    height: 100%;
    width: 0%;
    background: #fcd404;
    border-radius: 0;
    transition: width 0.5s;
}

/* Progress Text - Mobile Optimized */
.progress-text {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%); /* Center horizontally */
    font-size: clamp(40px, 20vw, 150px); /* Responsive size */
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8); /* More subtle */
    white-space: nowrap;
}

/* Tablet Styles */
@media (min-width: 768px) {
    #loading-screen {
        font-size: 1.5rem;
    }
    
    #loading-screen h1 {
        font-size: 28px;
    }
    
    #loading-screen p {
        width: 70%;
        font-size: 16px;
    }
    
    .progress-container {
        height: 16px;
    }
    
    .progress-text {
        bottom: -60px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    #loading-screen h1 {
        font-size: 28px;
    }
    
    #loading-screen p {
        width: 80%;
        font-size: 14px;
    }
    
    .progress-container {
        height: 20px;
    }
    
    .progress-text {
        left: 50px;
        transform: none;
        bottom: -50px;
        font-size: 150px;
    }
}








	


        body {
            line-height: 2;
			overflow-x: hidden;
        }
		

         /* Header Styles */
.header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 0rem;
    z-index: 100;
    border-bottom: 3px solid #fcd404; /* Simple line below header */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-weight: bold;
    z-index: 100;
}

.logo img {
    margin-top: 1rem;
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #24449c;
    text-decoration: none;
    margin-left: 10rem;
    padding: 10px 10px; /* Ensures background highlight covers the link */
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px; /* Smooth rounded edges */
    
}


.nav-links a:hover {
    color: #fcd404;
    background: #24449c;
	padding: 10px 10px;
}

.nav-links a:hover {
    color: #fcd404;
    background: #24449c;
}
.nav-links a::after {
    content: "";
    
    display: inline-block
    height: 2px;
    background: #fcd404;
    width: 0;
    transition: width 0.3s ease-in-out;
    position: absolute;
    left: 0;
    bottom: -5px;
	display: none; /* Remove underline effect */
}

.nav-links a:hover::after {
    width: 0%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 101; /* Ensure it overlaps */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 85%; /* Centering */
    transform: translateX(-50%);
    background: #ffffff;
    color: #1E3D8F;
    min-width: 250px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0); /* Visible shadow */
    border-radius: 5px;
    z-index: 102; /* Higher than .dropdown */
    overflow: hidden;
}

.dropdown-content a {
    color: var(--paragraph-color);
    padding: 10px 15px;
    display: block;
    text-align: center;
    margin: 0;
    transition: background 0.3s, color 0.3s;
    font-size: var(--paragraph-size);
    font-family: var(--font-paragraph);
    border-radius: 0; /* Remove individual rounding for uniformity */
}

.dropdown-content a:hover {
    font-size: var(--paragraph-size);
	padding: 10px 15px;
    background: #24449c;
    color: #fcd404;
    border-radius: 0; /* Keep sharp edges */
}

.dropdown:hover .dropdown-content {
    display: block;
}



    /* Floating Inquiry Button - Mobile First */
.inquiry-button {
    position: fixed;
    right: -40px;
    top: 30%;
    transform: translateY(-50%) rotate(270deg);
    font-family: var(--font-heading);
    background: #24449C;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 16px 16px 0 0;
    border: 1.5px solid #fcd404;
    cursor: pointer;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Button hover effect - only for devices that support hover */
@media (hover: hover) {
    .inquiry-button::before {
        content: "";
        position: absolute;
        top: 100%;
        left: -300%;
        width: 200%;
        height: 700%;
        background-color: #fcd404;
        transform: rotate(45deg);
        transition: all 0.3s ease-in-out;
        z-index: -1;
    }

    .inquiry-button:hover::before {
        top: -50%;
        left: -50%;
    }

    .inquiry-button:hover {
        background-color: #24449c;
        color: #24449c;
        font-weight: bold;
        border: 2px solid #24449c;
    }
}

/* Active state for touch devices */
.inquiry-button:active {
    transform: translateY(-50%) rotate(270deg) scale(0.95);
}

.inquiry-button i {
    transform: rotate(90deg);
}

/* Popup Container - Mobile First */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001; /* Higher than button */
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Popup Box - Responsive */
.popup-box {
    background: #ffffff;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Close tooltip - only for desktop */
@media (hover: hover) {
    .close-btn::after {
        content: "Close";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.3);
        color: #fff;
        font-size: 14px;
        padding: 5px 8px;
        border-radius: 5px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .close-btn:hover::after {
        opacity: 0.5;
        visibility: visible;
    }
}

/* Form Grid - Responsive */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: left;
    color: #24449c;
}

/* Full width fields */
.full-width {
    grid-column: span 1;
}

/* Form Inputs */
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #0b1632;
    border-radius: 5px;
    font-size: 16px; /* Better for mobile */
    box-sizing: border-box;
}

textarea {
    min-height: 120px; /* More space for mobile */
}

/* Submit Button */
.submeet-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Active state for touch devices */
.submeet-btn:active {
    transform: scale(0.98);
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    /* Button adjustments */
    .inquiry-button {
        right: -70px;
        padding: 10px 30px;
    }

    /* Form grid - two columns */
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .full-width {
        grid-column: span 2;
    }

    /* Popup padding */
    .popup-box {
        padding: 30px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1024px) {
    .inquiry-button {
        right: -60px;
        font-size: 14px;
    }
}

/* Show Popup */
.show-popup {
    display: flex;
}


@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
    }
    
    .nav-links a {
        margin: 10px 0;
        padding: 10px;
        text-align: center;
    }

    /* Intro Section */
    .intro h1 {
        font-size: 32px;
        margin-left: 5%;
    }

    .intro p {
        width: 90%;
        margin-left: 5%;
    }

    /* Products Grid */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* About Section */
    .about-content h2 {
        font-size: 28px;
    }

    /* Why Choose Grid */
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Header Logo */
    .logo img {
        height: 40px;
        margin-top: 0.5rem;
    }

    /* Inquiry Button */
    .inquiry-button {
        padding: 8px 20px;
        font-size: 12px;
    }

    /* Contact Section */
    .contact-us h1 {
        font-size: 48px;
    }
}



.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

@media (max-width: 768px) {
    .mobile-menu-icon {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        margin-top: 60px;
    }
}









		/* Introdution Section with video Background */
		.intro {
			
			position: relative; /* Ensure hero content is above video */
			
			height: auto; /* Changed from fixed height */
    min-height: 100vh; /* Ensure it takes at least full viewport height */
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: flex-start;
			width: 100%;
			margin-left: 0%;
			font-family: 'Montserrat', sans-serif ;
			overflow: hidden;
				}
				
				/* Background Image Slideshow */
.intro-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.intro-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.intro-container img.active {
    opacity: 1;
}

/* Dark Overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
		
		.intro h1{
				z-index: 3;
				padding: 0rem 0rem;
				
				font-size: 40px;
				margin-top: 10rem;
				margin-bottom: 0rem;
				margin-left: 10%;
				color: #ffffff; /* Ensure black text */
				font-family: 'Montserrat', sans-serif;; /* Apply Montserrat */
				}
		
		.intro h1 span {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
	font-size: inherit; /* Inherit from parent */
}

.intro h1 span:hover {
	transform: scale(1.2) rotate(0deg);
}

.intro p {
    text-align: left;
    font-size: 14px; /* Adjust font size */
    font-family: var(--font-paragraph); /* Ensure correct font */
    line-height: 1.2; /* Adjust line height for better readability */
    max-width: 900px;
	margin-top: 0rem;
    margin-left: 10%;
    margin-bottom: 0.5rem; /* Better spacing */
    color: #ffffff !important; /* Force text color */
	z-index: 3;
}

/* Button */
.intro .btn {
    display: inline-block;
	position: relative;
    padding: 1rem 4rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 1rem;
	margin-left: 10%;
	margin-bottom: 0rem;
    text-decoration: none;
	border: 2px solid #ffffff;
    border-radius: 5px;
	 overflow: hidden; /* Ensures effect stays within button */
    transition: background 0.2s ease;
	z-index: 1;
}

.intro .btn::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -300%;
    width: 200%;
    height: 700%;
    background-color: #fcd404; /* Hover fill color */
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

/* Apply the effect on hover */
.intro .btn:hover::before {
    top: -50%;
    left: -50%;
}

.intro .btn:hover {
	
    background-color: rgba(0, 0, 0, 0);
	font-weight: bold;
	Color: #24449c;
	border: 2px solid #24449c; 
}
		

/* Popup Overlay - Mobile First */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 999;
    overflow-y: auto; /* Enable scrolling if needed */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Popup Form - Responsive */
.popup-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 1.5rem;
    width: 90%; /* Full width on mobile */
    max-width: 500px; /* Limits width on larger screens */
    max-height: 90vh; /* Preforms form from being too tall */
    overflow-y: auto; /* Scrollable if content is too long */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 9999;
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Close Button - Mobile Friendly */
.popup-form .cloz-btn {
    position: absolute;
    top: 5px; /* Better positioning for mobile */
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #24449c;
    width: 40px; /* Larger touch target */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Close tooltip - hidden on mobile */
.cloz-btn::after {
    content: "Close";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 14px;
    padding: 5px 8px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Show tooltip only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
    .cloz-btn:hover::after {
        opacity: 0.5;
        visibility: visible;
    }
}

/* Form Styling - Responsive */
.popup-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #24449c;
    font-size: 1.5rem; /* Responsive font size */
}

.popup-form label {
    display: block;
    color: #24449c;
    font-weight: bold;
    margin: 15px 0 8px; /* Better spacing */
    font-size: 1rem;
}

.popup-form input, 
.popup-form textarea {
    width: 100%;
    padding: 10px; /* Larger for touch */
    margin-bottom: 15px;
    border: 1px solid #0b1632; /* Slightly thicker border */
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.popup-form textarea {
    resize: none;
    min-height: 100px; /* More space for mobile typing */
}

/* Submit Button - Mobile Optimized */
.submit-btn {
    display: block;
    position: relative;
    width: 100%; /* Full width on mobile */
    max-width: 200px; /* Limits width */
    padding: 12px;
    background: rgba(0, 0, 0, 0);
    color: #0b1632;
    border: 2px solid #0b1632;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    margin: 1.5rem auto 0; /* Better spacing */
    text-align: center;
}

/* Hover Effect - Only on devices that support hover */
@media (hover: hover) {
    .submit-btn::before {
        content: "";
        position: absolute;
        top: 100%;
        left: -300%;
        width: 200%;
        height: 1100%;
        background-color: #fcd404;
        transform: rotate(45deg);
        transition: all 0.3s ease-in-out;
        z-index: -1;
    }

    .submit-btn:hover::before {
        top: -50%;
        left: -50%;
    }

    .submit-btn:hover {
        font-weight: bold;
        color: #24449c;
        border-color: #24449c;
    }
}

/* Active state for touch devices */
.submit-btn:active {
    transform: scale(0.98); /* Visual feedback on tap */
}


/* Tablet styles */
@media (min-width: 768px) {
    .intro h1 {
        font-size: 45px;
    }
    
    .intro p {
        font-size: 9px;
    }
    
    .intro .btn {
        padding: 1rem 3rem;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .intro h1 {
        font-size: 74px;
        margin-left: 10%;
    }
    
    .intro p {
        font-size: 14px;
        max-width: 900px;
        margin-left: 10%;
    }
    
    .intro .btn {
        margin-left: 10%;
    }
}








/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #0b1632;
    border: 2px solid #0b1632;
    border-radius: 20px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}

#backToTop:hover {
    background: #0b1632;
    color: #ffffff;
    border: none;
}

#backToTop.show {
    opacity: 0.8;
    visibility: visible;
}


@media (max-width: 768px) {
    .popup-box {
        width: 90%;
        padding: 10px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    button, .btn {
        padding: 12px 24px;
        min-width: 120px;
    }
    
    .nav-links a {
        padding: 15px;
    }
}







/* About Us Section */
.about-us {
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('');
    background-size: cover;
    background-position: center;
    color: white;
}

/* Flexbox for Side-by-Side Layout */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Single Photo */
.about-photo {
    width: 50%;
}

.about-photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Right Side - Content */
.about-content {
    width: 45%;
    text-align: left;
}

/* About Us Title */
.about-content h2 {
    font-size: 36px;
	font-style: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 10px;
    
    letter-spacing: 0px;
    display: flex;
    justify-content: center;
	position: relative; /* Required for ::after positioning */

}
	
.about-content h2::after {
    content: "";
    position: absolute;
    bottom: 7px; /* Adjust to control the underline's distance */
    left: 50%;
    width: 198px; /* Adjust width as needed */
    height: 2px; /* Adjust thickness */
    background-color: #fcd404; /* Change to desired color */
    transform: translateX(-50%);
}	



/* Individual Letter Styling */
.about-content h2 span {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effect - Same as Applications Section */
.about-content h2 span:hover {
    color: #24449c; /* Change color on hover */
    transform: scale(1.3) rotate(0deg); /* Slight zoom */
}


/* Paragraph */
.about-content p {
    font-size: var(--paragraph-size);
	font-style: var(--font-paragraph);
    line-height: 1.6;
    color: var(--paragraph-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-photo {
        width: 80%;
    }

    .about-content {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .about-photo {
        width: 100%;
    }

    .about-content {
        width: 100%;
    }
}












/* Why Choose GPA Section */
.why-choose-gpa {
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

/* Section Title */
.why-choose-gpa h2 {
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 10px;
    position: relative;
    
    letter-spacing: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    backdrop-filter: blur(0px);
}

.why-choose-gpa h2::after {
    content: "";
    position: absolute;
    bottom: 7px; /* Adjust this value to control the distance of the underline */
    left: 50%;
    width: 310px; /* Adjust width as needed */
    height: 2px; /* Adjust thickness of the underline */
    background-color: #fcd404; /* Use your desired color */
    transform: translateX(-50%);
}


/* Individual Letter Styling */
.why-choose-gpa h2.section-title span {
    display: inline-block;
	
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
.why-choose-gpa h2.section-title span:hover {
    color: #24449C;
	
    transform: scale(1.3) rotate(0deg);
}

/* Grid Layout (3x2) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive for smaller screens */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns */
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }
}

/* Why Choose GPA Box */
.why-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
    text-align: center;
    border: 1px solid #0b1632;
    transition: transform 0.3s;
}

.why-box:hover {
    transform: translateY(-5px);
	border-color: #fcd404; /* Replace with your desired color */
}

/* Image Styling */
.why-box img {
    width: 100px; /* Fixed width for icons */
    height: 100px; /* Fixed height for consistency */
    object-fit: contain;
    margin-bottom: 1rem;
	
}

/* Heading */
.why-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
	transition: color 0.3s ease-in-out; /* Smooth transition */
}

.why-box:hover h3 {
    color: #24449C; /* Replace with your desired hover color */
}	


/* Paragraph */
.why-box p {
    font-family: var(--font-paragraph);
    font-size: var(--paragraph-size);
    color: var(--paragraph-color);
    line-height: 1.5;
}



		
		



         /* Updated Products Section with Video Background */
   .products {
        position: relative;
        padding: 0rem 2rem 4rem; /* Added top padding for title */
        color: black;
        overflow: hidden;
        text-align: center;
    }


    .products-bg-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        z-index: -1;
        object-fit: cover;
    }

.products h2.section-title {
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 10px;
    position: relative;
    
    letter-spacing: 0px; /* Adjust spacing */
    text-shadow: 2px 2px 4px rgba(0,0,0,0);
    display: flex; /* Ensures spacing between letters */
    justify-content: center;
    backdrop-filter: blur(5px); /* Adds glass effect */
	
}

.products h2.section-title::after {
    content: "";
    position: absolute;
    bottom: 7px; /* Adjust this value to control the distance of the underline */
    left: 50%;
    width: 148px; /* Adjust width as needed */
    height: 2px; /* Adjust thickness of the underline */
    background-color: #fcd404; /* Use your desired color */
    transform: translateX(-50%);
}

/* Individual Letter Styling */
.products h2.section-title span {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
.products h2.section-title span:hover {
    color: #24449c; /* Change color on hover */
    transform: scale(1.3) rotate(0deg); /* Slight zoom & rotate */
}


/* Paragraph below Products */
.products p {
    font-size: var(--paragraph-size); /* Adjust size as needed */
    color: var(--paragraph-color);
    margin-top: 2rem; /* Space from title */
    max-width: 1170px; /* Prevents overly long lines */
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9; /* Light transparency for smooth look */
}


    .product-grid {
        position: relative;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 3rem;
        max-width: 1200px;
        margin: auto;
    }
	
	.product-grid > * { 
    min-height: 200px; /* Adjust this as needed */
	}

    .product-card {
        background: rgba(0, 0, 0, 0);
        padding: 1rem;
        border-radius: 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0,0);
        text-align: center;
        transition: transform 0.2s ease, background-color 0.5s ease, color 0.5s ease;
        backdrop-filter: blur(4px); /* Adds glass effect */
		border: 1px solid #0b1632;
    }
	
		.product-card p {
	text-align: left;
	color: #0b1632;
	}
	
	.product-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
	border-radius: 40px;
    background: #ffffff; /* Gradient color effect */
    transition: width 0.1s ease-in-out;
    z-index: -1;
}

    .product-card:hover {
        transform: translateY(-5px);
		border: 1px solid #fcd404;
		
    color: yellow; /* Change font color on hover */
    }
	
	.product-card:hover::after {
    width: 100%; /* Expands downward */
}

    .product-card h3 {
        color: #0b1632;
		font-size: 22px;
        margin: 0rem 0;
    }
	
	.product-card:hover h3 {
	color: #2b52bb;
	}
	
	.product-card:hover p {
	text-align: left;
	}

		
		
		.btn {
    display: inline-block;
    position: relative;
    padding: 0.8rem 2rem;
    background: #ffffff;
	border: 2px solid #0b1632;
    color: #0b1632;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden; /* Prevents overflow of pseudo-element */
    transition: color 0.3s ease-in-out;
    z-index: 1;
}

/* Create the diagonal hover effect */
.btn::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -300%;
    width: 200%;
    height: 400%;
    background: #fcd404; /* Hover fill color */
	
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

/* Apply the effect on hover */
.btn:hover::before {
    top: -50%;
    left: -50%;
}

.btn:hover {
	border: 2px solid #24449c;
	font-weight: bold; 
    color: #24449c; /* Change text color on hover */
}
		
		
		
		
		
		
	 /* Application Section Styles */
        .applications {
            padding: 4rem 2rem;
            background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(''); /* Background image with overlay */
            background-size: cover;
            background-position: center 55%;
            color: white; /* Text color for better contrast */
            text-align: center;
        }

        .applications h2 {
            font-size: 36px;
            color: var(--heading-color); /* White text for better contrast */
            margin-bottom: 10px;
			position: relative;
			
			letter-spacing: 0px;
			text-shadow: 2px 2px 4px rgba(0,0,0,0);
			display: flex; /* Ensures spacing between letters */
			justify-content: center;
			backdrop-filter: blur(0px); /* Adds glass effect */
        }
		
		.applications h2::after {
    content: "";
    position: absolute;
    bottom: 7px; /* Adjust this value to control the distance of the underline */
    left: 50%;
    width: 218px; /* Adjust width as needed */
    height: 2px; /* Adjust thickness of the underline */
    background-color: #fcd404; /* Use your desired color */
    transform: translateX(-50%);
}
		
		/* Individual Letter Styling */
		.applications h2.section-title span {
		display: inline-block;
		transition: transform 0.3s ease, color 0.3s ease;
		}
		
		/* Hover Effect */
		.applications h2.section-title span:hover {
		color: #24449c; /* Change color on hover */
		transform: scale(1.3) rotate(0deg); /* Slight zoom & rotate */
		}



        .application-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap:  2rem;
            max-width: 1200px;
             
            margin: 0 auto;
        }

        .application-box {
            background: rgba(0, 0, 0, 0); /* Semi-transparent white background */
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0);
            text-align: center;
			border: 1px solid #0b1632;
            transition: transform 0.3s;
           
            
        }

        .application-box:hover {
            transform: translateY(-5px);
			border: 1px solid #fcd404;
        }

        .application-box img {
            width: 100%;
            height: 150px;
            object-fit: scale-down;
            border-radius: 10px;
            margin-bottom: 1rem;
        }

        .application-box h3 {
			font-family: var(--font-paragraph);
            font-size: 18px;
            color: var(--paragraph-color);
        }
		
		.application-box:hover h3{
            
			color: #24449c;
        }

	
/* carousel  */
    .carousel-wrapper {
      overflow: hidden;
      width: 100%;
      padding: 40px 0;
      background: #ffffff;
      position: relative;
    }

    .carousel-track {
      display: flex;
      gap: 3rem;
      transition: transform 0.5s ease-in-out;
    padding: 0 clamp(0rem, 5vw, 3rem);  
           
      will-change: transform;
    }

    .application-box {
      flex: 0 0 auto;
      width: 340px;
      text-align: center;
    }

    .application-box img {
      width: 220px;
      height: 180px;
      border-radius: 10px;
      
    }

    .application-box h3 {
      margin-top: 10px;
      font-size: 16px;
    }

    
   
    @media (max-width: 768px) {
  .application-box {
    display: flex;
    width: 280px;
    flex-direction: column;
    align-items: center; /* center horizontally */
    text-align: center;
  }

  .application-box img {
    width: auto;
    max-width: 100%;
    height: 100px; /* or whatever works best */
    object-fit: contain;
    margin: 0 auto; /* fallback centering */
  }
}
        


        .why-choose {
            padding: 4rem 2rem;
            background: white;
        }

        /* Contact Us Section */
.contact-us {
    text-align: center;
    padding: 100px 20px;
    font-family: Arial, sans-serif;
}

.contact-us h3 {
    font-size: 20px;
	padding: 20px 20px;
    font-weight: normal;
    color: var(--paragraph-color);
	position: relative; /* Needed for positioning the underline */
    text-align: center; /* Center align text */
}

.contact-us h3::after {
    content: "";
    position: absolute;
    bottom: 22px; /* Adjust as needed */
    left: 50%;
    width: 110px; /* Adjust width as needed */
    height: 2px; /* Adjust thickness of the underline */
    background-color: #fcd404; /* Match text color or change as needed */
    transform: translateX(-50%);
}



.contact-us h1 {
    font-size: 100px;
	padding: 20px 20px;
    font-weight: bold;
    color: #24449c;
    line-height: 1.4;
}

.contact-btn {
    display: inline-block;
    position: relative;
    padding: 15px 30px;
    font-size: 16px;
    color: #0b1632;
    border: 2px solid #0b1632;
    border-radius: 5px;
    text-decoration: none;
    overflow: hidden; /* Prevents overflow issues */
    transition: color 0.3s ease-in-out;
    z-index: 1;
}

/* Create the diagonal hover effect */
.contact-btn::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -300%;
    width: 200%;
    height: 400%;
    background: #fcd404; /* Hover fill color */
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
    z-index: -1;
}

/* Apply the effect on hover */
.contact-btn:hover::before {
    top: -50%;
    left: -50%;
}

.contact-btn:hover {
	border: 2px solid #24449c;
    font-weight: bold;
    color: #24449c; /* Change text color on hover */
}



/* Footer Section */
.footer {
    background-color: #f8f8ff; 
    color: black;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1500px;
    margin: auto;
    padding: 0 10px;
	gap: -30px; /* Adjust gap to decrease spacing */
}

/* Logo */
.footer-logo img {
    width: 200px;
    height: auto;
	margin-top: 70px;
}

/* Quick Links */
.footer-links, .footer-contact {
    text-align: left;
    margin-bottom: 15px; /* Added spacing */
	flex: -2; /* Makes sections take equal space */
    min-width: 100px; /* Prevents them from collapsing on smaller screens */
}

.footer-links h3, .footer-contact h3 {
    font-size: 16px;
	
    margin-bottom: 10px; /* Adjusted spacing */
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px; /* Increased spacing */
}

.footer-links ul li a, .footer-contact a {
    color: #0b1632;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover, .footer-contact a:hover {
    text-decoration: underline;
    color: #fcd404; /* Highlight on hover */
}

/* Contact Info */
.footer-contact p {
    margin: 3px 0; /* Added small spacing */
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px; /* Increased for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links, .footer-contact {
        text-align: center;
    }
}



/* Existing styles remain unchanged */

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links {
        margin-left: 0; /* Remove left margin */
        margin-top: 1rem; /* Add top margin for spacing */
    }

    .nav-links a {
        margin-left: 0; /* Remove left margin */
        margin-bottom: 1rem; /* Add bottom margin for spacing */
    }

    .about-container {
        flex-direction: column; /* Stack about section elements */
        text-align: center; /* Center text */
    }

    .about-photo, .about-content {
        width: 100%; /* Full width for mobile */
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .application-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .footer-container {
        flex-direction: column; /* Stack footer items */
        align-items: center; /* Center footer items */
    }

    .footer-links, .footer-contact {
        text-align: center; /* Center text in footer */
    }

    .contact-us h1 {
        font-size: 40px; /* Adjust font size for mobile */
    }

    .contact-btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust font size */
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links a {
        margin-bottom: 0.5rem; /* Add bottom margin for spacing */
    }

    .about-photo {
        width: 100%; /* Full width for mobile */
    }

    .about-content {
        width: 100%; /* Full width for mobile */
    }

    .why-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .product-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .application-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .footer-container {
        flex-direction: column; /* Stack footer items */
        align-items: center; /* Center footer items */
    }

    .footer-links, .footer-contact {
        text-align: center; /* Center text in footer */
    }

    .contact-us h1 {
        font-size: 30px; /* Adjust font size for mobile */
    }

    .contact-btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust font size */
    }
}



#aboutpage



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        }

        :root {
    --font-heading: 'Montserrat', sans-serif;  /* Change this to your preferred heading font */
    --font-paragraph: 'Open Sans', sans-serif; /* Change this to your preferred paragraph font */
    --heading-size: 22px; /* Default heading size */
    --paragraph-size: 14px; /* Default paragraph size */
    --heading-color: #0b1632; /* Default heading color */
    --paragraph-color: #0b1632; /* Default paragraph color */
    
    /* Button Colors */
    --button-bg: #0b1632; /* Default button background */
    --button-text: #FFFFFF; /* Default button text color */
    --button-hover-bg: #162C6D; /* Button background on hover */
    --button-hover-text: #F1F1F1; /* Button text color on hover */
}

/* Apply global styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-size: var(--heading-size);
    color: var(--heading-color);
}

p {
    font-family: var(--font-paragraph);
    font-size: var(--paragraph-size);
    color: var(--paragraph-color);
    line-height: 1.5;
	letter-spacing: 0.5px;
}

/* Button */
button {
    display: inline-block;
    position: relative;
    padding: 12px 24px;
    background-color: transparent;
    color: #0b1632;
    font-size: 1rem;
    
    margin-bottom: 0rem;
    text-decoration: none;
    border: 2px solid #0b1632;
    border-radius: 5px;
    overflow: hidden; /* Ensures effect stays within button */
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
    z-index: 1;
    cursor: pointer;
}

/* Hover Effect */
button::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -350%;
    width: 500%;
    height: 500%;
    background-color: #fcd404; /* Hover fill color */
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

button:hover::before {
    top: -50%;
    left: -50%;
}

button:hover {
    background-color: transparent;
    font-weight: bold;
    color: #24449c;
    border: 2px solid #24449c; 
}

/* Click (Active) Effect */
button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}


	


                body {
            line-height: 2;
			overflow-x: hidden;
        }
		

         /* Header Styles */
.header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 0rem;
    z-index: 100;
    border-bottom: 3px solid #fcd404; /* Simple line below header */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-weight: bold;
    z-index: 100;
}

.logo img {
    margin-top: 1rem;
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #24449c;
    text-decoration: none;
    margin-left: 10rem;
    padding: 10px 10px; /* Ensures background highlight covers the link */
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px; /* Smooth rounded edges */
}

.nav-links a:hover {
    color: #fcd404;
    background: #24449c;
	padding: 10px 35px;
}

.nav-links a::after {
    content: "";
    display: block;
    height: 2px;
    background: #fcd404;
    width: 0;
    transition: width 0.3s ease-in-out;
    position: absolute;
    left: 0;
    bottom: -5px;
	display: none; /* Remove underline effect */
}

.nav-links a:hover::after {
    width: 0%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 101; /* Ensure it overlaps */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 85%; /* Centering */
    transform: translateX(-50%);
    background: #ffffff;
    color: #1E3D8F;
    min-width: 250px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0); /* Visible shadow */
    border-radius: 5px;
    z-index: 102; /* Higher than .dropdown */
    overflow: hidden;
}

.dropdown-content a {
    color: var(--paragraph-color);
    padding: 10px 15px;
    display: block;
    text-align: center;
    margin: 0;
    transition: background 0.3s, color 0.3s;
    font-size: var(--paragraph-size);
    font-family: var(--font-paragraph);
    border-radius: 0; /* Remove individual rounding for uniformity */
}

.dropdown-content a:hover {
    font-size: var(--paragraph-size);
	padding: 10px 15px;
    background: #24449c;
    color: #fcd404;
    border-radius: 0; /* Keep sharp edges */
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
    }
    
    .nav-links a {
        margin: 10px 0;
        padding: 10px;
        text-align: center;
    }

    /* Intro Section */
    .intro h1 {
        font-size: 32px;
        margin-left: 5%;
    }

    .intro p {
        width: 90%;
        margin-left: 5%;
    }

    /* Products Grid */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* About Section */
    .about-content h2 {
        font-size: 28px;
    }

    /* Why Choose Grid */
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Header Logo */
    .logo img {
        height: 40px;
        margin-top: 0.5rem;
    }

    /* Inquiry Button */
    .inquiry-button {
        padding: 8px 20px;
        font-size: 12px;
    }

    /* Contact Section */
    .contact-us h1 {
        font-size: 48px;
    }
}



.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

@media (max-width: 768px) {
    .mobile-menu-icon {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        margin-top: 60px;
    }
}



/* Hero Section - Mobile First */
.hero {
    position: relative;
    background: url('image/About-bg.jpeg') no-repeat center center/cover;
    height: 60vh; /* Use viewport height for better responsiveness */
    min-height: 300px; /* Minimum height */
    max-height: 600px; /* Maximum height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Add padding for mobile */
    box-sizing: border-box;
}

/* Dark Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

/* Hero Heading - Responsive */
.hero-heading {
    font-size: clamp(2.5rem, 8vw, 5rem); /* Fluid typography */
    font-weight: bold;
    color: white;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    word-break: break-word; /* Prevent overflow */
}

/* Paragraph Section - Responsive */
.paragraph-section {
    background: #ffffff;
    text-align: left;
    padding: 30px 20px;
    max-width: 1200px;
    font-size: clamp(1rem, 3vw, 1.125rem); /* Responsive font size */
    color: #333; /* Changed from white for better contrast */
    margin: 0 auto; /* Center the section */
    line-height: 1.6; /* Better readability */
    width: 90%; /* Full width on mobile */
}

/* Grid Container - Responsive */
.grid-container {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px;
    padding: 20px;
    width: 90%; /* Full width on mobile */
    max-width: 1200px;
    margin: 0 auto; /* Center the grid */
}

/* Grid Items - Responsive */
.grid-item {
    width: 100%; /* Full width on mobile */
    height: 200px; /* Reduced height for mobile */
    border-radius: 8px;
    border: none;
    overflow: hidden;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Grid Images */
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effects - Only on devices that support hover */
@media (hover: hover) {
    .grid-item:hover {
        transform: translateY(-5px);
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .grid-item:hover img {
        transform: scale(1.1);
    }
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .hero {
        height: 70vh;
    }
    
    .hero-heading {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }
    
    .paragraph-section {
        padding: 40px;
        width: 85%;
    }
    
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px;
    }
    
    .grid-item {
        height: 250px;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .hero {
        height: 400px;
    }
    
    .paragraph-section {
        padding: 50px;
    }
    
    .grid-container {
        gap: 40px;
        padding: 40px;
    }
    
    .grid-item {
        height: 300px;
        max-width: 520px;
    }
}






/* Footer Section */
.footer {
    background-color: #f8f8ff; 
    color: black;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1500px;
    margin: auto;
    padding: 0 10px;
	gap: -30px; /* Adjust gap to decrease spacing */
}

/* Logo */
.footer-logo img {
    width: 200px;
    height: auto;
	margin-top: 70px;
}

/* Quick Links */
.footer-links, .footer-contact {
    text-align: left;
    margin-bottom: 15px; /* Added spacing */
	flex: -2; /* Makes sections take equal space */
    min-width: 100px; /* Prevents them from collapsing on smaller screens */
}

.footer-links h3, .footer-contact h3 {
    font-size: 16px;
	
    margin-bottom: 10px; /* Adjusted spacing */
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px; /* Increased spacing */
}

.footer-links ul li a, .footer-contact a {
    color: #0b1632;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover, .footer-contact a:hover {
    text-decoration: underline;
    color: #fcd404; /* Highlight on hover */
}

/* Contact Info */
.footer-contact p {
    margin: 3px 0; /* Added small spacing */
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px; /* Increased for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links, .footer-contact {
        text-align: center;
    }
}



/* Existing styles remain unchanged */

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links {
        margin-left: 0; /* Remove left margin */
        margin-top: 1rem; /* Add top margin for spacing */
    }

    .nav-links a {
        margin-left: 0; /* Remove left margin */
        margin-bottom: 1rem; /* Add bottom margin for spacing */
    }

    .about-container {
        flex-direction: column; /* Stack about section elements */
        text-align: center; /* Center text */
    }

    .about-photo, .about-content {
        width: 100%; /* Full width for mobile */
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .application-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .footer-container {
        flex-direction: column; /* Stack footer items */
        align-items: center; /* Center footer items */
    }

    .footer-links, .footer-contact {
        text-align: center; /* Center text in footer */
    }

    .contact-us h1 {
        font-size: 40px; /* Adjust font size for mobile */
    }

    .contact-btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust font size */
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links a {
        margin-bottom: 0.5rem; /* Add bottom margin for spacing */
    }

    .about-photo {
        width: 100%; /* Full width for mobile */
    }

    .about-content {
        width: 100%; /* Full width for mobile */
    }

    .why-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .product-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .application-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .footer-container {
        flex-direction: column; /* Stack footer items */
        
        
    }

    .footer-links, .footer-contact {
        text-align: center; /* Center text in footer */
    }

    .contact-us h1 {
        font-size: 30px; /* Adjust font size for mobile */
    }

    .contact-btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust font size */
    }
}
/* contact page*/
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        }

        :root {
    --font-heading: 'Montserrat', sans-serif;  /* Change this to your preferred heading font */
    --font-paragraph: 'Open Sans', sans-serif; /* Change this to your preferred paragraph font */
    --heading-size: 22px; /* Default heading size */
    --paragraph-size: 14px; /* Default paragraph size */
    --heading-color: #0b1632; /* Default heading color */
    --paragraph-color: #0b1632; /* Default paragraph color */
    
    /* Button Colors */
    --button-bg: #0b1632; /* Default button background */
    --button-text: #FFFFFF; /* Default button text color */
    --button-hover-bg: #162C6D; /* Button background on hover */
    --button-hover-text: #F1F1F1; /* Button text color on hover */
}

/* Apply global styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-size: var(--heading-size);
    color: var(--heading-color);
}

p {
    font-family: var(--font-paragraph);
    font-size: var(--paragraph-size);
    color: var(--paragraph-color);
    line-height: 1.5;
	letter-spacing: 0.5px;
}

/* Button */
button {
    display: inline-block;
    position: relative;
    padding: 12px 10px;
    background-color: transparent;
    color: #0b1632;
    font-size: 1rem;
    
    margin-bottom: 0rem;
    text-decoration: none;
    border: 2px solid #0b1632;
    border-radius: 5px;
    overflow: hidden; /* Ensures effect stays within button */
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
    z-index: 1;
    cursor: pointer;
}

/* Hover Effect */
button::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -350%;
    width: 500%;
    height: 500%;
    background-color: #fcd404; /* Hover fill color */
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

button:hover::before {
    top: -50%;
    left: -50%;
}

button:hover {
    background-color: transparent;
    font-weight: bold;
    color: #24449c;
    border: 2px solid #24449c; 
}

/* Click (Active) Effect */
button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}


	


         body {
            line-height: 2;
			overflow-x: hidden;
        }
		

         /* Header Styles */
.header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 0rem;
    z-index: 100;
    border-bottom: 3px solid #fcd404; /* Simple line below header */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-weight: bold;
    z-index: 100;
}

.logo img {
    margin-top: 1rem;
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #24449c;
    text-decoration: none;
    margin-left: 10rem;
    padding: 10px 10px; /* Ensures background highlight covers the link */
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px; /* Smooth rounded edges */
}

.nav-links a:hover {
    color: #fcd404;
    background: #24449c;
	padding: 10px 35px;
}

.nav-links a::after {
    content: "";
    display: block;
    height: 2px;
    background: #fcd404;
    width: 0;
    transition: width 0.3s ease-in-out;
    position: absolute;
    left: 0;
    bottom: -5px;
	display: none; /* Remove underline effect */
}

.nav-links a:hover::after {
    width: 0%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 101; /* Ensure it overlaps */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 85%; /* Centering */
    transform: translateX(-50%);
    background: #ffffff;
    color: #1E3D8F;
    min-width: 250px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0); /* Visible shadow */
    border-radius: 5px;
    z-index: 102; /* Higher than .dropdown */
    overflow: hidden;
}

.dropdown-content a {
    color: var(--paragraph-color);
    padding: 10px 15px;
    display: block;
    text-align: center;
    margin: 0;
    transition: background 0.3s, color 0.3s;
    font-size: var(--paragraph-size);
    font-family: var(--font-paragraph);
    border-radius: 0; /* Remove individual rounding for uniformity */
}

.dropdown-content a:hover {
    font-size: var(--paragraph-size);
	padding: 10px 15px;
    background: #24449c;
    color: #fcd404;
    border-radius: 0; /* Keep sharp edges */
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
    }
    
    .nav-links a {
        margin: 10px 0;
        padding: 10px;
        text-align: center;
    }

    /* Intro Section */
    .intro h1 {
        font-size: 32px;
        margin-left: 5%;
    }

    .intro p {
        width: 90%;
        margin-left: 5%;
    }

    /* Products Grid */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* About Section */
    .about-content h2 {
        font-size: 28px;
    }

    /* Why Choose Grid */
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Header Logo */
    .logo img {
        height: 40px;
        margin-top: 0.5rem;
    }

    /* Inquiry Button */
    .inquiry-button {
        padding: 8px 20px;
        font-size: 12px;
    }

    /* Contact Section */
    .contact-us h1 {
        font-size: 48px;
    }
}



.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

@media (max-width: 768px) {
    .mobile-menu-icon {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        margin-top: 60px;
    }
}








/* Section with Background Image - Mobile First */
.bg-section {
    position: relative;
    width: 100%;
    height: 50vh; /* Viewport units for responsiveness */
    min-height: 300px; /* Minimum height */
    max-height: 600px; /* Maximum height */
    background: url('image/contact-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px; /* Add padding for mobile */
    box-sizing: border-box;
}

/* Dark Overlay */
.bg-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

/* Heading Style - Responsive */
.bg-section h2 {
    position: relative;
    color: white;
    font-size: clamp(2.5rem, 8vw, 5rem); /* Fluid typography */
    font-weight: bold;
    z-index: 1;
    line-height: 1.2; /* Better line spacing */
    padding: 0 20px; /* Prevent edge touching */
    word-break: break-word; /* Prevent text overflow */
}

/* Section Container - Responsive */
.three-grid-section {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    align-items: center; /* Center items */
    gap: 30px; /* Increased gap for mobile */
    padding: 30px 20px; /* Adjusted padding */
    max-width: 1200px;
    margin: 0 auto; /* Center the section */
}

/* Individual Grid Item - Responsive */
.grid-box {
    width: 100%; /* Full width on mobile */
    max-width: 400px; /* Maximum width */
    text-align: center;
    padding: 25px 20px; /* Adjusted padding */
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Softer shadow */
    transition: all 0.3s ease;
}

/* Image Styling */
.grid-box img {
    width: auto;
    height: 60px; /* Slightly reduced for mobile */
    max-width: 100%; /* Prevent overflow */
    object-fit: contain; /* Better for logos/icons */
    margin: 0 auto; /* Center image */
}

/* Hover Effect - Only on hover-capable devices */
@media (hover: hover) {
    .grid-box:hover {
        transform: translateY(-5px);
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    }
}

/* Active state for touch devices */
.grid-box:active {
    transform: scale(0.98);
}

/* Heading */
.grid-box h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem); /* Responsive font */
    margin: 15px 0;
    color: #0b1632;
    line-height: 1.3;
}

/* Paragraph */
.grid-box p {
    font-size: clamp(0.9rem, 3vw, 1rem); /* Responsive font */
    color: #555;
    line-height: 1.5; /* Better readability */
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .bg-section {
        height: 60vh;
    }
    
    .three-grid-section {
        flex-direction: row; /* Side-by-side on tablet */
        flex-wrap: wrap; /* Allow wrapping */
        justify-content: center;
        padding: 40px;
    }
    
    .grid-box {
        width: calc(50% - 15px); /* 2 columns */
        max-width: none;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .bg-section {
        height: 400px;
    }
    
    .three-grid-section {
        display: flex; /* Ensure flex layout */
        flex-wrap: nowrap; /* 3 columns */
        padding: 50px;
        gap: 20px;
        align-items: stretch; /* Make children stretch to equal height */
    }
    
    .grid-box {
        width: 100%; /* Equal width columns */
        height: 320px; /* Take full available height */
        display: flex;
        flex-direction: column; /* Stack content vertically */
    }

    /* Optional: Ensure content fills the height */
    .grid-box > * {
        flex-grow: 1; /* Make content expand to fill space */
    }
}


/* Form Section - Mobile First */
.form-section {
    width: 90%; /* Full width on mobile */
    max-width: 700px;
    margin: 30px auto; /* Reduced margin for mobile */
    padding: 25px; /* Reduced padding for mobile */
    background: white;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1); /* Softer shadow for mobile */
    text-align: center;
}

/* Heading - Responsive */
.form-section h2 {
    font-size: clamp(1.5rem, 5vw, 2rem); /* Fluid typography */
    margin-bottom: 15px; /* Reduced spacing */
    color: #0b1632;
    line-height: 1.3; /* Better line spacing */
}

/* Form Layout - Responsive */
.form-container {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 12px; /* Reduced gap */
}

/* Full Width Fields */
.full-width {
    grid-column: span 1; /* Single column on mobile */
}

/* Input Fields */
.form-container input,
.form-container textarea,
.form-container select {
    width: 100%;
    padding: 14px; /* Slightly larger for touch */
    border: 1px solid #ccc; /* Thinner border */
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box; /* Include padding in width */
}

/* Message Box */
textarea {
    height: 150px; /* Taller for mobile typing */
    resize: vertical; /* Allow vertical resize */
}

/* Button Styling */
.send-btn {
    display: block;
    position: relative;
    width: 100%; /* Full width on mobile */
    padding: 14px;
    background: #ffffff;
    color: #0b1632;
    border: 2px solid #0b1632;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 20px auto 0;
    z-index: 1;
}

/* Active state for touch devices */
.send-btn:active {
    transform: scale(0.98); /* Press effect */
}

/* Hover Effect - Only on hover-capable devices */
@media (hover: hover) {
    .send-btn::before {
        content: "";
        position: absolute;
        top: 100%;
        left: -200%;
        width: 250%;
        height: 1400%;
        background-color: #fcd404;
        transform: rotate(45deg);
        transition: all 0.4s ease-in-out;
        z-index: -1;
    }
    
    .send-btn:hover::before {
        top: -50%;
        left: -50%;
    }
    
    .send-btn:hover {
        font-weight: bold;
        color: #24449c;
        background: rgba(0, 0, 0, 0);
    }
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .form-section {
        padding: 30px;
        margin: 50px auto;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    .form-container {
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        gap: 15px;
    }
    
    .full-width {
        grid-column: span 2;
    }
    
    .send-btn {
        width: auto; /* Natural width */
        min-width: 200px; /* Minimum button width */
        padding: 12px 25px;
    }
    
    textarea {
        height: 120px;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .form-section {
        padding: 40px;
    }
}















/* Footer Section */
.footer {
    background-color: #f8f8ff; 
    color: black;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1500px;
    margin: auto;
    padding: 0 10px;
	gap: -30px; /* Adjust gap to decrease spacing */
}

/* Logo */
.footer-logo img {
    width: 200px;
    height: auto;
	margin-top: 70px;
}

/* Quick Links */
.footer-links, .footer-contact {
    text-align: left;
    margin-bottom: 15px; /* Added spacing */
	flex: -2; /* Makes sections take equal space */
    min-width: 100px; /* Prevents them from collapsing on smaller screens */
}

.footer-links h3, .footer-contact h3 {
    font-size: 16px;
	
    margin-bottom: 10px; /* Adjusted spacing */
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px; /* Increased spacing */
}

.footer-links ul li a, .footer-contact a {
    color: #0b1632;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover, .footer-contact a:hover {
    text-decoration: underline;
    color: #fcd404; /* Highlight on hover */
}

/* Contact Info */
.footer-contact p {
    margin: 3px 0; /* Added small spacing */
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px; /* Increased for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links, .footer-contact {
        text-align: center;
    }
}



/* Existing styles remain unchanged */

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links {
        margin-left: 0; /* Remove left margin */
        margin-top: 1rem; /* Add top margin for spacing */
    }

    .nav-links a {
        margin-left: 0; /* Remove left margin */
        margin-bottom: 1rem; /* Add bottom margin for spacing */
    }

    .about-container {
        flex-direction: column; /* Stack about section elements */
        text-align: center; /* Center text */
    }

    .about-photo, .about-content {
        width: 100%; /* Full width for mobile */
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .application-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .footer-container {
        flex-direction: column; /* Stack footer items */
        align-items: center; /* Center footer items */
    }

    .footer-links, .footer-contact {
        text-align: center; /* Center text in footer */
    }

    .contact-us h1 {
        font-size: 40px; /* Adjust font size for mobile */
    }

    .contact-btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust font size */
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links a {
        margin-bottom: 0.5rem; /* Add bottom margin for spacing */
    }

    .about-photo {
        width: 100%; /* Full width for mobile */
    }

    .about-content {
        width: 100%; /* Full width for mobile */
    }

    .why-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .product-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .application-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .footer-container {
        flex-direction: column; /* Stack footer items */
        align-items: center; /* Center footer items */
    }

    .footer-links, .footer-contact {
        text-align: center; /* Center text in footer */
    }

    .contact-us h1 {
        font-size: 30px; /* Adjust font size for mobile */
    }

    .contact-btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust font size */
    }
}
/* product1 */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        }

        :root {
    --font-heading: 'Montserrat', sans-serif;  /* Change this to your preferred heading font */
    --font-paragraph: 'Open Sans', sans-serif; /* Change this to your preferred paragraph font */
    --heading-size: 22px; /* Default heading size */
    --paragraph-size: 14px; /* Default paragraph size */
    --heading-color: #0b1632; /* Default heading color */
    --paragraph-color: #0b1632; /* Default paragraph color */
    
    /* Button Colors */
    --button-bg: #0b1632; /* Default button background */
    --button-text: #FFFFFF; /* Default button text color */
    --button-hover-bg: #162C6D; /* Button background on hover */
    --button-hover-text: #F1F1F1; /* Button text color on hover */
}

/* Apply global styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-size: var(--heading-size);
    color: var(--heading-color);
}

p {
    font-family: var(--font-paragraph);
    font-size: var(--paragraph-size);
    color: var(--paragraph-color);
    line-height: 1.5;
	letter-spacing: 0.5px;
}

/* Button */
button {
    display: inline-block;
    position: relative;
    padding: 12px 24px;
    background-color: transparent;
    color: #0b1632;
    font-size: 1rem;
    
    margin-bottom: 0rem;
    text-decoration: none;
    border: 2px solid #0b1632;
    border-radius: 5px;
    overflow: hidden; /* Ensures effect stays within button */
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
    z-index: 1;
    cursor: pointer;
}

/* Hover Effect */
button::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -350%;
    width: 500%;
    height: 600%;
    background-color: #fcd404; /* Hover fill color */
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

button:hover::before {
    top: -50%;
    left: -50%;
}

button:hover {
    background-color: transparent;
    font-weight: bold;
    color: #24449c;
    border: 2px solid #24449c; 
}

/* Click (Active) Effect */
button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}


	


         body {
            line-height: 2;
			overflow-x: hidden;
        }
		

         /* Header Styles */
.header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 0rem;
    z-index: 100;
    border-bottom: 3px solid #fcd404; /* Simple line below header */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-weight: bold;
    z-index: 100;
}

.logo img {
    margin-top: 1rem;
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #24449c;
    text-decoration: none;
    margin-left: 10rem;
    padding: 10px 10px; /* Ensures background highlight covers the link */
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px; /* Smooth rounded edges */
}

.nav-links a:hover {
    color: #fcd404;
    background: #24449c;
	padding: 10px 35px;
}

.nav-links a::after {
    content: "";
    display: block;
    height: 2px;
    background: #fcd404;
    width: 0;
    transition: width 0.3s ease-in-out;
    position: absolute;
    left: 0;
    bottom: -5px;
	display: none; /* Remove underline effect */
}

.nav-links a:hover::after {
    width: 0%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 101; /* Ensure it overlaps */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 85%; /* Centering */
    transform: translateX(-50%);
    background: #ffffff;
    color: #1E3D8F;
    min-width: 250px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0); /* Visible shadow */
    border-radius: 5px;
    z-index: 102; /* Higher than .dropdown */
    overflow: hidden;
}

.dropdown-content a {
    color: var(--paragraph-color);
    padding: 10px 15px;
    display: block;
    text-align: center;
    margin: 0;
    transition: background 0.3s, color 0.3s;
    font-size: var(--paragraph-size);
    font-family: var(--font-paragraph);
    border-radius: 0; /* Remove individual rounding for uniformity */
}

.dropdown-content a:hover {
    font-size: var(--paragraph-size);
	padding: 10px 15px;
    background: #24449c;
    color: #fcd404;
    border-radius: 0; /* Keep sharp edges */
}

.dropdown:hover .dropdown-content {
    display: block;
}



    /* Floating Inquiry Button - Mobile First */
.inquiry-button {
    position: fixed;
    right: -40px;
    top: 30%;
    transform: translateY(-50%) rotate(270deg);
    font-family: var(--font-heading);
    background: #24449C;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 16px 16px 0 0;
    border: 1.5px solid #fcd404;
    cursor: pointer;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Button hover effect - only for devices that support hover */
@media (hover: hover) {
    .inquiry-button::before {
        content: "";
        position: absolute;
        top: 100%;
        left: -300%;
        width: 200%;
        height: 700%;
        background-color: #fcd404;
        transform: rotate(45deg);
        transition: all 0.3s ease-in-out;
        z-index: -1;
    }

    .inquiry-button:hover::before {
        top: -50%;
        left: -50%;
    }

    .inquiry-button:hover {
        background-color: #24449c;
        color: #24449c;
        font-weight: bold;
        border: 2px solid #24449c;
    }
}

/* Active state for touch devices */
.inquiry-button:active {
    transform: translateY(-50%) rotate(270deg) scale(0.95);
}

.inquiry-button i {
    transform: rotate(90deg);
}

/* Popup Container - Mobile First */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001; /* Higher than button */
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Popup Box - Responsive */
.popup-box {
    background: #ffffff;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Close tooltip - only for desktop */
@media (hover: hover) {
    .close-btn::after {
        content: "Close";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.3);
        color: #fff;
        font-size: 14px;
        padding: 5px 8px;
        border-radius: 5px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .close-btn:hover::after {
        opacity: 0.5;
        visibility: visible;
    }
}

/* Form Grid - Responsive */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: left;
    color: #24449c;
}

/* Full width fields */
.full-width {
    grid-column: span 1;
}

/* Form Inputs */
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #0b1632;
    border-radius: 5px;
    font-size: 16px; /* Better for mobile */
    box-sizing: border-box;
}

textarea {
    min-height: 120px; /* More space for mobile */
}

/* Submit Button */
.submeet-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Active state for touch devices */
.submeet-btn:active {
    transform: scale(0.98);
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    /* Button adjustments */
    .inquiry-button {
        right: -70px;
        padding: 10px 30px;
    }

    /* Form grid - two columns */
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .full-width {
        grid-column: span 2;
    }

    /* Popup padding */
    .popup-box {
        padding: 30px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1024px) {
    .inquiry-button {
        right: -60px;
        font-size: 14px;
    }
}

/* Show Popup */
.show-popup {
    display: flex;
}


@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
    }
    
    .nav-links a {
        margin: 10px 0;
        padding: 10px;
        text-align: center;
    }

    /* Intro Section */
    .intro h1 {
        font-size: 32px;
        margin-left: 5%;
    }

    .intro p {
        width: 90%;
        margin-left: 5%;
    }

    /* Products Grid */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* About Section */
    .about-content h2 {
        font-size: 28px;
    }

    /* Why Choose Grid */
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Header Logo */
    .logo img {
        height: 40px;
        margin-top: 0.5rem;
    }

    /* Inquiry Button */
    .inquiry-button {
        padding: 8px 20px;
        font-size: 12px;
    }

    /* Contact Section */
    .contact-us h1 {
        font-size: 48px;
    }
}



.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

@media (max-width: 768px) {
    .mobile-menu-icon {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        margin-top: 60px;
    }
}


/* Hero Section - Mobile First */
.hero-section {
    position: relative;
    height: 50vh; /* Using viewport units for responsiveness */
    min-height: 300px; /* Minimum height */
    max-height: 600px; /* Maximum height */
    background: url('image/product1-bg.jpg') no-repeat center center/cover;
    text-align: center;
    color: yellow;
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center;
    padding: 20px; /* Add padding for mobile */
    box-sizing: border-box;
}

/* Dark Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

/* Hero Heading - Responsive */
.hero-section h2 {
    position: relative;
    font-size: clamp(2.5rem, 8vw, 5rem); /* Fluid typography */
    color: white;
    z-index: 2;
    padding: 0 20px;
    margin: 0;
    line-height: 1.2; /* Better line spacing */
    word-break: break-word; /* Prevent text overflow */
}

/* Product Description - Responsive */
.product-description {
    background: white;
    color: #0b1632;
    padding: 30px 20px; /* Increased padding for mobile */
    max-width: 1200px;
    width: 90%; /* Full width on mobile */
    margin: 0 auto; /* Center the section */
    text-align: left;
    font-family: var(--font-paragraph);
    font-size: clamp(1rem, 3vw, 1.125rem); /* Responsive font size */
    line-height: 1.6; /* Better readability */
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .hero-section {
        height: 60vh;
        padding: 40px;
    }
    
    .hero-section h2 {
        font-size: clamp(3rem, 8vw, 4.5rem);
    }
    
    .product-description {
        padding: 40px;
        width: 85%;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .hero-section {
        height: 400px;
    }
    
    .product-description {
        padding: 50px;
        width: 80%;
        max-width: 1200px;
    }
}




/* Grade Section */
.grade-section {
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}

/* Grid Layout */
.grade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

/* Grid Card */
.grade-card {
    background: white;
    border: 1px solid #0b1632;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0);
}

/* Color Boxes */
.color-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.color-box {
    width: 100px;
    height: 120px;
    
}

/* Grade Name */
.grade-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.inquiry-btn {
    display: inline-block !important;
    position: relative !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    background: white !important;
    border: 2px solid #0b1632 !important;
    color: #0b1632 !important;
    cursor: pointer !important;
    border-radius: 5px !important;
    overflow: hidden !important; /* Prevents overflow of pseudo-element */
    transition: color 0.3s ease-in-out !important;
    z-index: 1 !important;
}

/* Create the diagonal hover effect */
.inquiry-btn::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -200%;
    width: 300%;
    height: 700%;
    background: #fcd404; /* Hover fill color */
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
    z-index: -1;
}

/* Apply the effect on hover */
.inquiry-btn:hover::before {
	
    top: -50%;
    left: -50%;
}

.inquiry-btn:hover {
    font-weight: bold;
	border: 2px solid #24449c;
    color: #24449c !important; /* Change text color on hover */
}


/* Footer Section */
.footer {
    background-color: #f8f8ff; 
    color: black;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1500px;
    margin: auto;
    padding: 0 10px;
	gap: -30px; /* Adjust gap to decrease spacing */
}

/* Logo */
.footer-logo img {
    width: 200px;
    height: auto;
	margin-top: 70px;
}

/* Quick Links */
.footer-links, .footer-contact {
    text-align: left;
    margin-bottom: 15px; /* Added spacing */
	flex: -2; /* Makes sections take equal space */
    min-width: 100px; /* Prevents them from collapsing on smaller screens */
}

.footer-links h3, .footer-contact h3 {
    font-size: 16px;
	
    margin-bottom: 10px; /* Adjusted spacing */
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px; /* Increased spacing */
}

.footer-links ul li a, .footer-contact a {
    color: #0b1632;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover, .footer-contact a:hover {
    text-decoration: underline;
    color: #fcd404; /* Highlight on hover */
}

/* Contact Info */
.footer-contact p {
    margin: 3px 0; /* Added small spacing */
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px; /* Increased for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links, .footer-contact {
        text-align: center;
    }
}



/* Existing styles remain unchanged */

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links {
        margin-left: 0; /* Remove left margin */
        margin-top: 1rem; /* Add top margin for spacing */
    }

    .nav-links a {
        margin-left: 0; /* Remove left margin */
        margin-bottom: 1rem; /* Add bottom margin for spacing */
    }

    .about-container {
        flex-direction: column; /* Stack about section elements */
        text-align: center; /* Center text */
    }

    .about-photo, .about-content {
        width: 100%; /* Full width for mobile */
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .application-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .footer-container {
        flex-direction: column; /* Stack footer items */
        align-items: center; /* Center footer items */
    }

    .footer-links, .footer-contact {
        text-align: center; /* Center text in footer */
    }

    .contact-us h1 {
        font-size: 40px; /* Adjust font size for mobile */
    }

    .contact-btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust font size */
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links a {
        margin-bottom: 0.5rem; /* Add bottom margin for spacing */
    }

    .about-photo {
        width: 100%; /* Full width for mobile */
    }

    .about-content {
        width: 100%; /* Full width for mobile */
    }

    .why-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .product-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .application-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .footer-container {
        flex-direction: column; /* Stack footer items */
        align-items: center; /* Center footer items */
    }

    .footer-links, .footer-contact {
        text-align: center; /* Center text in footer */
    }

    .contact-us h1 {
        font-size: 30px; /* Adjust font size for mobile */
    }

    .contact-btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust font size */
    }
}

/* product2.php*/

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        }

        :root {
    --font-heading: 'Montserrat', sans-serif;  /* Change this to your preferred heading font */
    --font-paragraph: 'Open Sans', sans-serif; /* Change this to your preferred paragraph font */
    --heading-size: 22px; /* Default heading size */
    --paragraph-size: 14px; /* Default paragraph size */
    --heading-color: #0b1632; /* Default heading color */
    --paragraph-color: #0b1632; /* Default paragraph color */
    
    /* Button Colors */
    --button-bg: #0b1632; /* Default button background */
    --button-text: #FFFFFF; /* Default button text color */
    --button-hover-bg: #162C6D; /* Button background on hover */
    --button-hover-text: #F1F1F1; /* Button text color on hover */
}

/* Apply global styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-size: var(--heading-size);
    color: var(--heading-color);
}

p {
    font-family: var(--font-paragraph);
    font-size: var(--paragraph-size);
    color: var(--paragraph-color);
    line-height: 1.5;
	letter-spacing: 0.5px;
}

/* Button */
button {
    display: inline-block;
    position: relative;
    padding: 12px 24px;
    background-color: transparent;
    color: #0b1632;
    font-size: 1rem;
    
    margin-bottom: 0rem;
    text-decoration: none;
    border: 2px solid #0b1632;
    border-radius: 5px;
    overflow: hidden; /* Ensures effect stays within button */
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
    z-index: 1;
    cursor: pointer;
}

/* Hover Effect */
button::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -350%;
    width: 500%;
    height: 500%;
    background-color: #fcd404; /* Hover fill color */
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

button:hover::before {
    top: -50%;
    left: -50%;
}

button:hover {
    background-color: transparent;
    font-weight: bold;
    color: #24449c;
    border: 2px solid #24449c; 
}

/* Click (Active) Effect */
button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}


	


        body {
            line-height: 2;
			overflow-x: hidden;
        }
		

         /* Header Styles */
.header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 0rem;
    z-index: 100;
    border-bottom: 3px solid #fcd404; /* Simple line below header */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-weight: bold;
    z-index: 100;
}

.logo img {
    margin-top: 1rem;
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #24449c;
    text-decoration: none;
    margin-left: 10rem;
    padding: 10px 10px; /* Ensures background highlight covers the link */
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px; /* Smooth rounded edges */
}

.nav-links a:hover {
    color: #fcd404;
    background: #24449c;
	padding: 10px 35px;
}

.nav-links a::after {
    content: "";
    display: block;
    height: 2px;
    background: #fcd404;
    width: 0;
    transition: width 0.3s ease-in-out;
    position: absolute;
    left: 0;
    bottom: -5px;
	display: none; /* Remove underline effect */
}

.nav-links a:hover::after {
    width: 0%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 101; /* Ensure it overlaps */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 85%; /* Centering */
    transform: translateX(-50%);
    background: #ffffff;
    color: #1E3D8F;
    min-width: 250px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0); /* Visible shadow */
    border-radius: 5px;
    z-index: 102; /* Higher than .dropdown */
    overflow: hidden;
}

.dropdown-content a {
    color: var(--paragraph-color);
    padding: 10px 15px;
    display: block;
    text-align: center;
    margin: 0;
    transition: background 0.3s, color 0.3s;
    font-size: var(--paragraph-size);
    font-family: var(--font-paragraph);
    border-radius: 0; /* Remove individual rounding for uniformity */
}

.dropdown-content a:hover {
    font-size: var(--paragraph-size);
	padding: 10px 15px;
    background: #24449c;
    color: #fcd404;
    border-radius: 0; /* Keep sharp edges */
}

.dropdown:hover .dropdown-content {
    display: block;
}



    /* Floating Inquiry Button - Mobile First */
.inquiry-button {
    position: fixed;
    right: -40px;
    top: 30%;
    transform: translateY(-50%) rotate(270deg);
    font-family: var(--font-heading);
    background: #24449C;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 16px 16px 0 0;
    border: 1.5px solid #fcd404;
    cursor: pointer;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Button hover effect - only for devices that support hover */
@media (hover: hover) {
    .inquiry-button::before {
        content: "";
        position: absolute;
        top: 100%;
        left: -300%;
        width: 200%;
        height: 700%;
        background-color: #fcd404;
        transform: rotate(45deg);
        transition: all 0.3s ease-in-out;
        z-index: -1;
    }

    .inquiry-button:hover::before {
        top: -50%;
        left: -50%;
    }

    .inquiry-button:hover {
        background-color: #24449c;
        color: #24449c;
        font-weight: bold;
        border: 2px solid #24449c;
    }
}

/* Active state for touch devices */
.inquiry-button:active {
    transform: translateY(-50%) rotate(270deg) scale(0.95);
}

.inquiry-button i {
    transform: rotate(90deg);
}

/* Popup Container - Mobile First */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001; /* Higher than button */
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Popup Box - Responsive */
.popup-box {
    background: #ffffff;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Close tooltip - only for desktop */
@media (hover: hover) {
    .close-btn::after {
        content: "Close";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.3);
        color: #fff;
        font-size: 14px;
        padding: 5px 8px;
        border-radius: 5px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .close-btn:hover::after {
        opacity: 0.5;
        visibility: visible;
    }
}

/* Form Grid - Responsive */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: left;
    color: #24449c;
}

/* Full width fields */
.full-width {
    grid-column: span 1;
}

/* Form Inputs */
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #0b1632;
    border-radius: 5px;
    font-size: 16px; /* Better for mobile */
    box-sizing: border-box;
}

textarea {
    min-height: 120px; /* More space for mobile */
}

/* Submit Button */
.submeet-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Active state for touch devices */
.submeet-btn:active {
    transform: scale(0.98);
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    /* Button adjustments */
    .inquiry-button {
        right: -70px;
        padding: 10px 30px;
    }

    /* Form grid - two columns */
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .full-width {
        grid-column: span 2;
    }

    /* Popup padding */
    .popup-box {
        padding: 30px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1024px) {
    .inquiry-button {
        right: -60px;
        font-size: 14px;
    }
}

/* Show Popup */
.show-popup {
    display: flex;
}


@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
    }
    
    .nav-links a {
        margin: 10px 0;
        padding: 10px;
        text-align: center;
    }

    /* Intro Section */
    .intro h1 {
        font-size: 32px;
        margin-left: 5%;
    }

    .intro p {
        width: 90%;
        margin-left: 5%;
    }

    /* Products Grid */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* About Section */
    .about-content h2 {
        font-size: 28px;
    }

    /* Why Choose Grid */
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Header Logo */
    .logo img {
        height: 40px;
        margin-top: 0.5rem;
    }

    /* Inquiry Button */
    .inquiry-button {
        padding: 8px 20px;
        font-size: 12px;
    }

    /* Contact Section */
    .contact-us h1 {
        font-size: 48px;
    }
}



.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

@media (max-width: 768px) {
    .mobile-menu-icon {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        margin-top: 60px;
    }
}


/* Hero Section - Mobile First */
.hero-section {
    position: relative;
    height: 50vh; /* Using viewport units for responsiveness */
    min-height: 300px; /* Minimum height */
    max-height: 600px; /* Maximum height */
    background: url('image/product2-bg.jpeg') no-repeat center center/cover;
    text-align: center;
    color: yellow;
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center;
    padding: 20px; /* Add padding for mobile */
    box-sizing: border-box;
}

/* Dark Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

/* Hero Heading - Responsive */
.hero-section h2 {
    position: relative;
    font-size: clamp(2.5rem, 8vw, 5rem); /* Fluid typography */
    color: white;
    z-index: 2;
    padding: 0 20px;
    margin: 0;
    line-height: 1.2; /* Better line spacing */
    word-break: break-word; /* Prevent text overflow */
}

/* Product Description - Responsive */
.product-description {
    background: white;
    color: #0b1632;
    padding: 30px 20px; /* Increased padding for mobile */
    max-width: 1200px;
    width: 90%; /* Full width on mobile */
    margin: 0 auto; /* Center the section */
    text-align: left;
    font-family: var(--font-paragraph);
    font-size: clamp(1rem, 3vw, 1.125rem); /* Responsive font size */
    line-height: 1.6; /* Better readability */
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .hero-section {
        height: 60vh;
        padding: 40px;
    }
    
    .hero-section h2 {
        font-size: clamp(3rem, 8vw, 4.5rem);
    }
    
    .product-description {
        padding: 40px;
        width: 85%;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .hero-section {
        height: 400px;
    }
    
    .product-description {
        padding: 50px;
        width: 80%;
        max-width: 1200px;
    }
}




/* Grade Section */
.grade-section {
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}

/* Grid Layout */
.grade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

/* Grid Card */
.grade-card {
    background: white;
    border: 1px solid #0b1632;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0);
}

/* Color Boxes */
.color-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.color-box {
    width: 100px;
    height: 120px;
    
}

/* Grade Name */
.grade-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.inquiry-btn {
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    font-size: 14px;
    background: white;
    border: 2px solid #0b1632;
    color: #0b1632;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden; /* Prevents overflow of pseudo-element */
    transition: color 0.3s ease-in-out;
    z-index: 1;
}

/* Create the diagonal hover effect */
.inquiry-btn::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -200%;
    width: 300%;
    height: 700%;
    background: #fcd404; /* Hover fill color */
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
    z-index: -1;
}

/* Apply the effect on hover */
.inquiry-btn:hover::before {
	
    top: -50%;
    left: -50%;
}

.inquiry-btn:hover {
    font-weight: bold;
    color: #24449c; /* Change text color on hover */
}


/* Footer Section */
.footer {
    background-color: #f8f8ff; 
    color: black;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1500px;
    margin: auto;
    padding: 0 10px;
	gap: -30px; /* Adjust gap to decrease spacing */
}

/* Logo */
.footer-logo img {
    width: 200px;
    height: auto;
	margin-top: 70px;
}

/* Quick Links */
.footer-links, .footer-contact {
    text-align: left;
    margin-bottom: 15px; /* Added spacing */
	flex: -2; /* Makes sections take equal space */
    min-width: 100px; /* Prevents them from collapsing on smaller screens */
}

.footer-links h3, .footer-contact h3 {
    font-size: 16px;
	
    margin-bottom: 10px; /* Adjusted spacing */
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px; /* Increased spacing */
}

.footer-links ul li a, .footer-contact a {
    color: #0b1632;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover, .footer-contact a:hover {
    text-decoration: underline;
    color: #fcd404; /* Highlight on hover */
}

/* Contact Info */
.footer-contact p {
    margin: 3px 0; /* Added small spacing */
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px; /* Increased for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links, .footer-contact {
        text-align: center;
    }
}



/* Existing styles remain unchanged */

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links {
        margin-left: 0; /* Remove left margin */
        margin-top: 1rem; /* Add top margin for spacing */
    }

    .nav-links a {
        margin-left: 0; /* Remove left margin */
        margin-bottom: 1rem; /* Add bottom margin for spacing */
    }

    .about-container {
        flex-direction: column; /* Stack about section elements */
        text-align: center; /* Center text */
    }

    .about-photo, .about-content {
        width: 100%; /* Full width for mobile */
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .application-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .footer-container {
        flex-direction: column; /* Stack footer items */
        align-items: center; /* Center footer items */
    }

    .footer-links, .footer-contact {
        text-align: center; /* Center text in footer */
    }

    .contact-us h1 {
        font-size: 40px; /* Adjust font size for mobile */
    }

    .contact-btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust font size */
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links a {
        margin-bottom: 0.5rem; /* Add bottom margin for spacing */
    }

    .about-photo {
        width: 100%; /* Full width for mobile */
    }

    .about-content {
        width: 100%; /* Full width for mobile */
    }

    .why-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .product-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .application-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .footer-container {
        flex-direction: column; /* Stack footer items */
        align-items: center; /* Center footer items */
    }

    .footer-links, .footer-contact {
        text-align: center; /* Center text in footer */
    }

    .contact-us h1 {
        font-size: 30px; /* Adjust font size for mobile */
    }

    .contact-btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust font size */
    }
}
/* product3*/
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        }

        :root {
    --font-heading: 'Montserrat', sans-serif;  /* Change this to your preferred heading font */
    --font-paragraph: 'Open Sans', sans-serif; /* Change this to your preferred paragraph font */
    --heading-size: 22px; /* Default heading size */
    --paragraph-size: 14px; /* Default paragraph size */
    --heading-color: #0b1632; /* Default heading color */
    --paragraph-color: #0b1632; /* Default paragraph color */
    
    /* Button Colors */
    --button-bg: #0b1632; /* Default button background */
    --button-text: #FFFFFF; /* Default button text color */
    --button-hover-bg: #162C6D; /* Button background on hover */
    --button-hover-text: #F1F1F1; /* Button text color on hover */
}

/* Apply global styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-size: var(--heading-size);
    color: var(--heading-color);
}

p {
    font-family: var(--font-paragraph);
    font-size: var(--paragraph-size);
    color: var(--paragraph-color);
    line-height: 1.5;
	letter-spacing: 0.5px;
}

/* Button */
button {
    display: inline-block;
    position: relative;
    padding: 12px 24px;
    background-color: transparent;
    color: #0b1632;
    font-size: 1rem;
    
    margin-bottom: 0rem;
    text-decoration: none;
    border: 2px solid #0b1632;
    border-radius: 5px;
    overflow: hidden; /* Ensures effect stays within button */
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
    z-index: 1;
    cursor: pointer;
}

/* Hover Effect */
button::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -350%;
    width: 500%;
    height: 600%;
    background-color: #fcd404; /* Hover fill color */
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

button:hover::before {
    top: -50%;
    left: -50%;
}

button:hover {
    background-color: transparent;
    font-weight: bold;
    color: #24449c;
    border: 2px solid #24449c; 
}

/* Click (Active) Effect */
button:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}


	


        body {
            line-height: 2;
			overflow-x: hidden;
        }
		

         /* Header Styles */
.header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 0rem;
    z-index: 100;
    border-bottom: 3px solid #fcd404; /* Simple line below header */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    font-family: var(--font-heading);
    font-weight: bold;
    z-index: 100;
}

.logo img {
    margin-top: 1rem;
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #24449c;
    text-decoration: none;
    margin-left: 10rem;
    padding: 10px 10px; /* Ensures background highlight covers the link */
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px; /* Smooth rounded edges */
}

.nav-links a:hover {
    color: #fcd404;
    background: #24449c;
	padding: 10px 35px;
}

.nav-links a::after {
    content: "";
    display: block;
    height: 2px;
    background: #fcd404;
    width: 0;
    transition: width 0.3s ease-in-out;
    position: absolute;
    left: 0;
    bottom: -5px;
	display: none; /* Remove underline effect */
}

.nav-links a:hover::after {
    width: 0%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
    z-index: 101; /* Ensure it overlaps */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 85%; /* Centering */
    transform: translateX(-50%);
    background: #ffffff;
    color: #1E3D8F;
    min-width: 250px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0); /* Visible shadow */
    border-radius: 5px;
    z-index: 102; /* Higher than .dropdown */
    overflow: hidden;
}

.dropdown-content a {
    color: var(--paragraph-color);
    padding: 10px 15px;
    display: block;
    text-align: center;
    margin: 0;
    transition: background 0.3s, color 0.3s;
    font-size: var(--paragraph-size);
    font-family: var(--font-paragraph);
    border-radius: 0; /* Remove individual rounding for uniformity */
}

.dropdown-content a:hover {
    font-size: var(--paragraph-size);
	padding: 10px 15px;
    background: #24449c;
    color: #fcd404;
    border-radius: 0; /* Keep sharp edges */
}

.dropdown:hover .dropdown-content {
    display: block;
}



    /* Floating Inquiry Button - Mobile First */
.inquiry-button {
    position: fixed;
    right: -40px;
    top: 30%;
    transform: translateY(-50%) rotate(270deg);
    font-family: var(--font-heading);
    background: #24449C;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 16px 16px 0 0;
    border: 1.5px solid #fcd404;
    cursor: pointer;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Button hover effect - only for devices that support hover */
@media (hover: hover) {
    .inquiry-button::before {
        content: "";
        position: absolute;
        top: 100%;
        left: -300%;
        width: 200%;
        height: 700%;
        background-color: #fcd404;
        transform: rotate(45deg);
        transition: all 0.3s ease-in-out;
        z-index: -1;
    }

    .inquiry-button:hover::before {
        top: -50%;
        left: -50%;
    }

    .inquiry-button:hover {
        background-color: #24449c;
        color: #24449c;
        font-weight: bold;
        border: 2px solid #24449c;
    }
}

/* Active state for touch devices */
.inquiry-button:active {
    transform: translateY(-50%) rotate(270deg) scale(0.95);
}

.inquiry-button i {
    transform: rotate(90deg);
}

/* Popup Container - Mobile First */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001; /* Higher than button */
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Popup Box - Responsive */
.popup-box {
    background: #ffffff;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Close tooltip - only for desktop */
@media (hover: hover) {
    .close-btn::after {
        content: "Close";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.3);
        color: #fff;
        font-size: 14px;
        padding: 5px 8px;
        border-radius: 5px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .close-btn:hover::after {
        opacity: 0.5;
        visibility: visible;
    }
}

/* Form Grid - Responsive */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: left;
    color: #24449c;
}

/* Full width fields */
.full-width {
    grid-column: span 1;
}

/* Form Inputs */
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #0b1632;
    border-radius: 5px;
    font-size: 16px; /* Better for mobile */
    box-sizing: border-box;
}

textarea {
    min-height: 120px; /* More space for mobile */
}

/* Submit Button */
.submeet-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Active state for touch devices */
.submeet-btn:active {
    transform: scale(0.98);
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    /* Button adjustments */
    .inquiry-button {
        right: -70px;
        padding: 10px 30px;
    }

    /* Form grid - two columns */
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .full-width {
        grid-column: span 2;
    }

    /* Popup padding */
    .popup-box {
        padding: 30px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1024px) {
    .inquiry-button {
        right: -60px;
        font-size: 14px;
    }
}

/* Show Popup */
.show-popup {
    display: flex;
}


@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
    }
    
    .nav-links a {
        margin: 10px 0;
        padding: 10px;
        text-align: center;
    }

    /* Intro Section */
    .intro h1 {
        font-size: 32px;
        margin-left: 5%;
    }

    .intro p {
        width: 90%;
        margin-left: 5%;
    }

    /* Products Grid */
    .product-grid {
        grid-template-columns: 1fr;
    }

    /* About Section */
    .about-content h2 {
        font-size: 28px;
    }

    /* Why Choose Grid */
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Header Logo */
    .logo img {
        height: 40px;
        margin-top: 0.5rem;
    }

    /* Inquiry Button */
    .inquiry-button {
        padding: 8px 20px;
        font-size: 12px;
    }

    /* Contact Section */
    .contact-us h1 {
        font-size: 48px;
    }
}



.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

@media (max-width: 768px) {
    .mobile-menu-icon {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        margin-top: 60px;
    }
}


/* Hero Section - Mobile First */
.hero-section {
    position: relative;
    height: 50vh; /* Using viewport units for responsiveness */
    min-height: 300px; /* Minimum height */
    max-height: 600px; /* Maximum height */
    background: url('image/product3-bg.jpg') no-repeat center center/cover;
    text-align: center;
    color: yellow;
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center;
    padding: 20px; /* Add padding for mobile */
    box-sizing: border-box;
}

/* Dark Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

/* Hero Heading - Responsive */
.hero-section h2 {
    position: relative;
    font-size: clamp(2.5rem, 8vw, 5rem); /* Fluid typography */
    color: white;
    z-index: 2;
    padding: 0 20px;
    margin: 0;
    line-height: 1.2; /* Better line spacing */
    word-break: break-word; /* Prevent text overflow */
}

/* Product Description - Responsive */
.product-description {
    background: white;
    color: #0b1632;
    padding: 30px 20px; /* Increased padding for mobile */
    max-width: 1200px;
    width: 90%; /* Full width on mobile */
    margin: 0 auto; /* Center the section */
    text-align: left;
    font-family: var(--font-paragraph);
    font-size: clamp(1rem, 3vw, 1.125rem); /* Responsive font size */
    line-height: 1.6; /* Better readability */
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .hero-section {
        height: 60vh;
        padding: 40px;
    }
    
    .hero-section h2 {
        font-size: clamp(3rem, 8vw, 4.5rem);
    }
    
    .product-description {
        padding: 40px;
        width: 85%;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .hero-section {
        height: 400px;
    }
    
    .product-description {
        padding: 50px;
        width: 80%;
        max-width: 1200px;
    }
}



/* Grade Section */
.grade-section {
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}

/* Grid Layout */
.grade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

/* Grid Card */
.grade-card {
    background: white;
    border: 1px solid #0b1632;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0);
}

/* Color Boxes */
.color-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.color-box {
    width: 100px;
    height: 120px;
    
}

/* Grade Name */
.grade-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.inquiry-btn {
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    font-size: 14px;
    background: white;
    border: 2px solid #0b1632;
    color: #0b1632;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden; /* Prevents overflow of pseudo-element */
    transition: color 0.3s ease-in-out;
    z-index: 1;
}

/* Create the diagonal hover effect */
.inquiry-btn::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -200%;
    width: 300%;
    height: 700%;
    background: #fcd404; /* Hover fill color */
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
    z-index: -1;
}

/* Apply the effect on hover */
.inquiry-btn:hover::before {
	
    top: -50%;
    left: -50%;
}

.inquiry-btn:hover {
    font-weight: bold;
    color: #24449c; /* Change text color on hover */
}


/* Style for Popup Background */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Popup Content */
.popup-content {
    background: white;
    padding: 20px;
    width: 400px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Form Fields */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid black;
    border-radius: 5px;
}

/* Submit Button */
.submit-btn {
    background: black;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #333;
}







/* Footer Section */
.footer {
    background-color: #f8f8ff; 
    color: black;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1500px;
    margin: auto;
    padding: 0 10px;
	gap: -30px; /* Adjust gap to decrease spacing */
}

/* Logo */
.footer-logo img {
    width: 200px;
    height: auto;
	margin-top: 70px;
}

/* Quick Links */
.footer-links, .footer-contact {
    text-align: left;
    margin-bottom: 15px; /* Added spacing */
	flex: -2; /* Makes sections take equal space */
    min-width: 100px; /* Prevents them from collapsing on smaller screens */
}

.footer-links h3, .footer-contact h3 {
    font-size: 16px;
	
    margin-bottom: 10px; /* Adjusted spacing */
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px; /* Increased spacing */
}

.footer-links ul li a, .footer-contact a {
    color: #0b1632;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover, .footer-contact a:hover {
    text-decoration: underline;
    color: #fcd404; /* Highlight on hover */
}

/* Contact Info */
.footer-contact p {
    margin: 3px 0; /* Added small spacing */
}

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px; /* Increased for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links, .footer-contact {
        text-align: center;
    }
}



/* Existing styles remain unchanged */

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links {
        margin-left: 0; /* Remove left margin */
        margin-top: 1rem; /* Add top margin for spacing */
    }

    .nav-links a {
        margin-left: 0; /* Remove left margin */
        margin-bottom: 1rem; /* Add bottom margin for spacing */
    }

    .about-container {
        flex-direction: column; /* Stack about section elements */
        text-align: center; /* Center text */
    }

    .about-photo, .about-content {
        width: 100%; /* Full width for mobile */
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .application-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns for smaller screens */
    }

    .footer-container {
        flex-direction: column; /* Stack footer items */
        align-items: center; /* Center footer items */
    }

    .footer-links, .footer-contact {
        text-align: center; /* Center text in footer */
    }

    .contact-us h1 {
        font-size: 40px; /* Adjust font size for mobile */
    }

    .contact-btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust font size */
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column; /* Stack navbar items vertically */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links a {
        margin-bottom: 0.5rem; /* Add bottom margin for spacing */
    }

    .about-photo {
        width: 100%; /* Full width for mobile */
    }

    .about-content {
        width: 100%; /* Full width for mobile */
    }

    .why-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .product-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .application-grid {
        grid-template-columns: 1fr; /* 1 Column for mobile */
    }

    .footer-container {
        flex-direction: column; /* Stack footer items */
        align-items: center; /* Center footer items */
    }

    .footer-links, .footer-contact {
        text-align: center; /* Center text in footer */
    }

    .contact-us h1 {
        font-size: 30px; /* Adjust font size for mobile */
    }

    .contact-btn {
        padding: 10px 20px; /* Adjust button padding */
        font-size: 14px; /* Adjust font size */
    }
}