:root {
  --dark-color: #2B3037;
  --mid-dark-color: #4C5763;
  --color-white: #FFFFFF;
  --color-mid-white: #F5F6F9;
  --font-primary: 'Montserrat', 'Lato', sans-serif;
  --color-orange: #FF6F00;
  --light-color: #d6d6d6; 
  --color-light-yellow: #FFFBE5;
  --color-blue: #6a5df6; 
  --color-light-blue: #4cb3f7; 
  --bg-dark: #003153;
  --bg-mid-dark: #4169E1;
} 

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

body {
  font-family: var(--font-primary);
  background-color: var(--bg-color);
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.btn:hover {
  background: var( --color-light-blue);
  color: var(--color-white);
}
.main-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-blue);
}
.sub-heading {
  font-size: 26px; 
  font-weight: 600; 
  color: var(--color-orange); 
  text-align: center; 
  position: relative;
  display: block;
}
@media (max-width: 1024px) {
    .main-heading  {
        font-size: 32px; 
    }
    .sub-heading {
        font-size: 22px;
    }
}
@media (max-width: 480px){
    .main-heading {
        font-size: 25px;
    }
     .sub-heading {
        font-size: 22px;
    }
}

.pera-text {
    line-height: 1.6;
    font-size: 16px;
    color: var(--dark-color);
}

/* .toast-center {
    top: 19%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    z-index: 9999;
}

.toast-close-button {
    top: 1px !important;
    font-weight: 600 !important;
    font-size: 40px !important;
}

#toast-container > .toast {
    min-width: 510px;  
    max-width: 600px;  
    opacity: 0.95;      
    border-radius: 10px;
    font-size: 20px;
    padding: 24px 42px;
    text-align: center;
    font-weight: 600;
}
@media (max-width: 480px) {
    #toast-container > .toast {
       min-width: 365px !important;  
       font-size: 16px !important;
    }
} */


/* Modal Background */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}
#whatsappModal .modal-content {
  background: var(--color-white);
  margin: 10% auto;
  padding: 20px;
  border-radius: 20px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
}
@media (max-width: 1024px) {
    #whatsappModal .modal-content {
        margin: 15% auto;
    }
}
@media (max-width: 480px) {
    #whatsappModal .modal-content {
        margin: 26% auto;
        max-width: 365px;
    }
}

#whatsappModal .modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: var(--bg-mid-dark);
}

.closeBtn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

.errMsg{
    font-weight: bold;
    color: var(--color-orange);
    font-size: 20px;
}
@media (max-width: 480px) {
     .errMsg{
    font-size: 14px;
}
}
