*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ================= NAVBAR STYLES ================= */
/* General Reset */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ================= LOGO ================= */
.logo {
    height: 60px;          /* Increased for clarity */
    width: auto;
    margin-right: 12px;
    object-fit: contain;
}

/* ================= NAVBAR ================= */
.navbar {
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Brand Text (if used later) */
.brand-text {
    font-size: 16px;
    font-weight: 600;
    color: #5a2d0c;
}

/* Navbar Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #c56a1a;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 8px;
}

/* Get Quote Button */
.btn-primary {
    background-color: #c56a1a;
    border: none;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #a85414;
}

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

/* Tablet */
@media (max-width: 991px) {
    .logo {
        height: 70px;
    }

    .hero-title {
        margin-top: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .logo {
        height: 60px;
    }

    .hero-title {
        margin-top: 24px;
    }
}




/* ================= HERO SECTION ================= */

.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fff7f0, #ffffff);
    overflow: hidden;
}

/* Hero Content */
.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.2;
    animation: fadeSlideLeft 1s ease forwards;
}

.hero-title span {
    color: #c56a1a;
}

.hero-subtitle {
    font-size: 18px;
    margin: 20px 0 30px;
    color: #555;
    animation: fadeSlideLeft 1.2s ease forwards;
}

/* Buttons */
.hero-buttons .btn {
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 30px;
}

.btn-outline-secondary {
    border-color: #c56a1a;
    color: #c56a1a;
}

.btn-outline-secondary:hover {
    background-color: #c56a1a;
    color: #fff;
}

/* Hero Image */
.hero-image img {
    max-width: 100%;
    animation: fadeSlideRight 1.2s ease forwards;
}

/* ================= ANIMATIONS ================= */

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }
}


/* ================= ABOUT US SECTION ================= */

.about-section {
    padding: 90px 0;
    background-color: #ffffff;
}

/* Image */
.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    animation: fadeUp 1.2s ease forwards;
}

/* Content */
.about-content {
    padding-left: 40px;
    animation: fadeUp 1.4s ease forwards;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #c56a1a;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.section-title span {
    color: #c56a1a;
}

.about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Button */
.about-content .btn {
    padding: 12px 30px;
    border-radius: 30px;
}

/* ================= ANIMATION ================= */

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

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

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 26px;
    }
}


/* ================= WHY CHOOSE US SECTION ================= */

.why-choose-section {
  padding: 100px 20px;
  background: #f8f9fa;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #c56a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.section-title span {
  color: #c56a1a;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* ================= CARD ================= */

.why-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* ICON */

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #c56a1a, #e89b3c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  color: white;
  font-size: 26px;
}

/* TEXT */

.why-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

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

@media (max-width: 992px) {
  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .why-choose-section {
    padding: 70px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .why-card {
    padding: 25px 20px;
  }
} 


/* ================= OUR PRODUCTS ================= */

.products-section {
    padding: 90px 0;
    background-color: #ffffff;
}

/* Product Card */
.product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    animation: fadeUp 0.8s ease forwards;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

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

/* Product Info */
.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c2c2c;
}

.product-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

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

/* Responsive */
@media (max-width: 575px) {
    .product-card img {
        height: 190px;
    }
}


/* ================= GLOBAL EXPORT SECTION ================= */

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

/* Image Styling */

.export-image-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.export-image-wrapper:hover {
  transform: translateY(-8px);
}

.export-map-img {
  width: 100%;
  border-radius: 30px;
}

/* Content */

.section-tag {
  font-size: 14px;
  font-weight: 600;
  color: #c56a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.section-title span {
  color: #c56a1a;
}

.export-description {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* Stats */

.export-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #c56a1a;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  color: #666;
}

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

@media (max-width: 992px) {
  .section-title {
    font-size: 32px;
  }

  .export-stats {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .global-export-section {
    padding: 70px 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .export-stats {
    flex-direction: column;
    gap: 15px;
  }
}

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

.contact-section {
    padding: 90px 0;
    background-color: #fff7f0;
}

/* Info */
.contact-info {
    animation: fadeLeft 1s ease forwards;
}

.contact-text {
    font-size: 16px;
    color: #555;
    margin: 15px 0 25px;
    line-height: 1.7;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
}

.contact-details i {
    color: #c56a1a;
    margin-right: 10px;
}

/* Form */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    animation: fadeRight 1s ease forwards;
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
}

.contact-form .form-control:focus {
    border-color: #c56a1a;
    box-shadow: none;
}

.contact-form .btn {
    border-radius: 30px;
    padding: 12px 36px;
}

/* Animations */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info {
        text-align: center;
        margin-bottom: 40px;
    }

    .contact-details {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 575px) {
    .contact-form {
        padding: 25px;
    }
} 


/* ================= WHATSAPP MULTI CONTACT ================= */

.whatsapp-container {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    font-family: inherit;
}

/* Main Button */
.whatsapp-main {
    background: #25D366;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-main i {
    font-size: 22px;
}

/* Options */
.whatsapp-options {
    position: absolute;
    bottom: 60px;
    right: 0;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Show on hover */
.whatsapp-container:hover .whatsapp-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-options a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.whatsapp-options a:last-child {
    border-bottom: none;
}

.whatsapp-options a i {
    color: #25D366;
    font-size: 18px;
}

.whatsapp-options a:hover {
    background: #f8f8f8;
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .whatsapp-main span {
        display: none;
    }

    .whatsapp-main {
        padding: 14px;
        border-radius: 50%;
    }
}

/* WhatsApp contact text layout */
.whatsapp-options a div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.whatsapp-options a strong {
    font-size: 14px;
    color: #2c2c2c;
}

.whatsapp-options a span {
    font-size: 13px;
    color: #666;
}


/* ================= FOOTER ================= */

.footer-section {
    background-color: #2c2c2c;
    color: #dcdcdc;
    padding: 70px 0 25px;
}

.footer-brand h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 360px;
}

/* Titles */
.footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.footer-links a {
    color: #dcdcdc;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c56a1a;
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: #c56a1a;
    margin-right: 10px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    margin: 0;
    color: #bdbdbd;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-brand p {
        max-width: 100%;
    }
}











