
.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:rgb(255, 255, 255);
    animation:fadeUp 1.2s ease forwards;
    opacity:0;
	margin-top: 50px;
}

.hero-content h1{
    font-size:38px;
    font-weight:800;
    margin-bottom:18px!important;
    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-box{
    font-size:14px;
}

.breadcrumb-box a{
    color:#ffffff;
    text-decoration:none;
    opacity:0.9;
}

.breadcrumb-box span{
    margin:0 6px;
    opacity:0.8;
}

@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;              
  line-height: 1.25;         

  transition: all 0.3s ease;
  color: #000;               
}

.form-floating > .form-control:focus {
  border-color: #1a4a2e;  
  box-shadow: 0 0 0 3px rgba(26,74,46,0.15);
  background: #fff;
  transform: translateY(-2px);
}

.form-floating > label {
  padding: 1rem 1.25rem;
  color: #444;
  pointer-events: none;
}

.form-floating > .form-control:focus ~ label {
  color: #1a4a2e;
  opacity: 0.9;
}

.form-floating textarea.form-control {
  height: 120px !important;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #ccc !important;
  box-shadow: none !important;
}

.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);
}

@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;
  }
 
  .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;
  }

  .form-floating textarea.form-control {
    min-height: 90px;                    
  }

  .btn-submit {
    padding: 12px 20px !important;        
    font-size: 15px;
  }

  .btn-submit i {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .contact-right {
    padding: 25px 15px !important;       
  }

  .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;
  }
}

@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;
  }
 
  .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;   
}

.section-title {
    font-size: 55px;
    font-weight: 700;
    text-align: center;
    color: rgb(64, 0, 0);
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease forwards;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: rgb(64, 0, 0);
    margin: 15px auto 0 auto;
    border-radius: 2px;
    opacity: 0;
    animation: fadeInDivider 1s 0.5s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDivider {
    0% { opacity: 0; width: 0; }
    100% { opacity: 1; width: 80px; }
}
.why-us {
  background: linear-gradient(135deg, #f8fafd 0%, #f1f5f9 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
  z-index: 0;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.03) 0%, transparent 70%);
  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); }
}

.section-title {
  font-size: 45px;
  font-weight: 800;
  color: rgb(0, 0, 0);
  position: relative;
  z-index: 1;
  animation: fadeInDown 1s ease;
}

.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;
}

.why-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 45px 30px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: fadeInUp 1s ease backwards;
}

.why-card:nth-child(1) { animation-delay: 0.2s; }
.why-card:nth-child(2) { animation-delay: 0.4s; }
.why-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon-wrapper {
  margin-bottom: 25px;
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
 
}

.icon-box i {
  font-size: 40px;
  color: #dc3545;
  transition: all 0.5s ease;
}

.why-card h4 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
  color: rgb(0, 0, 0);
  transition: all 0.3s ease;
}

.why-card p {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

/* Hover Effects */
.why-card:hover {
  transform: translateY(-15px) scale(1.02);
 
  border-color: rgb(128, 0, 0);
}

.why-card:hover .icon-box {
  background: linear-gradient(135deg, rgb(64, 0, 0) 0%, rgb(128, 0, 0) 100%);
  transform: scale(1.1) rotate(5deg);

}
.mb-5 {
  margin-bottom: 3rem;
}

h2 {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  color: rgb(64, 0, 0);
  position: relative;
}

/* underline line */
h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: rgb(0, 0, 0);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}
.why-card:hover .icon-box i {
  color: white;
  transform: scale(1.1);
}

.why-card:hover h4 {
  color: #dc3545;
}

/* Shine effect */
.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: transform 0.8s ease;
  opacity: 0;
}

.why-card:hover .card-shine {
  opacity: 1;
  transform: rotate(30deg) translate(20%, 20%);
}

/* Responsive */
@media (max-width: 992px) {
  .why-us {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .why-card {
    padding: 35px 25px;
  }
  
  .icon-box {
    width: 80px;
    height: 80px;
  }
  
  .icon-box i {
    font-size: 35px;
  }
  
  .why-card h4 {
    font-size: 22px;
  }
  
  .why-card p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 50px 15px;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .why-card {
    padding: 30px 20px;
  }
  
  .icon-box {
    width: 70px;
    height: 70px;
  }
  
  .icon-box i {
    font-size: 30px;
  }
  
  .why-card h4 {
    font-size: 20px;
  }
  
  .why-card p {
    font-size: 15px;
  }
}
/* Mission, Vision, Values Section */
.mv-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafd 0%, #edf2f7 100%);
  padding: 100px 0;
  overflow: hidden;
}

/* Animated background elements */
.mv-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
  z-index: 0;
}

.mv-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.03) 0%, transparent 70%);
  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); }
}

/* Section Title */
.mv-section .section-title {
  font-size: 48px;
  font-weight: 800;
  color: rgb(0, 0, 0);
  position: relative;
  z-index: 1;
  animation: fadeInDown 1s ease;
}

.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;
}

/* Card Styles */
.mv-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 45px 30px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: fadeInUp 1s ease backwards;
}

.mv-card:nth-child(1) { animation-delay: 0.2s; }
.mv-card:nth-child(2) { animation-delay: 0.4s; }
.mv-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon Circle */
.icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #dc3545;
  transition: all 0.5s ease;
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.15);
}

/* Card Text */
.mv-card h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e293b;
  transition: all 0.3s ease;
}

.mv-card p {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

/* Hover Effects */
.mv-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.2);
}

.mv-card:hover .icon-circle {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  transform: rotate(10deg) scale(1.1);
 
}

.mv-card:hover h4 {
  color: #dc3545;
}

/* Shine effect */
.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: transform 0.8s ease;
  opacity: 0;
}

.mv-card:hover .card-shine {
  opacity: 1;
  transform: rotate(30deg) translate(20%, 20%);
}

/* Responsive */
@media (max-width: 992px) {
  .mv-section {
    padding: 70px 0;
  }
  
  .mv-section .section-title {
    font-size: 40px;
  }
  
  .mv-card {
    padding: 35px 25px;
  }
  
  .icon-circle {
    width: 90px;
    height: 90px;
    font-size: 38px;
  }
  
  .mv-card h4 {
    font-size: 24px;
  }
  
  .mv-card p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .mv-section {
    padding: 50px 15px;
  }
  
  .mv-section .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .mv-card {
    padding: 30px 20px;
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 34px;
  }
  
  .mv-card h4 {
    font-size: 22px;
  }
  
  .mv-card p {
    font-size: 15px;
  }
}

.about-hero-section{
    background:#f3f4f2;
}

.tagline{
    background:#dcefe1;
    color:#1e6a3c;
    padding:8px 22px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.main-heading{
    font-size:44px;
    font-weight:800;
    color:#1c4c2b;
    margin-top:20px;
    max-width:950px;
    margin-left:auto;
    margin-right:auto;
}

.image-bg{
    border-radius:25px;
    overflow:hidden;
    border:10px solid #fff;  
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.image-front{
    position:absolute;
    bottom:-50px;
    right:-50px;
    width:75%;
    border-radius:20px;
    overflow:hidden;
    border:8px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);

    transform: translateX(-50px); 
}

.about-card{
    background:#ffffff;
    padding:45px 15px;
    border-radius:25px;
    border:10px solid #fff;  
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.about-card h3{
    font-weight:700;
    color:#1c4c2b;
}

.divider{
    width:70px;
    height:3px;
    background:#c9a227;
    margin:15px 0 25px 0;
}

.about-card p{
    color:#555;
    font-size:15px;
    line-height:1.7;
}

.right-image-wrapper{
    border-radius:25px;
    overflow:hidden;
    border:10px solid #fff;   
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

@media(max-width:992px){

    .main-heading{
        font-size:30px;
    }

    .image-front{
        position:relative;
        bottom:0;
        right:0;
        width:100%;
        margin-top:20px;
    }

    .about-card{
        margin:40px 0;
    }
	
}
@media (max-width: 768px){

    .image-front{
        position:relative;   
        bottom:0;
        right:0;
        width:100%;
        margin-top:20px;
    }

    .image-bg{
        margin-bottom:20px;
    }

}
@media (max-width:768px){

    .image-front{
        display:none;
    }

}
.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;
}
.product-about-section {
  background: linear-gradient(135deg, #f8fafd 0%, #edf2f7 100%);
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}

.product-image-wrapper {
  position: relative;
  display: inline-block;
  animation: floatImage 4s infinite ease-in-out;
}

@keyframes floatImage {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  border: 5px solid white;
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: linear-gradient(135deg, rgb(64, 0, 0), rgb(128, 0, 0));
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 40px;

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.product-info {
  padding-left: 20px;
}

.info-title {
  font-size: 38px;
  font-weight: 800;
  color: rgb(0, 0, 0);
  line-height: 1.2;
  margin-bottom: 10px;
}

.text-gradient {
  background: linear-gradient(135deg, rgb(64, 0, 0) 0%, rgb(128, 0, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-subtitle {
  font-size: 16px;
  color: rgb(0, 0, 0);
  margin-bottom: 35px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.feature-box {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateX(10px);
  background: white;
  box-shadow: 0 15px 30px rgba(220,53,69,0.1);
}

.feature-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #dc3545, #f4a261);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  flex-shrink: 0;
}

.feature-text strong {
  font-size: 16px;
  color: #1e293b;
  display: block;
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 14px;
  color: #475569;
  margin: 0;
}

.formula-badge {
  margin: 30px 0 25px;
}

.formula-badge .badge {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.website-link {
  margin-top: 20px;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1e293b;
  color: white;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(30,41,59,0.2);
}

.btn-visit:hover {
  background: #dc3545;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(220,53,69,0.3);
}

.btn-visit i {
  transition: transform 0.3s ease;
}

.btn-visit:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .info-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .product-info {
    padding-left: 0;
    margin-top: 30px;
  }

  .info-title {
    font-size: 36px;
  }

  .feature-box {
    padding: 12px 15px;
  }
}

@media (max-width: 576px) {
  .info-title {
    font-size: 30px;
  }

  .info-subtitle {
    font-size: 16px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .formula-badge .badge {
    font-size: 16px;
    padding: 10px 25px;
  }

  .btn-visit {
    padding: 12px 25px;
    font-size: 16px;
  }
}