html, body {
    overflow-x: hidden;
    width: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f4;
    color: #333;
}


.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hamburger Animation */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}












/* ===== TOP BAR ===== */

/* ===== TOP BAR CLEAN STRUCTURE ===== */

.top-bar {
    background: #0b1c26;
    color: #ffffff;
    font-size: 13px;
    width: 100%;
}

.top-container {
    max-width: 1200px;
    margin: auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-left span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .top-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .top-left,
    .top-right {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* Gold accent strip (Top Notch effect) */
.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c9a227, #e6b800);
}

.top-container {
    max-width: 1200px;
    margin: auto;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Left section */
.top-left span {
    margin-right: 20px;
}

/* Right section */
.top-right {
    display: flex;
    align-items: center;
}

.social-icon {
    color: #ffffff;
    background: #c9a227;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icon:hover {
    background: #e6b800;
    transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 992px) {

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        height: 100vh;
        width: 260px;
        background: #ffffff;
        flex-direction: column;
        padding: 100px 30px;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }
}/* ============================= */
/* PREMIUM MINING HEADER DESIGN  */
/* ============================= */

.main-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-bottom: 3px solid #c9a227;
}


.nav-link:hover {
    color: #c9a227;
}

/* Header container */
.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 60px;
    transition: 0.4s ease;
}

/* Scroll shrink effect */
.main-header.scrolled {
    background: #FEFEFE;
    padding: 5px 0;
}

.main-header.scrolled .logo img {
    height: 48px;
}

/* Navigation */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* Strong animated underline */
.nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 3px;
    background: #c9a227;
    transition: width 0.4s ease;
}

.nav-link:hover {
    color: #c9a227;
}

.nav-link:hover::before {
    width: 100%;
}

/* Active page indicator */
.nav-link.active {
    color: #c9a227;
}

.nav-link.active::before {
    width: 100%;
}

/* Mobile toggle */


/* Responsive */
@media (max-width: 992px) {

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: #0b1c26;
        flex-direction: column;
        width: 250px;
        padding: 25px;
        display: none;
        gap: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    }

    .nav-links.active {
        display: flex;
        animation: slideIn 0.4s ease forwards;
    }


}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.main-header {
    animation: fadeHeader 0.8s ease forwards;
}

@keyframes fadeHeader {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ================= HERO SECTION ================= */

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(15, 58, 95, 0.85),
        rgba(0, 0, 0, 0.5)
    );
}

/* Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #ffffff;
    max-width: 600px;
    animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-btn {
    background: #c9a227;
    padding: 12px 30px;
    color: #0f3a5f;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #ffffff;
    color: #0f3a5f;
}

/* Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 15px;
    background: rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.hero-nav:hover {
    background: #c9a227;
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background: #ffffff;
    display: inline-block;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
    background: #c9a227;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* ================= VISION SECTION ================= */

.vision-section {
    background: linear-gradient(135deg, #0f3a5f, #0a2c47);
    padding: 100px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.vision-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,162,39,0.15), transparent 70%);
    top: -150px;
    right: -150px;
}

.vision-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Section Heading */
.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: #c9a227;
    margin: 0 auto 40px;
}

/* Vision Box */
.vision-box {
    max-width: 850px;
    margin: 0 auto 80px;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201,162,39,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.4s ease;
}

.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Value Cards */
.value-card {
    background: rgba(255,255,255,0.06);
    padding: 35px 20px;
    border-radius: 8px;
    border: 1px solid rgba(201,162,39,0.3);
    transition: 0.4s ease;
    position: relative;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(201,162,39,0.3);
    border-color: #c9a227;
}

/* Responsive */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 100px 20px;
    background: #f8f9fb;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Image */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Content */
.about-content {
    flex: 1;
}

/* Left aligned heading */
.section-header-left h2 {
    font-size: 36px;
    color: #0f3a5f;
    margin-bottom: 10px;
}

.gold-line-left {
    width: 80px;
    height: 3px;
    background: #c9a227;
    margin-bottom: 30px;
    transition: 0.4s ease;
}

.section-header-left:hover .gold-line-left {
    width: 130px;
}

/* Paragraphs */
.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Button */
.about-btn {
    display: inline-block;
    background: #0f3a5f;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #c9a227;
    color: #0f3a5f;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
}
/* ================= WHY CHOOSE SECTION ================= */

.why-section {
    position: relative;
    background: url('../images/why-bg.jpg') center/cover no-repeat;
    padding: 120px 20px;
    color: #ffffff;
    overflow: hidden;
}

/* Dark overlay for readability */
.why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15,58,95,0.9),
        rgba(0,0,0,0.75)
    );
}

/* Container */
.why-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

/* Left Content */
.why-left {
    flex: 1;
}

.why-left h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.gold-line-left {
    width: 90px;
    height: 3px;
    background: #c9a227;
    margin-bottom: 30px;
}

.why-left p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 500px;
}

/* Right Cards */
.why-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
    border-left: 4px solid #c9a227;
    transition: 0.4s ease;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
}

.why-card:hover {
    transform: translateX(8px);
    background: rgba(255,255,255,0.12);
}

/* Responsive */
@media (max-width: 992px) {
    .why-container {
        flex-direction: column;
    }
}
/* ================= FOOTER ================= */

.footer {
    background: #0f3a5f; /* Brand Blue */
    color: #ffffff;
    padding-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px 60px;
}

/* Logo column */
.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #dcdcdc;
}

/* Headings */
.footer-col h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-line {
    width: 50px;
    height: 3px;
    background: #c9a227;
    margin-bottom: 20px;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #dcdcdc;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #c9a227;
    padding-left: 5px;
}

/* Contact text */
.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #dcdcdc;
}

/* Social icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #c9a227;
    color: #0f3a5f;
    transform: translateY(-5px);
}

/* Bottom bar */
.footer-bottom {
    text-align: center;
    padding: 20px;
    background: #0a2c47;
    font-size: 13px;
    color: #cccccc;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
/* ===== Navigation Base ===== */

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #0f3a5f;
    font-weight: 600;
}

/* ===== Hamburger ===== */

/* ===== HAMBURGER ===== */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #0f3a5f;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== OPEN STATE (X ANIMATION) ===== */

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Show only on tablet/mobile */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
}

/* ===== Responsive ===== */

@media (max-width: 992px) {

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        background: #ffffff;
        flex-direction: column;
        padding: 100px 30px;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15);
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }
}
/* ================= SERVICES HERO ================= */

.services-hero {
    position: relative;
    height: 70vh;
    background: url('../images/services-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15,58,95,0.9),
        rgba(0,0,0,0.75)
    );
}

.services-hero-content {
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.services-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero-content p {
    font-size: 18px;
    line-height: 1.8;
}

/* Responsive */

@media (max-width: 992px) {
    .services-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .services-hero {
        height: 60vh;
    }

    .services-hero-content h1 {
        font-size: 28px;
    }

    .services-hero-content p {
        font-size: 15px;
    }
}
/* ================= SERVICES PAGE ================= */

.services-section {
    padding: 100px 20px;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Section Titles */
.section-title {
    font-size: 36px;
    color: #0f3a5f;
    margin-bottom: 10px;
}

.section-sub {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

.section-sub.strong {
    font-weight: 600;
    color: #0f3a5f;
}

/* Generic Blocks */
.services-block {
    margin-bottom: 100px;
}

/* Grid Layouts */
.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-item {
    background: #f8f9fb;
    padding: 20px;
    border-left: 4px solid #c9a227;
    font-weight: 500;
    transition: 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Gold Divider Under Heading */
.gold-divider {
    width: 90px;
    height: 3px;
    background: #c9a227;
    margin-bottom: 50px;
}

/* Updated Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Product Card */
.product-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    border: 1px solid #eee;
}

/* Image */
.product-image {
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Content */
.product-content {
    padding: 25px;
}

.product-content h3 {
    color: #0f3a5f;
    margin-bottom: 12px;
    font-size: 20px;
}

.product-content p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* Hover Effects */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= ABOUT HERO ================= */

.about-hero {
    position: relative;
    height: 65vh;
    background: url('../images/about-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15,58,95,0.9),
        rgba(0,0,0,0.75)
    );
}

.about-hero-content {
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.8;
}

/* Responsive */

@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .about-hero {
        height: 55vh;
    }

    .about-hero-content h1 {
        font-size: 28px;
    }

    .about-hero-content p {
        font-size: 15px;
    }
}

.product-card h3 {
    margin-bottom: 10px;
    color: #0f3a5f;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #c9a227;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Highlight Block */
.highlight-block {
    background: #f4f8fc;
    padding: 60px;
    border-radius: 10px;
}

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.industry-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fb;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.industry-item:hover {
    background: #0f3a5f;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {

    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .services-grid-4 {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .highlight-block {
        padding: 40px 20px;
    }
}
/* ================= CONTACT HERO ================= */

.contact-hero {
    position: relative;
    height: 60vh;
    background: url('../images/contact-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15,58,95,0.92),
        rgba(0,0,0,0.75)
    );
}

.contact-hero-content {
    position: relative;
    max-width: 750px;
    padding: 0 20px;
}

.contact-hero-content h1 {
    font-size: 46px;
    margin-bottom: 18px;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 18px;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 992px) {
    .contact-hero-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        height: 50vh;
    }

    .contact-hero-content h1 {
        font-size: 26px;
    }

    .contact-hero-content p {
        font-size: 15px;
    }
}

/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 100px 20px;
    background: #f8f9fb;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Left Info */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    color: #0f3a5f;
    margin-bottom: 10px;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: #c9a227;
    margin-bottom: 30px;
}

.contact-info p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 12px;
    font-size: 15px;
}

/* Form Wrapper */
.contact-form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Form */
.contact-form .form-row {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s ease;
}

/* Focus State */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #c9a227;
    box-shadow: 0 0 0 2px rgba(201,162,39,0.2);
}

/* Button */
.contact-btn {
    width: 100%;
    padding: 14px;
    background: #0f3a5f;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 5px;
}

.contact-btn:hover {
    background: #c9a227;
    color: #0f3a5f;
}

/* Success Message */
.form-success {
    margin-top: 15px;
    font-size: 14px;
    color: #0f3a5f;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
}/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #c9a227; /* Gold */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s ease;
    text-decoration: none;
}

/* Hover Effect */
.whatsapp-float:hover {
    background: #25D366; /* WhatsApp Green */
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37,211,102,0.4);
}

/* Pulse Animation */
.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(201,162,39,0.4);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile Adjust */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}
/* ===== HERO LOAD ANIMATION ===== */

.hero-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}