/* ===== CONTACT HERO WITH BACKGROUND IMAGE ===== */

.contact-hero-bg{
    position: relative;
    padding: 140px 0 110px;
    background: url("../image/h2.png") center center / cover no-repeat;
    font-family: "Segoe UI", sans-serif;
    overflow: hidden;
}

/* Dark + orange overlay (for text readability) */
.contact-hero-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(25,35,70,0.85) 0%,
            rgba(25,35,70,0.6) 50%,
            rgba(255,140,0,0.75) 100%
        );
}

/* Content */
.contact-hero-content{
    position: relative;
    max-width: 720px;
}

.contact-hero-content h1{
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-hero-content p{
    font-size: 17px;
    color: #f1f1f1;
    line-height: 1.6;
    max-width: 600px;
}

/* Breadcrumb */
.contact-breadcrumb{
    margin-top: 25px;
    font-size: 14px;
}

.contact-breadcrumb a{
    color: #ff8c00;
    text-decoration: none;
    font-weight: 600;
}

.contact-breadcrumb span{
    color: #e0e0e0;
    margin: 0 6px;
}

/* Responsive */
@media(max-width: 768px){
    .contact-hero-bg{
        padding: 110px 0 80px;
    }

    .contact-hero-content h1{
        font-size: 36px;
    }
}

/* ===== CONTACT X-CARDS ===== */

.contact-xcards{
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(255,140,0,0.18), transparent 40%),
        radial-gradient(circle at bottom right, rgba(120,60,200,0.18), transparent 45%),
        linear-gradient(135deg, #f7f8fd, #ffffff);
    font-family: "Segoe UI", sans-serif;
}

.xcards-grid{
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* Card */
.xcard{
    position: relative;
    padding: 45px 30px;
    border-radius: 22px;
    text-align: center;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    transition: 0.35s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

/* Hover */
.xcard:hover{
    transform: translateY(-12px);
    box-shadow: 0 30px 65px rgba(0,0,0,0.2);
}

/* Icon */
.xicon{
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Individual gradients */
.xcard.phone .xicon{
    background: linear-gradient(135deg,#ff8c00,#ff6a00);
}
.xcard.email .xicon{
    background: linear-gradient(135deg,#4a148c,#7b1fa2);
}
.xcard.address .xicon{
    background: linear-gradient(135deg,#00897b,#26a69a);
}

/* Text */
.xcard h4{
    font-size: 20px;
    font-weight: 800;
    color: #2b2d5b;
    margin-bottom: 8px;
}

.xcard p{
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
}

.xcard span{
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 900px){
    .xcards-grid{
        grid-template-columns: 1fr;
    }
}

/* ===== IMAGE + FORM SECTION ===== */

.image-form-section{
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(255,140,0,0.18), transparent 40%),
        radial-gradient(circle at bottom right, rgba(120,60,200,0.18), transparent 45%),
        linear-gradient(135deg, #f7f8fd, #ffffff);
    font-family: "Segoe UI", sans-serif;
}

/* Wrapper */
.image-form-wrapper{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE SIDE */
.image-side img{
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* FORM SIDE */
.form-side{
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.form-side h2{
    font-size: 34px;
    font-weight: 900;
    color: #2b2d5b;
    margin-bottom: 10px;
}

.form-side p{
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

/* FORM */
.contact-form .form-group{
    margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width: 100%;
    padding: 13px 14px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.15);
    outline: none;
    font-size: 14px;
}

.contact-form textarea{
    resize: none;
}

/* Button */
.form-btn{
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg,#ff8c00,#ff6a00);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.form-btn:hover{
    background: linear-gradient(135deg,#4a148c,#7b1fa2);
}

/* Responsive */
@media(max-width: 992px){
    .image-form-wrapper{
        grid-template-columns: 1fr;
    }

    .form-side{
        padding: 35px 25px;
    }

    .form-side h2{
        font-size: 28px;
    }
}

/* ===== FULL WIDTH GOOGLE MAP ===== */

.map-fullwidth{
    width: 100%;
    height: 450px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.map-fullwidth iframe{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Mobile height */
@media(max-width: 768px){
    .map-fullwidth{
        height: 320px;
    }
}

/* ===============================
   PREMIUM VISION & MISSION STYLE
================================ */

.vm-premium-section {
    padding: 90px 0;
    background: #f7f8fc;
}

.vm-heading span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff6a00;
}

.vm-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1f2b3a;
    margin-top: 10px;
}

.vm-heading p {
    max-width: 650px;
    margin: 15px auto 50px;
    color: #555;
}

/* Card Base */
.vm-premium-card {
    position: relative;
    height: 100%;
    padding: 55px 45px;
    border-radius: 22px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transition: all 0.45s ease;
}

/* Glow effect */
.vm-premium-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(255,255,255,0.25),
        transparent 60%
    );
}

/* Hover */
.vm-premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 45px 120px rgba(0, 0, 0, 0.25);
}

/* Icon */
.vm-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 30px;
}

/* Text */
.vm-premium-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
}

.vm-premium-card p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Violet Gradient */
.vision-gradient {
    background: linear-gradient(
        135deg,
        #b811cb,
        #ad58ea,
        #a651b7
    );
}

/* Orange Gradient */
.mission-gradient {
    background: linear-gradient(
        135deg,
        #ff6a00,
        #ff8c42,
        #ff3d00
    );
}

/* ===============================
   ABOUT US IMAGE STACK DESIGN
================================ */

.about-stack-section {
    padding: 100px 0;
    background: linear-gradient(120deg, #f6f8ff, #ffffff);
}

/* IMAGE STACK */
.about-image-stack {
    position: relative;
    display: flex;
    gap: 20px;
}

/* BIG IMAGE */
.big-image {
    flex: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.big-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

/* SMALL IMAGES */
.small-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    transition: all 0.4s ease;
}

.small-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.small-img:hover {
    transform: translateY(-6px);
}

/* CONTENT */
.about-stack-content .section-tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff6a00;
    margin-bottom: 10px;
    display: inline-block;
}

.about-stack-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1f2b3a;
    margin-bottom: 20px;
}

.about-stack-content h2 span {
    display: block;
    color: #6a11cb;
}

.about-stack-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* POINTS */
.about-points {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.about-points li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #1f2b3a;
}

/* CTA BUTTON */
.about-btn {
    display: inline-block;
    padding: 15px 38px;
    border-radius: 40px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6a00, #ff3d00);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.45);
    transition: all 0.35s ease;
}

.about-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(255, 106, 0, 0.65);
    color: #fff;
}

/* ===============================
   DIRECTOR MESSAGE PREMIUM STYLE
================================ */

.director-section {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        #0f2027,
        #203a43,
        #2c5364
    );
}

/* IMAGE CARD */
.director-image-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}

.director-image-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

/* NAME OVERLAY */
.director-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 14px 18px;
    border-radius: 14px;
    color: #fff;
}

.director-name h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.director-name span {
    font-size: 13px;
    opacity: 0.9;
}

/* CONTENT */
.director-content .section-tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff9f43;
    display: inline-block;
    margin-bottom: 12px;
}

.director-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.director-content h2 span {
    display: block;
    color: #ff9f43;
}

.director-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #d7dfe6;
    margin-bottom: 18px;
}

/* SIGNATURE */
.director-sign {
    margin-top: 30px;
    font-size: 15px;
    color: #ffffff;
    opacity: 0.95;
}


/* ===============================
   FAQ SECTION PREMIUM STYLE
================================ */

.faq-section {
    padding: 100px 0;
    background: #f7f9fc;
}

.faq-heading .section-tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff6a00;
}

.faq-heading h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0;
    color: #1f2b3a;
}

.faq-heading p {
    max-width: 650px;
    margin: 0 auto 50px;
    color: #555;
}

/* FAQ WRAPPER */
.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

/* FAQ ITEM */
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 22px 28px;
    font-size: 17px;
    font-weight: 600;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    color: #1f2b3a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ICON */
.faq-question .icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: #555;
    line-height: 1.8;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}


.clients-grid-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.clients-grid-section .section-title h2 {
    color: var(--primary-purple);
}

.clients-grid-section .section-title p {
    max-width: 720px;
    margin: 0 auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 28px;
}

.client-item {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.client-item img {
    max-width: 130px;
    max-height: 70px;
    
    transition: all 0.3s ease;
}

.client-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(140, 13, 109, 0.25);
}

.client-item:hover img {
    filter: grayscale(0%);
}


/* ===== TRUST COUNTER SECTION ===== */
.trust-counter-section{
    padding: 90px 0;
    background: linear-gradient(135deg, #2a0033, #3b0a4f);
    font-family: "Segoe UI", sans-serif;
}

.trust-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1100px;
    margin: auto;
}

/* Card */
.trust-card{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 45px 30px;
    text-align: center;
    border: 1.5px solid rgba(255,140,0,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    transition: 0.35s ease;
}

.trust-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

/* Highlight middle */
.trust-card.highlight{
    border-color: rgba(255,140,0,0.8);
    box-shadow: 0 25px 60px rgba(255,140,0,0.45);
}

/* Icon */
.trust-icon{
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9f2f, #ff6a00);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 32px rgba(255,140,0,0.6);
}

.trust-icon i{
    font-size: 30px;
    color: #fff;
}

/* Number */
.trust-card h2{
    font-size: 46px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
}

/* Text */
.trust-card p{
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

/* Responsive */
@media(max-width: 992px){
    .trust-grid{
        grid-template-columns: 1fr;
    }
}

.vsi-cert-section{
    background: var(--light-bg);
    padding: 40px 0;
}

.vsi-tag{
    display: inline-block;
    padding: 6px 18px;
    background: rgba(140,13,109,0.08);
    color: var(--primary-purple);
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vsi-cert-card{
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border-top: 4px solid var(--primary-purple);
}

.vsi-cert-card.accent{
    border-top-color: var(--accent-orange);
}

.vsi-cert-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.vsi-cert-card img{
    max-width: 200px;
    height: auto;
    margin-bottom: 18px;
    object-fit: contain;
}

.vsi-cert-card h5{
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark-bg);
}

.vsi-cert-card span{
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.engineering-services{
    padding: 90px 0;
    background: #f8f9fb;
}

.eng-tag{
    display: inline-block;
    padding: 6px 20px;
    border-radius: 30px;
    background: rgba(140,13,109,0.08);
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 10px;
}

.eng-card{
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 28px;
    height: 100%;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border-top: 4px solid var(--primary-purple);
}

.eng-card.highlight{
    border-top-color: var(--accent-orange);
}

.eng-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.eng-icon{
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        var(--primary-purple),
        var(--accent-orange)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}

.eng-card h5{
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.eng-card p{
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.machinery-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.machinery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.machine-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-top: 4px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.machine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.machine-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-top);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.machine-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.machine-card ul {
    padding-left: 18px;
    margin: 0;
}

.machine-card ul li {
    margin-bottom: 8px;
    font-size: 14.5px;
    color: #555;
}

.machine-card ul li span {
    color: var(--accent-orange);
    font-weight: 600;
}

.machinery-highlight {
    margin-top: 60px;
    background: var(--dark-bg);
    color: #fff;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
}

.machinery-highlight h4 {
    margin-bottom: 18px;
    font-weight: 700;
}

.highlight-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    font-size: 14.5px;
}
