.hero-banner{
  background: rgb(153, 130, 119)!important;
    height:270px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}


.hero-overlay{
    width:100%;
    text-align:center;
}

.hero-content{
    color:#ffffff;
    animation:fadeUp 1.2s ease forwards;
    opacity:0;
	margin-top: 50px;
}

.hero-content h1{
    font-size:38px;
    font-weight:800;
    margin-bottom:12px;
    position:relative;
    display:inline-block;
}

.hero-content h1::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    margin:12px auto 0;
    background:linear-gradient(90deg,#FFD700,#f5c518);
    border-radius:5px;
}

.hero-content p{
    font-size:16px;
    margin-bottom:18px;
    letter-spacing:1px;
    opacity:0.9;
}

/* Breadcrumb */
.breadcrumb-box{
    font-size:14px;
}

.breadcrumb-box a{
    color:#ffffff;
    text-decoration:none;
    opacity:0.9;
}

.breadcrumb-box span{
    margin:0 6px;
    opacity:0.8;
}

/* Fade Animation */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@media(max-width:992px){
    .hero-banner{
        min-height:300px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:15px;
    }
}

@media(max-width:576px){
    .hero-banner{
        min-height:250px;
        padding:30px 15px;
    }

    .hero-content h1{
        font-size:24px;
    }

    .hero-content p{
        font-size:14px;
    }

    .breadcrumb-box{
        font-size:12px;
    }
}
/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f1f5f9 0%, #e6edf5 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220,53,69,0.03) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.contact-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,193,7,0.03) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
  animation: floatReverse 18s infinite ease-in-out;
}

@keyframes float {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(-30px,30px) rotate(5deg); }
  66% { transform: translate(20px,-20px) rotate(-3deg); }
}

@keyframes floatReverse {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(30px,-30px) rotate(-5deg); }
  66% { transform: translate(-20px,20px) rotate(3deg); }
}

.contact-wrapper {
  background: white;
  border-radius: 2rem;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

/* Left Side */
.contact-left {
  background: linear-gradient(145deg, #0b2e1f, #1a4a2e);
  color: white;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: pulse 8s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.contact-message {
  position: relative;
  z-index: 3;
  max-width: 450px;
}

.floating-icon {
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 42px;
  color: #f8d35c;
  animation: bounce 3s infinite ease-in-out;
  border: 2px solid rgba(255,255,255,0.2);
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.text-gradient {
  background: linear-gradient(135deg, #f8d35c, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-left .badge {
  background: rgba(255,255,255,0.15) !important;
  backdrop-filter: blur(5px);
  color: white !important;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.contact-left .badge:hover {
  background: rgba(255,255,255,0.25) !important;
  transform: translateY(-3px);
}

/* Decorative Shapes */
.shape {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: -1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -80px;
  animation: rotate 25s linear infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: -60px;
  right: -60px;
  animation: rotate 20s linear infinite reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Right Side */
.contact-right {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(15px);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.contact-form {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.glass-effect {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}

.contact-form h3 {
  color: #1e293b;
  font-size: 28px;
}

.form-floating > .form-control {
  border-radius: 15px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.95);
  padding: 1rem 1.25rem;

  height: 58px;              /* FIXED HEIGHT (IMPORTANT) */
  line-height: 1.25;         /* REQUIRED for alignment */

  transition: all 0.3s ease;
  color: #000;               /* BLACK TEXT */
}

/* Focus state (NO RED) */
.form-floating > .form-control:focus {
  border-color: #1a4a2e;     /* green theme */
  box-shadow: 0 0 0 3px rgba(26,74,46,0.15);
  background: #fff;
  transform: translateY(-2px);
}

/* Label normal */
.form-floating > label {
  padding: 1rem 1.25rem;
  color: #444;
  pointer-events: none;
}

/* Label on focus */
.form-floating > .form-control:focus ~ label {
  color: #1a4a2e;
  opacity: 0.9;
}

/* Textarea fix */
.form-floating textarea.form-control {
  height: 120px !important;
}

/* Remove red validation */
.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #ccc !important;
  box-shadow: none !important;
}
/* Submit Button */
.btn-submit {
  background: linear-gradient(135deg, #0b2e1f, #1a4a2e);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(26,74,46,0.3);
  background: linear-gradient(135deg, #1a4a2e, #0b2e1f);
}

.btn-submit:hover::before {
  width: 300px;
  height: 300px;
}

.btn-submit span {
  position: relative;
  z-index: 2;
}

.btn-submit i {
  transition: transform 0.3s ease;
}

.btn-submit:hover i {
  transform: translateX(5px);
}

/* Responsive Fixes for Mobile */
@media (max-width: 992px) {
  .contact-left, 
  .contact-right {
    height: auto !important; 
    min-height: auto !important;
    padding: 40px 20px !important;
  }
  
  .contact-left .display-5 {
    font-size: 36px;
  }
  
  .contact-form {
    max-width: 100%;
  }
  
  .glass-effect {
    padding: 30px;
  }
  
  /* Ensure right side displays properly */
  .contact-right {
    display: block;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    border-radius: 1.5rem;
  }
  
  .contact-left {
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 40px 25px !important;
  }
  
  .contact-right {
	height: 550px !important;    
	 width: 100% !important;         
	 padding: 15px 20px !important;
   
  }
  
  .contact-left .display-5 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  
  .contact-left .lead {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .floating-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .glass-effect {
    padding: 25px;
  }
  
  .contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  /* Form field adjustments */
  .form-floating {
    margin-bottom: 15px;
  }
  
  .form-floating > .form-control {
    padding: 0.8rem 1rem;
    height: auto;
    font-size: 15px;
  }
  
  .form-floating > label {
    padding: 0.8rem 1rem;
    font-size: 15px;
  }
  
  
  .btn-submit {
    padding: 14px 20px;
    font-size: 16px;
    margin-top: 10px;
  }
  
  
  .contact-left .badge {
    padding: 6px 12px;
    font-size: 12px;
    margin: 5px;
  }
}

@media (max-width: 768px) {
  .contact-right {
    padding: 30px 20px !important;      
  }

  .glass-effect {
    padding: 20px !important;           
  }

  .contact-form h3 {
    font-size: 22px;                    
    margin-bottom: 15px;
  }

  /* Form fields */
  .form-floating {
    margin-bottom: 12px;                
  }

  .form-floating > .form-control {
    padding: 0.6rem 0.75rem !important; 
    font-size: 14px;
    height: auto;
    min-height: 45px;
  }

  .form-floating > label {
    padding: 0.6rem 0.75rem !important;
    font-size: 14px;
  }

  /* Textarea specific */
  .form-floating textarea.form-control {
    min-height: 90px;                    /* reduce textarea height */
  }

  /* Submit button */
  .btn-submit {
    padding: 12px 20px !important;        /* smaller button */
    font-size: 15px;
  }

  .btn-submit i {
    font-size: 14px;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .contact-right {
    padding: 25px 15px !important;       /* minimal outer padding */
  }

  .glass-effect {
    padding: 15px !important;
  }

  .contact-form h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .form-floating {
    margin-bottom: 10px;
  }

  .form-floating > .form-control {
    padding: 0.5rem 0.7rem !important;
    font-size: 13px;
    min-height: 42px;
  }

  .form-floating > label {
    padding: 0.5rem 0.7rem !important;
    font-size: 13px;
  }

  .form-floating textarea.form-control {
    min-height: 80px;
  }

  .btn-submit {
    padding: 10px 16px !important;
    font-size: 14px;
  }

  .btn-submit i {
    font-size: 13px;
    margin-left: 6px;
  }
}

/* Optional: Very small devices (max-width: 400px) */
@media (max-width: 400px) {
  .contact-right {
    padding: 20px 10px !important;
  }

  .glass-effect {
    padding: 12px !important;
  }

  .contact-form h3 {
    font-size: 18px;
  }

  .form-floating > .form-control,
  .form-floating > label {
    padding: 0.4rem 0.6rem !important;
    font-size: 12px;
  }

  .btn-submit {
    padding: 8px 12px !important;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .contact-left,
  .contact-right {
    padding: 40px 20px !important;
  }
  
  .contact-left .display-5 {
    font-size: 26px;
  }
  
  .floating-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .glass-effect {
    padding: 20px;
  }
  
  .contact-form h3 {
    font-size: 22px;
  }
  
  .btn-submit {
    padding: 12px 18px;
    font-size: 15px;
  }
  
  /* Stack badges vertically on very small screens */
  .contact-left .d-flex {
    flex-direction: column;
    gap: 8px;
  }
  
  .contact-left .badge {
    width: 100%;
    text-align: center;
  }
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}
.export-banner{
    overflow: hidden;   
}

.export-banner img{
    width: 100%;
    height: 450px;         
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.export-banner img:hover{
    transform: scale(1.1);   
}
/* Third Design: Elegant Corporate */
.worldwide-trust-section {
  background: #ffffff;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.worldwide-trust-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,100,80,0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.worldwide-trust-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,180,0,0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease;
}

.section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #006b5e;
  background: #e0f2f0;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1e2f2f;
  max-width: 800px;
  margin: 0 auto 15px;
  line-height: 1.3;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #006b5e, #00a896);
  margin: 0 auto;
  border-radius: 2px;
}

/* Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column */
.trust-intro {
  animation: fadeInLeft 0.8s ease;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f5f9f8;
  padding: 8px 20px 8px 8px;
  border-radius: 40px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #006b5e, #00a896);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.badge-text {
  font-weight: 700;
  font-size: 18px;
  color: #1e2f2f;
}

.intro-text {
  font-size: 17px;
  line-height: 1.7;
  color: #4a5a5a;
  margin-bottom: 20px;
}

.intro-text.secondary {
  color: #6b7b7b;
  font-size: 16px;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #1e2f2f;
  margin-bottom: 12px;
  padding: 8px 15px;
  background: #f5f9f8;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0,107,94,0.1);
}

.features-list i {
  color: #00a896;
  font-size: 20px;
}

/* Right Column */
.trust-showcase {
  animation: fadeInRight 0.8s ease;
}

/* Product Tags Cloud */
.product-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}

.product-tag {
  background: #f0f3f5;
  color: #2c3e4e;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.02);
}

.product-tag:hover {
  background: #006b5e;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,107,94,0.2);
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: #fafcfb;
  padding: 25px 15px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0,107,94,0.1);
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: #006b5e;
  box-shadow: 0 20px 35px rgba(0,107,94,0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: #e0f2f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #006b5e;
  font-size: 24px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: #006b5e;
  color: white;
  transform: scale(1.1);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #1e2f2f;
  line-height: 1.2;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  color: #6b7b7b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Action Buttons */
.action-group {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.action-group a {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  flex: 0 1 auto;
}

.btn-primary {
  background: linear-gradient(135deg, #006b5e, #00a896);
  color: white;
  box-shadow: 0 8px 20px rgba(0,107,94,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,107,94,0.4);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

.btn-secondary {
  background: white;
  color: #1e2f2f;
  border: 2px solid #e0eaea;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.btn-secondary:hover {
  border-color: #006b5e;
  color: #006b5e;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.btn-secondary i {
  transition: transform 0.3s ease;
}

.btn-secondary:hover i {
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .stats-grid {
    gap: 15px;
  }
  
  .stat-number {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .worldwide-trust-section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .action-group {
    flex-direction: column;
    align-items: center;
  }
  
  .action-group a {
    width: 100%;
    justify-content: center;
  }
  
  .features-list li {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
  }
  
  .product-cloud {
    gap: 8px;
  }
  
  .product-tag {
    padding: 6px 14px;
    font-size: 13px;
  }
}
/* Global Export Marquee - Premium Design */
.global-export-marquee {
  background: linear-gradient(135deg, #f8fafd 0%, #edf2f7 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Animated background elements */
.global-export-marquee::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220,53,69,0.03) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
  z-index: 0;
}

.global-export-marquee::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,193,7,0.03) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
  animation: floatReverse 18s infinite ease-in-out;
  z-index: 0;
}

@keyframes float {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(-30px,30px) rotate(5deg); }
  66% { transform: translate(20px,-20px) rotate(-3deg); }
}

@keyframes floatReverse {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(30px,-30px) rotate(-5deg); }
  66% { transform: translate(-20px,20px) rotate(3deg); }
}

.container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, #dc3545 0%, #f4a261 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.text-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc3545, #f4a261);
  animation: expandLine 1s ease forwards 0.5s;
}

@keyframes expandLine {
  to { width: 100%; }
}

.section-subtitle {
  font-size: 18px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.7s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Marquee Wrapper */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Country Card */
.country-card {
  min-width: 260px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.country-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(220,53,69,0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.country-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.2);
}

.country-card:hover::before {
  opacity: 1;
}

/* Flag Wrapper */
.flag-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.country-card:hover .flag-wrapper {
  transform: scale(1.05) rotate(5deg);
  border-color: #dc3545;
  box-shadow: 0 15px 35px rgba(220, 53, 69, 0.3);
}

.country-flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Country Name */
.country-name {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.country-card:hover .country-name {
  color: #dc3545;
}

/* Products */
.country-products {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.country-card:hover .country-products {
  color: #1e293b;
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }

  .country-card {
    min-width: 220px;
    padding: 25px 15px;
  }

  .flag-wrapper {
    width: 80px;
    height: 80px;
  }

  .country-name {
    font-size: 20px;
  }

  .country-products {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .global-export-marquee {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .country-card {
    min-width: 190px;
    padding: 20px 12px;
  }

  .flag-wrapper {
    width: 70px;
    height: 70px;
  }

  .country-name {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }

  .country-card {
    min-width: 170px;
    padding: 15px 10px;
  }

  .flag-wrapper {
    width: 60px;
    height: 60px;
  }

  .country-name {
    font-size: 16px;
  }

  .country-products {
    font-size: 13px;
  }
}
/* Product Marquee - Premium Design */
.product-marquee {
  background: linear-gradient(135deg, #f8fafd 0%, #edf2f7 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Animated background elements */
.product-marquee::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220,53,69,0.03) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
  z-index: 0;
}

.product-marquee::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,193,7,0.03) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
  animation: floatReverse 18s infinite ease-in-out;
  z-index: 0;
}

@keyframes float {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(-30px,30px) rotate(5deg); }
  66% { transform: translate(20px,-20px) rotate(-3deg); }
}

@keyframes floatReverse {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(30px,-30px) rotate(-5deg); }
  66% { transform: translate(-20px,20px) rotate(3deg); }
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
  line-height: 1.2;
  display: inline-block;
}

.text-gradient {
  background: linear-gradient(135deg, #dc3545 0%, #f4a261 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.text-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc3545, #f4a261);
  animation: expandLine 1s ease forwards 0.5s;
}

@keyframes expandLine {
  to { width: 100%; }
}

.section-subtitle {
  font-size: 18px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.7s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Marquee Wrapper */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Product Card */
.product-card {
  min-width: 240px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(220,53,69,0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.2);
}

.product-card:hover::before {
  opacity: 1;
}

/* Product Image */
.product-image {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.3);
}

.product-card:hover .product-image {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(220, 53, 69, 0.2);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

/* Product Name */
.product-name {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.product-card:hover .product-name {
  color: #dc3545;
}

/* Hover Icon */
.product-hover-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc3545;
  font-size: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(220,53,69,0.2);
  border: 1px solid rgba(220,53,69,0.1);
  z-index: 3;
}

.product-card:hover .product-hover-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }

  .product-card {
    min-width: 210px;
    padding: 20px 15px;
  }

  .product-image {
    height: 140px;
  }

  .product-name {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .product-marquee {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .product-card {
    min-width: 180px;
    padding: 18px 12px;
  }

  .product-image {
    height: 120px;
  }

  .product-name {
    font-size: 16px;
  }

  .product-hover-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }

  .product-card {
    min-width: 160px;
    padding: 15px 10px;
  }

  .product-image {
    height: 100px;
  }

  .product-name {
    font-size: 15px;
  }
}
.marquee-track {
  animation: scrollMarquee 35s linear infinite;
}


@media (max-width: 768px) {
  .marquee-wrapper:active .marquee-track {
    animation-play-state: paused;
  }
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: white;
}

.whatsapp-btn i {
    font-size: 22px;
}

.export-heading {
    font-size: 40px;
    color: #2E8B57;
    font-weight: 900;
    position: relative;
    margin-bottom: 10px;
    text-align: center;
}

.export-heading::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 5px;
}
