* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Playfair Display for all h1/h2 headings */
h1, h2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

body {
    background: #f5f5f0;
    overflow-x: hidden;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* NAVBAR */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    width: 92%;
    margin: auto;
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;

    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);

    padding: 12px 28px;

    border-radius: 60px;

    box-shadow:
        0 8px 32px rgba(0, 0, 0, .10),
        0 1px 0 rgba(255,255,255,0.8) inset;
}

.logo img {
    height: 50px;
}

/* nav-links styled directly — avoid specificity conflict with media queries */

.navbar a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
}

/* =====================
   MENU OVERLAY
===================== */

#menuOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: transparent;
    cursor: pointer;
}

#menuOverlay.active {
    display: block;
}

/* =====================
   FLOATING CALL
===================== */

.float-call {
    position: fixed;
    bottom: 104px;
    right: 30px;
    z-index: 9999;

    width: 62px;
    height: 62px;

    background: #1E90FF;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 28px;
    text-decoration: none;

    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.5);
}

/* Pulse rings */
.float-call::before,
.float-call::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1E90FF;
    opacity: 0.6;
    animation: callPulse 2s ease-out infinite;
}

.float-call::after {
    animation-delay: 0.6s;
    opacity: 0.4;
}

@keyframes callPulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    70%  { transform: scale(1.7); opacity: 0; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* Tooltip */
.call-tooltip {
    position: absolute;
    right: 75px;
    bottom: 10px;

    background: #1a1a1a;
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.6;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: .25s ease;
}

.call-tooltip::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-right: none;
    border-left-color: #1a1a1a;
}

.float-call:hover .call-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* =====================
   FLOATING WHATSAPP
===================== */

.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;

    width: 62px;
    height: 62px;

    background: #25D366;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 32px;
    text-decoration: none;

    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Pulse rings */
.float-whatsapp::before,
.float-whatsapp::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.6;
    animation: waPulse 2s ease-out infinite;
}

.float-whatsapp::after {
    animation-delay: 0.6s;
    opacity: 0.4;
}

@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    70%  { transform: scale(1.7); opacity: 0; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* Tooltip */
.wa-tooltip {
    position: absolute;
    right: 75px;
    bottom: 10px;

    background: #1a1a1a;
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.6;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: .25s ease;
}

.wa-tooltip::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-right: none;
    border-left-color: #1a1a1a;
}

.float-whatsapp:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* =====================
   HAMBURGER
===================== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #09141f;
    border-radius: 3px;
    transition: .3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.btn-nav {
    background: #f4bf2a;
    padding: 12px 25px;
    border-radius: 30px;
    transition: .3s;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 191, 42, 0.4);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    position: relative;

    text-decoration: none;

    color: #09141f;

    font-weight: 600;

    transition: .3s ease;
}

/* Text Color Change */

.nav-links a:hover {
    color: #f4bf2a;
}

/* Animated Underline */

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 3px;

    background: #f4bf2a;

    border-radius: 10px;

    transition: .4s ease;
}

.nav-links a:hover::after {

    width: 100%;
}

/* HERO */

.hero {
    min-height: 100vh;

    background: url("angel-developers-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;

    display: flex;
    align-items: center;

    padding: 120px 8% 80px;
}

/* Hero tag pill */

.hero-tag {
    display: inline-block;
    color: #f4bf2a;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
    background: rgba(244, 191, 42, 0.18);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid rgba(244, 191, 42, 0.35);
}

/* Dark overlay for readability */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(7, 19, 29, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
    color: white;
}

.hero-content h1 {
    font-size: 4.6rem;
    margin: 20px 0;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1 span {
    color: #f4bf2a;
}

.hero-content p {
    font-size: 25px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #f4bf2a;
    color: #09141f;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
}


/* FEATURES */

.features {

    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 60px;

    position: relative;
    z-index: 10;
}

/* CARD */

.feature-card {

    background: white;

    padding: 35px 25px;

    border-radius: 25px;

    text-align: center;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .08);

    transition: .4s ease;
}

/* GOLD TOP BORDER */

.feature-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: #f4bf2a;
}

/* HOVER */

.feature-card:hover {

    transform:
        translateY(-12px);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .15);
}

/* ICON */

.feature-icon {

    width: 75px;
    height: 75px;

    margin: auto;
    margin-bottom: 20px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            #1d6b8c,
            #0c2942);

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;

    font-size: 28px;

    transition: .4s;
}

.feature-card:hover .feature-icon {

    background: #f4bf2a;

    color: #09141f;

    transform:
        rotate(10deg) scale(1.1);
}

/* TEXT */

.feature-card h3 {

    color: #09141f;

    font-size: 24px;

    margin-bottom: 12px;
}

.feature-card p {

    color: #666;

    line-height: 1.7;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .features {
        grid-template-columns: 1fr;
    }
}


/* ======================
   ABOUT SECTION
====================== */

.about-section {
    padding: 150px 8%;
    background: #ffffff;
}

.about-section {
    margin-top: 0;
}

.about-heading {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 80px;
}

.about-heading h2 {
    font-size: 3.5rem;
    margin: 15px 0;
    color: #09141f;
}

.about-heading h2 span {
    color: #1d6b8c;
}

.about-heading p {
    color: #666;
    line-height: 1.8;
}

/* TIMELINE */

.journey-section {
    position: relative;
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
}

.vertical-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;

    width: 3px;
    background: #f4bf2a;
}

.journey-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.number {
    min-width: 60px;
    height: 60px;

    border-radius: 50%;

    background: #f4bf2a;

    color: #09141f;

    font-weight: 700;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 2;
}

.content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #09141f;
}

.content p {
    color: #666;
    line-height: 1.8;
}

/* FOCUS GRID */

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.focus-box {
    text-align: center;

    padding: 40px 20px;

    border-bottom: 4px solid #f4bf2a;

    transition: .3s;
}

.focus-box:hover {
    transform: translateY(-10px);
}

.focus-box span {
    color: #1d6b8c;
    font-weight: 600;
}

.focus-box h4 {
    margin-top: 10px;
    font-size: 22px;
    color: #09141f;
}

@media(max-width:768px) {

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .about-heading h2 {
        font-size: 2.4rem;
    }
}


<!-------------services-------------->
    

.service-list {

    margin-top: 40px;

}

.service-item {

    display: flex;
    gap: 20px;
    margin-bottom: 30px;

}

.service-item span {

    width: 55px;
    height: 55px;

    background: #e4bb4a;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    font-weight: 700;
    font-size: 18px;

}

.service-item h4 {

    margin-bottom: 5px;
    color: #09141f;

}

.focus-card {

    background:
        linear-gradient(135deg,
            #07131d,
            #10273b);

    color: white;

    padding: 40px;
    border-radius: 25px;

}

.focus-card h3 {

    font-size: 40px;
    margin-bottom: 15px;

}

.focus-card p {

    color: #d7d7d7;
    margin-bottom: 35px;

}

.focus-row {

    display: flex;
    justify-content: space-between;

    padding: 20px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, .15);

}

.focus-row strong {

    color: #f4bf2a;

}

/* RESPONSIVE */

@media(max-width:991px) {

    .about-grid {

        grid-template-columns: 1fr;

    }

    .about-header h2 {

        font-size: 3rem;

    }

}

/* SERVICES SECTION */

.services-section {
    padding: 120px 8%;
    background: #fdffd2;
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: #f4bf2a;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
    background: rgba(244,191,42,0.12);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 3.5rem;
    color: #09141f;
    margin: 15px 0;
}

.section-heading h2 span {
    color: #1d6b8c;
}

.section-heading p {
    color: #666;
    line-height: 1.8;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border-top: 5px solid #f4bf2a;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    transition: 0.4s ease;

    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(244, 191, 42, 0.15),
            transparent);

    transition: 0.8s;
}

.service-card:hover::before {
    left: 100%;
}

.service-badge {
    width: 70px;
    height: 70px;

    background: #1d6b8c;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    font-size: 28px;

    margin-bottom: 25px;

    transition: 0.4s;
}

.service-card:hover .service-badge {
    background: #f4bf2a;
    color: #09141f;
    transform: rotate(8deg) scale(1.1);
}

.service-card h3 {
    color: #09141f;
    margin-bottom: 15px;
    font-size: 24px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Responsive */

@media(max-width:992px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2 {
        font-size: 2.8rem;
    }
}

@media(max-width:768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }
}

/* MACHINERY SECTION */

.machinery-section {

    padding: 120px 8%;

    background: linear-gradient(135deg,
            #07131d,
            #10273b);

    color: white;
}

.machinery-heading {

    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;

}

.machinery-heading h2 {

    font-size: 3.5rem;
    margin: 15px 0;

}

.machinery-heading h2 span {

    color: #f4bf2a;

}

.machinery-heading p {

    color: #d9d9d9;
    line-height: 1.8;
    font-size: 18px;

}

.machinery-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

}

.machine-card {

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 20px;

    padding: 35px;

    transition: 0.4s ease;

    text-align: center;

}

.machine-card:hover {

    transform: translateY(-10px);

    border-color: #f4bf2a;

    box-shadow:
        0 15px 35px rgba(244, 191, 42, 0.2);

}

.machine-icon {

    width: 80px;
    height: 80px;

    margin: auto;
    margin-bottom: 25px;

    border-radius: 20px;

    background: #f4bf2a;

    color: #09141f;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

}

.machine-card h3 {

    margin-bottom: 15px;
    font-size: 24px;

}

.machine-card p {

    color: #d8d8d8;
    line-height: 1.8;

}

/* Responsive */

@media(max-width:992px) {

    .machinery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .machinery-heading h2 {
        font-size: 2.8rem;
    }

}

@media(max-width:768px) {

    .machinery-grid {
        grid-template-columns: 1fr;
    }

    .machinery-heading h2 {
        font-size: 2.2rem;
    }

}




/* ==========================
   MISSION & VISION
========================== */

.mission-section {

    padding: 120px 8%;

    background: #fdffd2;
}

.mission-header {

    text-align: center;

    max-width: 850px;

    margin: auto;

    margin-bottom: 80px;
}

.mission-header h2 {

    font-size: 3.5rem;

    color: #09141f;

    margin: 15px 0;
}

.mission-header h2 span {

    color: #1d6b8c;
}

.mission-header p {

    color: #666;

    line-height: 1.9;
}

/* Mission Vision Layout */

.mission-content {

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    gap: 50px;

    align-items: center;

    margin-bottom: 80px;
}

.center-line {

    width: 3px;

    height: 180px;

    background: #f4bf2a;
}

.mission-block {

    position: relative;
}

.mission-block h3 {

    font-size: 32px;

    margin-bottom: 20px;

    color: #09141f;
}

.mission-block h3 i {

    color: #f4bf2a;

    margin-right: 10px;
}

.mission-block p {

    color: #666;

    line-height: 1.9;

    font-size: 17px;
}

/* Values */

.values-section {

    text-align: center;

    max-width: 900px;

    margin: 0 auto 100px;
}

.values-section h3 {

    font-size: 32px;

    margin-bottom: 20px;

    color: #09141f;
}

.values-section h3 i {

    color: #f4bf2a;

    margin-right: 10px;
}

.values-section p {

    color: #666;

    line-height: 1.9;
}

/* Process Flow */

.process-flow {

    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;

    gap: 20px;

    align-items: center;
}

.step {

    text-align: center;
}

.step span {

    display: inline-flex;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: #f4bf2a;

    color: #09141f;

    font-weight: 700;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
}

.step h4 {

    color: #09141f;

    margin-bottom: 10px;
}

.step p {

    color: #666;

    line-height: 1.8;
}

.arrow {

    color: #1d6b8c;

    font-size: 24px;
}

/* Hover */

.step:hover span {

    transform: scale(1.1);

    transition: .3s;
}

.step:hover h4 {

    color: #1d6b8c;
}

/* Responsive */

@media(max-width:992px) {

    .mission-content {

        grid-template-columns: 1fr;
    }

    .center-line {

        width: 100px;
        height: 3px;

        margin: auto;
    }

    .process-flow {

        grid-template-columns: 1fr;
    }

    .arrow {

        display: none;
    }
}


   /* ======================
   FOUNDER SECTION
====================== */

   .founder-section {

       padding: 120px 8%;
       background: #fff;
   }

   .founder-container {

       display: grid;
       grid-template-columns: 1fr 1.2fr;

       gap: 80px;

       align-items: center;
   }

   /* IMAGE */

   .founder-image {

       position: relative;

       display: flex;
       justify-content: center;
       align-items: center;
   }

   /* Rotating Border */

   .founder-image::before {

       content: "";

       position: absolute;

       width: 430px;
       height: 430px;

       border: 3px dashed #f4bf2a;

       border-radius: 30px;

       animation: rotateBorder 15s linear infinite;
   }

   /* Glow Effect */

   .founder-image::after {

       content: "";

       position: absolute;

       width: 500px;
       height: 500px;

       background:
           radial-gradient(rgba(244, 191, 42, .15),
               transparent 70%);

       z-index: 0;
   }

   /* Founder Photo */

   .founder-image img {

       width: 378px;
       height: 600px;
       max-width: 85vw;
       max-height: 85vw;

       object-fit: cover;

       border-radius: 25px;

       border: 8px solid white;

       position: relative;

       z-index: 2;

       box-shadow:
           0 25px 60px rgba(0, 0, 0, .15);

       transition: .5s ease;
   }

   .founder-image:hover img {

       transform: scale(1.05);

       box-shadow:
           0 35px 70px rgba(29, 107, 140, .25);
   }

   @keyframes rotateBorder {

       from {
           transform: rotate(0deg);
       }

       to {
           transform: rotate(360deg);
       }
   }

   /* CONTENT */

   .founder-content h2 {

       font-size: 3.5rem;

       color: #09141f;

       margin: 10px 0;
   }

   .founder-content h2 span {

       color: #1d6b8c;
   }

   .founder-designation {

       color: #f4bf2a;

       font-size: 20px;

       margin-bottom: 25px;

       letter-spacing: 1px;
   }

   .founder-quote {

       background: #f8fafc;

       border-left: 5px solid #f4bf2a;

       padding: 25px;

       border-radius: 15px;

       margin-bottom: 30px;
   }

   .founder-quote i {

       color: #f4bf2a;

       font-size: 24px;

       margin-bottom: 10px;
   }

   .founder-quote p {

       color: #444;

       line-height: 1.8;

       font-style: italic;
   }

   .founder-intro {

       color: #666;

       line-height: 1.9;

       margin-bottom: 20px;

       font-size: 17px;
   }

   /* Highlights */

   .founder-highlights {

       display: flex;

       flex-direction: column;

       gap: 18px;

       margin-top: 30px;
   }

   .highlight-item {

       display: flex;

       align-items: center;

       gap: 15px;

       transition: .3s;
   }

   .highlight-item:hover {

       transform: translateX(8px);
   }

   .highlight-item i {

       width: 50px;
       height: 50px;

       background: #f4bf2a;

       color: #09141f;

       display: flex;
       justify-content: center;
       align-items: center;

       border-radius: 12px;

       transition: .3s;
   }

   .highlight-item:hover i {

       background: #1d6b8c;

       color: white;
   }

   /* Responsive */

   @media(max-width:992px) {

       .founder-container {

           grid-template-columns: 1fr;
       }

       .founder-content {

           text-align: center;
       }

       .founder-content h2 {

           font-size: 2.8rem;
       }
   }

   @media(max-width:600px) {

       .founder-image img {

           width: 183px;
           height: 284px;
       }

       .founder-image::before {

           width: 340px;
           height: 340px;
       }

       .founder-content h2 {

           font-size: 2.2rem;
       }
   }

/* ==========================
   CONTACT SECTION
========================== */

.contact-section {

    padding: 120px 8%;

    background: #fdffd2;
}

.contact-header {

    text-align: center;

    max-width: 850px;

    margin: auto;

    margin-bottom: 70px;
}

.contact-header h2 {

    font-size: 3.5rem;

    color: #09141f;

    margin: 15px 0;
}

.contact-header h2 span {

    color: #1d6b8c;
}

.contact-header p {

    color: #666;

    line-height: 1.9;
}

/* Layout */

.contact-wrapper {

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 40px;
}

/* LEFT INFO */

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 25px;
}

.info-box {

    display: flex;

    gap: 20px;

    padding: 25px;

    background: white;

    border-radius: 25px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;
}

.info-box:hover {

    transform: translateX(10px);
}

.info-icon {

    width: 70px;
    height: 70px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #1d6b8c,
            #0b2941);

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.info-box h3 {

    margin-bottom: 8px;

    color: #09141f;
}

.info-box p {

    color: #666;

    line-height: 1.7;

    word-break: break-word;
}

/* FORM */

.contact-form-box {

    background: white;

    padding: 40px;

    border-radius: 30px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .08);
}

.contact-form-box h3 {

    font-size: 28px;

    margin-bottom: 25px;

    color: #09141f;
}

.input-group {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {

    width: 100%;

    padding: 16px;

    margin-bottom: 18px;

    border: 1px solid #ddd;

    border-radius: 14px;

    outline: none;

    font-size: 15px;
    font-family: 'Poppins', sans-serif;

    transition: .3s;

    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
}

.contact-form-box select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {

    border-color: #f4bf2a;
}

.contact-form-box button {

    width: 100%;

    border: none;

    padding: 18px;

    border-radius: 50px;

    background: #f4bf2a;

    color: #09141f;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}

.contact-form-box button:hover {

    background: #1d6b8c;

    color: white;
}

.contact-form-box button i {

    margin-right: 8px;
}

/* Responsive */

@media(max-width:992px) {

    .contact-wrapper {

        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .contact-header h2 {

        font-size: 2.4rem;
    }

    .input-group {

        grid-template-columns: 1fr;
    }
}

/* ==========================
   FOOTER
========================== */

.footer {

    background: #07131d;

    padding: 30px 8%;

    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;
}

/* Logo */

.footer-logo img {

    width: 75px;

    transition: .3s;
}

.footer-logo img:hover {

    transform: rotate(10deg) scale(1.1);
}

/* Copyright */

.footer p {

    color: #cfcfcf;

    font-size: 15px;
}

/* Back To Top */

.back-to-top {

    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: white;

    font-weight: 500;

    transition: .3s;
}

.back-to-top i {

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #f4bf2a;

    color: #09141f;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;
}

.back-to-top:hover {

    color: #f4bf2a;
}

.back-to-top:hover i {

    transform: translateY(-5px);
}

/* Mobile */

@media(max-width:768px) {

    .footer-content {

        flex-direction: column;

        text-align: center;
    }
}

/* Logo Box */

.footer-logo {

    width: 85px;
    height: 55px;

    background: white;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .15);

    transition: .3s;
}

.footer-logo:hover {

    transform: translateY(-5px);
}

.footer-logo img {

    width: 65px;
    height: auto;

    object-fit: contain;
}


/* =====================================================
   LAPTOP  — 1024px to 1280px
===================================================== */

@media (max-width: 1280px) {

    .navbar { width: 94%; }

    .nav-links { gap: 20px; }

    .hero-content h1 { font-size: 3.8rem; }

    .hero { padding: 110px 8% 80px; }

    .about-heading h2,
    .section-heading h2,
    .machinery-heading h2,
    .mission-header h2,
    .founder-content h2,
    .contact-header h2 { font-size: 2.8rem; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .machinery-grid { grid-template-columns: repeat(2, 1fr); }

    .focus-grid { grid-template-columns: repeat(2, 1fr); }

    .process-flow {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    }
}

@media (max-width: 1100px) {

    .nav-links { gap: 14px; }

    .nav-links a { font-size: 14px; }

    .hero-content h1 { font-size: 3.2rem; }

    .features { grid-template-columns: repeat(2, 1fr); }

    .founder-container { gap: 40px; }

    .founder-image img { width: 320px; height: 320px; }

    .founder-image::before { width: 360px; height: 360px; }
}

/* =====================================================
   TABLET  — up to 900px
===================================================== */

@media (max-width: 900px) {

    /* --- NAVBAR --- */
    header { padding: 10px 0; }

    .navbar {
        width: 94%;
        padding: 12px 18px;
        flex-wrap: nowrap;
        border-radius: 20px;
        gap: 10px;
    }

    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
        z-index: 9999;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 60%;
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        background: white;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 12px 32px rgba(0,0,0,.15);
        z-index: 999;
    }

    .nav-links.open { display: flex; }

    .nav-links li { border-bottom: 1px solid #f0f0f0; }

    .nav-links li:last-child { border-bottom: none; }

    .nav-links a {
        display: block;
        padding: 14px 22px;
        font-size: 15px;
        font-weight: 600;
    }

    .btn-nav {
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* --- HERO --- */
    .hero {
        padding: 110px 5% 60px;
        min-height: 90vh;
        align-items: center;
    }

    .hero-content h1 { font-size: 2.8rem; }

    .hero-content p { font-size: 17px; }

    .hero-tag { font-size: 12px; }

    /* --- FEATURES --- */
    .features {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
        width: 94%;
    }

    /* --- ABOUT --- */
    .about-section { padding: 80px 5%; margin-top: 0; }

    .about-heading h2 { font-size: 2.2rem; }

    .focus-grid { grid-template-columns: repeat(2, 1fr); }

    /* --- SERVICES --- */
    .services-section { padding: 80px 5%; }

    .section-heading h2 { font-size: 2.2rem; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    /* --- MACHINERY --- */
    .machinery-section { padding: 80px 5%; }

    .machinery-grid { grid-template-columns: repeat(2, 1fr); }

    .machinery-heading h2 { font-size: 2.2rem; }

    /* --- MISSION --- */
    .mission-section { padding: 80px 5%; }

    .mission-header h2 { font-size: 2.2rem; }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .center-line { width: 80px; height: 3px; margin: 0 auto; }

    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .arrow { display: none; }

    /* --- FOUNDER --- */
    .founder-section { padding: 80px 5%; }

    .founder-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .founder-content h2 { font-size: 2.2rem; }

    .founder-image img { width: 300px; height: 300px; }

    .founder-image::before { width: 340px; height: 340px; }

    .founder-highlights { align-items: center; }

    /* --- CONTACT --- */
    .contact-section { padding: 80px 5%; }

    .contact-header h2 { font-size: 2.2rem; }

    .contact-wrapper { grid-template-columns: 1fr; }

    /* --- FLOAT CALL --- */
    .float-call { bottom: 90px; right: 20px; width: 56px; height: 56px; font-size: 24px; }
    .call-tooltip { display: none; }

    /* --- FLOAT WA --- */
    .float-whatsapp { bottom: 20px; right: 20px; width: 56px; height: 56px; font-size: 27px; }

    .wa-tooltip { display: none; }

    /* --- FOOTER --- */
    .footer-content { flex-wrap: wrap; gap: 16px; justify-content: center; text-align: center; }
}

/* =====================================================
   MOBILE  — up to 600px
===================================================== */

@media (max-width: 600px) {

    /* NAVBAR */
    .navbar { width: 92%; padding: 10px 14px; }

    .btn-nav { font-size: 12px; padding: 9px 14px; }

    .logo img { height: 40px; }

    /* HERO */
    .hero { padding: 100px 5% 50px; min-height: 100vh; align-items: center; }

    .hero-content { padding-bottom: 0; }

    .hero-content h1 { font-size: 2.2rem; }

    .hero-content p { font-size: 15px; margin-bottom: 24px; }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .btn-primary, .btn-secondary {
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
    }

    .hero-tag { font-size: 11px; letter-spacing: 1px; }

    /* FEATURES */
    .features {
        grid-template-columns: 1fr;
        margin-top: 40px;
        width: 92%;
    }

    .feature-card { padding: 28px 20px; }

    /* ABOUT */
    .about-section { padding: 60px 5%; }

    .about-heading h2 { font-size: 1.9rem; }

    .focus-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

    .focus-box { padding: 24px 12px; }

    .content h3 { font-size: 20px; }

    /* SERVICES */
    .services-section { padding: 60px 5%; }

    .section-heading h2 { font-size: 1.9rem; }

    .services-grid { grid-template-columns: 1fr; gap: 20px; }

    .service-card { padding: 26px 22px; }

    /* MACHINERY */
    .machinery-section { padding: 60px 5%; }

    .machinery-heading h2 { font-size: 1.9rem; }

    .machinery-grid { grid-template-columns: 1fr 1fr; gap: 18px; }

    .machine-card { padding: 24px 16px; }

    /* MISSION */
    .mission-section { padding: 60px 5%; }

    .mission-header h2 { font-size: 1.9rem; }

    .process-flow { grid-template-columns: 1fr; gap: 24px; }

    .mission-block h3 { font-size: 24px; }

    /* FOUNDER */
    .founder-section { padding: 60px 5%; }

    .founder-content h2 { font-size: 2rem; }

    .founder-image img { width: 183px; height: 284px; }

    .founder-image::before { width: 280px; height: 280px; }

    .founder-quote { padding: 18px; }

    .founder-intro { font-size: 15px; }

    /* CONTACT */
    .contact-section { padding: 60px 5%; }

    .contact-header h2 { font-size: 1.9rem; }

    .contact-form-box { padding: 24px 16px; }

    .input-group { grid-template-columns: 1fr; }

    .contact-form-box input,
    .contact-form-box select,
    .contact-form-box textarea { padding: 14px; font-size: 14px; }

    .info-box { padding: 18px 16px; gap: 14px; }

    .info-icon { width: 54px; height: 54px; font-size: 22px; }

    /* NAV DROPDOWN */
    .nav-links { width: 75%; }

    /* FLOAT CALL */
    .float-call { bottom: 82px; right: 16px; width: 52px; height: 52px; font-size: 22px; }

    /* FLOAT WA */
    .float-whatsapp { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 24px; }
}

/* =====================================================
   SMALL MOBILE  — up to 380px
===================================================== */

@media (max-width: 380px) {

    .hero-content h1 { font-size: 1.8rem; }

    .about-heading h2,
    .section-heading h2,
    .machinery-heading h2,
    .mission-header h2,
    .founder-content h2,
    .contact-header h2 { font-size: 1.65rem; }

    .focus-grid,
    .machinery-grid { grid-template-columns: 1fr; }

    .btn-nav { display: none; }
}