* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
    font-family: sans-serif ;
    font-weight: 400;
    font-style: normal;
}

/* colors variables */

:root {
   --primary-color: #003049;
     --secondary-color: #669bbc;
    --bgc-color: #F5F4F9;
    --text-color: #444444;
    --white-color: #ffffff;
    --offwhite-color: #e6e6e6;
    --black-color: #000000;
    --heading-color: #000000;
    --success: #4CAF50;
    --warning: #FFC107;
    --danger: #F44336;
    --info: #2196F3;
    --action: #8B4513;
    --action-light: #c26f34;
    --border: #ced4da;
    --border-light: #e9ecef;
    --warning-border: #FFC107;
    --error-border: #dc3545;
    --transition: all ease-in-out .3s;
    --placeholder: rgba(128, 128, 128, 0.6);
    --orangered: orangered;
    --baby-pink: #FAE2E2;
    --violet-color: #C6D0F2;
    --parrot-color: #D4EFDF;
    --yellow-light-color: #f6ecc3;
    --cardbg-color: #f3f3f3;
    --light-text:#888888;
    --basic-grey:#d9d9d9;
    --light-purple: #bec7f0;
    --card-br: .5rem;
}

/* buttons css  */

.btn {
    border-radius: .3rem;
    border: none;
    padding-inline: 1rem;
    padding-block: .5rem;
    outline: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all ease-in-out .3s;
}
/* inputs css */
.inp {
    border: 1px solid var(--border);
    padding-inline: 1rem;
    padding-block: .5rem;
    font-size: 1rem;
    border-radius: .3rem;
    color: var(--text-color);

}

.inp:focus {
    outline: 2px solid var(--info);
}

.inp::placeholder {
    color: var(--placeholder);
}

/* BUTTONS */
.btn-success {
    background-color: var(--success);
    color: var(--white-color);
}
.btn-danger {
    background-color: var(--danger);
    color: var(--white-color);
}
.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.section{
    padding-block: 3rem;
    padding-inline: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;

   
}
.section .section-text{
    display: flex;
    flex-direction: column;
    gap: .8rem;
     text-align: center;
}
.section-text h2{
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}
.section-text h4{
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
}
.nested-section{
    padding-block: 3rem;
}
@media only screen and (max-width : 1120px){
  .nested-section{
    padding-block: 1.5rem;
}
}
@media only screen and (max-width : 1120px){
  .nested-section{
    padding-block: 1rem;
}
 
}
/* NAVBAR */

/* nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height: 5rem;
  color: var(--black-color);
  overflow-x: hidden;
}

nav figure {
  margin: 0;
  padding-block: 0;
  display: flex;
  align-items: center;
}

nav figure img {
  height: 3rem;
  width: auto;
}

nav .right-side-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav .right-side-nav a{
    text-decoration: none;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

nav ul li {
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
nav ul li a{
  text-decoration: none;
  color:var(--black-color) ;
}

nav ul li a:hover {
  color: var(--secondary-color);
}

nav .right-side-nav button {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 5px;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

nav .right-side-nav button:hover {
  background-color: var(--secondary-color);
} */

/* FOOTER */
.main-footer{
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 2rem 4rem 1rem;
}
.footer-content{
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin: auto;
}
.footer-column{
    display: flex;
    flex-direction: column;
}
.footer-column h3{
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
.footer-column span {
    display: flex;
    align-items: center;
    position: relative;
}
.footer-column figure img{
     height: 6.5rem;
    width: auto;
    margin-bottom: .5rem;
}
.footer-title{
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: var(--white-color);
}
.footer-title p,
.footer-column p{
    color: var(--white-color);
}
.footer-column ul{
    list-style: none;
    padding: 0;
}
.footer-column ul li{
    margin: 0.5rem 0;
        font-size: .8rem;
        gap: .5rem;
        color: var(--white-color);

}
.footer-column ul li a{
    text-decoration: none;
    color: var(--white-color);
    font-size: .8rem;
}

.footer-column ul li a:hover {
  text-decoration: underline var(--secondary-color);
}
.subscribe-form {
  display: flex;
  border: 1px solid var(--white-color);
  border-radius: 5px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.subscribe-form input {
  flex: 1;
  padding: 0.5rem;
  border: none;
  outline: none;
  background: transparent;
  color: var(--white-color);
}
.subscribe-form button {
  background: transparent;
  border: none;
  padding: 0 1rem;
  color: var(--white-color);
  cursor: pointer;
}
.social-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.2rem;
  margin-top: 1rem;
}
.social-icons i{
    color: var(--white-color);
}
.social-icons i:hover{
    color: var(--secondary-color);
}
.footer-bottom {
  border-top: 1px solid var(--line-color);
  text-align: center;
  padding-top: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}
.footer-bottom p{
  color: var(--white-color);

}

@media only screen and (max-width : 450px){
.main-footer{
    
    padding:1rem;
}
.footer-content{
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    flex-wrap: wrap;
    /* gap: 3rem; */
    margin: auto;
    /* max-width: 85%; */
}
    }

/* Toast-style session message (used inside .toast-wrapper for position) */
.toast-wrapper {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 999999;
    max-width: 90vw;
}
.session-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    max-width: 380px;
    min-width: 280px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: toastSlideIn 0.4s cubic-bezier(0.21, 1.02, 0.73, 1);
    border: none;
}
.session-alert.toast-hide {
    animation: toastSlideOut 0.3s ease forwards;
}
.session-alert-success {
    background: linear-gradient(135deg, #d4efdf 0%, #a8e6cf 100%);
    color: #0d6832;
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.session-alert-error {
    background: linear-gradient(135deg, #fae2e2 0%, #f5c6cb 100%);
    color: #b71c1c;
    box-shadow: 0 12px 40px rgba(244, 67, 54, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.toast-message {
    flex: 1;
    line-height: 1.4;
}
.session-alert-close {
    background: rgba(0, 0, 0, 0.06);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    opacity: 0.9;
    color: inherit;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.session-alert-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
}
.session-alert.hidden {
    display: none !important;
}
.toast-wrapper.hidden {
    display: none !important;
}
@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes toastSlideOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100%); }
}
