.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-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;              /* 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;
}

.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;
}
/* Certificates Section - Premium Redesign */
.certificates-section {
  background: linear-gradient(135deg, #f8fafd 0%, #edf2f7 100%);
  position: relative;
  font-family: 'Inter', sans-serif;
  padding: 80px 0;
}

/* Animated background elements */
.certificates-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  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;
}

.certificates-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  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: 48px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
}

.text-gradient {
  background: linear-gradient(135deg, #dc3545 0%, rgb(0, 0, 0) 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; }
}

/* Certificate Slider */
.cert-slider {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.cert-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

/* Pause animation on hover */
.cert-slider:hover .cert-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Certificate Images */
.cert-img {
  width: 240px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: white;
  padding: 8px;
}

.cert-img:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 25px 50px rgba(220, 53, 69, 0.2);
  border-color: #dc3545;
}

/* Modal Styles */
.cert-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cert-modal img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid white;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 50px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  line-height: 1;
}

.close-modal:hover {
  color: #dc3545;
  background: white;
  transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-title {
    font-size: 40px;
  }
  
  .cert-img {
    width: 200px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .certificates-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 34px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .cert-img {
    width: 180px;
    height: 135px;
    padding: 5px;
  }
  
  .cert-track {
    gap: 20px;
  }
  
  .close-modal {
    font-size: 40px;
    top: 15px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }
  
  .cert-img {
    width: 150px;
    height: 110px;
  }
}
.text-center.mb-4.fw-bold {
    font-size: 44px;
    color: rgb(0, 64, 0);
    font-weight: 900;
    position: relative;
    margin-bottom: 16px;

   
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease forwards;
}


.text-center.mb-4.fw-bold::after {
    content: "";
    display: block;
    width: 0; 
    height: 4px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 5px;

    animation: expandLine 1s ease forwards;
    animation-delay: 1s; 
}


.text-center.mb-4 + p {
    font-size: 17px;
    color: rgb(64, 64, 0);
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
    margin-top: 12px;

    
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
}

/* Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    to {
        width: 100px;
    }
}

@keyframes fadeIn {
    to {
        opacity: 0.9;
    }
}