/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER & NAV (Glass Effect) --- */
header {
    background: rgba(240, 244, 248, 0.95); 
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;       
    align-items: center; 
    gap: 15px;           
}

.logo h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #00509d; 
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    vertical-align: middle;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #00509d; 
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 20px;
}

nav ul li a:hover {
    background: #00509d;
    color: #fff;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #00509d; 
    margin: 5px;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('banner.png');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: -85px; 
    padding-top: 85px; 
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background: #ff9900;
    color: #fff;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: #e68a00;
    transform: translateY(-3px);
}

/* Stats Section */
.stats-bar {
    background: #ff9900;
    color: white;
    padding: 30px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #00509d; 
}

.stat-item h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.stat-item p {
    font-weight: 500;
    color: #00509d; 
}

/* Common Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-gray {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #00509d; 
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff9900;
    margin: 10px auto 0;
}

.text-center {
    text-align: center;
}

/* Filter Buttons */
.filter-container {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    margin: 5px;
    border: 2px solid #00509d; 
    background: transparent;
    color: #00509d; 
    cursor: pointer;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover, .filter-btn.active {
    background: #00509d; 
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 80, 157, 0.3);
}

/* --- PRODUCT GRID & CARDS --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
    cursor: default;
}

.clickable-card {
    cursor: pointer; 
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-bottom: 3px solid #ff9900;
}

.hide {
    display: none;
}

/* Image Container */
.product-img {
    height: 200px;
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #fff;
    overflow: hidden;
}

/* GENERAL IMAGE STYLE */
.product-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

/* SLIDESHOW SPECIFIC STYLES */
.slideshow img {
    position: absolute; 
    opacity: 0;         
    transition: opacity 1s ease-in-out;
}

/* Active Slide */
.slideshow img.active {
    opacity: 1;
    position: relative; 
}

.product-card h3 {
    margin-bottom: 15px;
    color: #00509d;
    font-size: 1.2rem;
}

.view-details {
    font-size: 0.9rem;
    color: #ff9900;
    font-weight: 600;
    margin-top: 10px;
}

.product-card ul {
    list-style: none;
    text-align: left;
    padding-left: 10px;
    font-size: 0.95rem;
    color: #555;
}

.product-card ul li {
    margin-bottom: 5px;
}

.product-card ul li::before {
    content: "•";
    color: #ff9900;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
}

/* --- MODAL (POPUP) --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
    position: relative;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {top: -100px; opacity: 0;}
    to {top: 0; opacity: 1;}
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #000;
}

.modal-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.modal-item {
    flex: 1 1 250px; 
    text-align: center;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
}

.modal-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}

.modal-item h4 {
    color: #00509d;
    margin-bottom: 5px;
    font-weight: 700;
}

.modal-desc {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

/* Features */
.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex-basis: 30%;
    min-width: 250px;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

.feature-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item i {
    font-size: 3rem;
    color: #00509d;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #00509d;
}

.contact-info p {
    margin-bottom: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: #ff9900;
    margin-right: 15px;
    width: 20px;
    margin-top: 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #00509d;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding-right: 20px;
}

.footer-col h3 {
    color: #ff9900;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #666;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* NEW: Email Floating Button */
.email-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px; /* Stacked above WhatsApp (30px + 60px + 10px gap) */
    right: 30px;
    background-color: #00509d; /* Theme Blue */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.email-float:hover {
    background-color: #003366; /* Darker Blue */
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    nav ul {
        display: none; 
        position: absolute;
        right: 0px;
        top: 60px;
        background-color: #fff;
        flex-direction: column;
        width: 60%;
        text-align: center;
        box-shadow: -5px 5px 10px rgba(0,0,0,0.1);
    }
    nav ul li {
        margin: 25px 0;
    }
    nav ul li a {
        color: #00509d; 
    }
    .burger {
        display: block;
    }
    .nav-active {
        display: flex;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .contact-wrapper, .footer-content {
        flex-direction: column;
    }
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
    .footer-col {
        border-bottom: 1px solid #333;
        padding-bottom: 20px;
    }
    
    /* Mobile Positioning for Buttons */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .email-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 80px; /* Stacked above mobile WhatsApp */
        right: 20px;
    }
    

    
}
.linkedin-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 170px; /* Email બટનની ઉપર */
    right: 30px;
    background-color: #0077b5; /* LinkedIn Blue Color */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.linkedin-float:hover {
    background-color: #005582;
    transform: scale(1.1);
}

/* LinkedIn Mobile Adjustment */
@media screen and (max-width: 768px) {
    .linkedin-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 140px; /* મોબાઈલમાં પોઝિશન */
        right: 20px;
    }
}