
:root {

    /* Colors */
    --white: hsla(0, 0%, 100%, 1);
    --white_a3: hsla(0, 0%, 100%, 0.03);
    --white_a8: hsla(0, 0%, 100%, 0.08);
    --white_a12: hsla(0, 0%, 100%, 0.12);
    --charcoal: hsla(218, 22%, 26%, 1);
    --raisin-black: hsla(216, 14%, 14%, 1);
    --light-gray: hsla(0, 0%, 79%, 1);

    /* Typography */
    --ff-manrope: 'Manrope', sans-serif;

    --fs-1: calc(2.7rem + 1.38vw);
    --fs-2: calc(2.6rem + .66vw);
    --fs-3: 2.2rem;
    --fs-4: 1.9rem;
    --fs-5: 1.8rem;
    --fs-6: 1.7rem;
    --fs-7: 1.5rem;
    --fs-8: 1.4rem;

    --fw-700: 700;

    --shadow-1: 0 0 20px hsla(216, 14%, 14%, 0.05);
    /* Spacing */
    --section-padding: 90px;

    /* Transition */
    --transition-1: 0.25s ease;
    --transition-2: 0.3s ease-in-out;

}




/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
span,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

button {
  background: none;
  border: none;
  font: inherit;
}

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-family: var(--ff-manrope);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--raisin-black);
}

body.nav-active { overflow: hidden; }

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 16px; }

.social-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  font-size: 2rem;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus-visible) { transform: translateY(-3px); color: var(--white); }

.section { padding-block: var(--section-padding); }

.has-bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
}

.h1,
.h2,
.h3,
.h4,
.h5 {
  color: var(--charcoal);
  font-weight: var(--fw-700);
  line-height: 1.3;
}

.h1 { font-size: var(--fs-1); }

.h2 { font-size: var(--fs-2); }

.h3 { font-size: var(--fs-3); }

.h4 { font-size: var(--fs-4); }

.h5 { font-size: var(--fs-6); }

.btn {
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  border: 2px solid var(--white);
  max-width: max-content;
  padding: 12px 28px;
  transition: var(--transition-1);
  will-change: transform;
}

.btn:is(:hover, :focus-visible,) { transform: translateY(-4px); background-color: var(--raisin-black);  }
.btn-primary,
.btn-outline:is(:hover, :focus-visible) {
  background-color: var(--white);
  color: var(--charcoal);
}
.btn-primary:is(:hover, :focus-visible, :active) {
  border: 2px solid var(--raisin-black);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  font-size: var(--fs-8);
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: var(--fw-700);
  margin-block-end: 16px;
}

.grid-list {
  display: grid;
  gap: 25px;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 20px;
  box-shadow: var(--shadow-1);
  z-index: 4;
}

.header.active {
  background-color: var(--white);
  position: fixed;
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.logo-light {
  filter: brightness(100);
}
.logo-dark {
  filter: brightness(0);
}
.log{
  filter: brightness(100);
}


.header.active .logo-light,
.header .logo-dark { display: none; }

.header .logo-light,
.header.active .logo-dark { display: block; }

.nav-open-btn {
  font-size: 3.5rem;
  color: var(--white);
}

.header.active .nav-open-btn { color: var(--charcoal); }

.navbar {
  position: fixed;
  top: 0;
  left: -300px;
  background-color: var(--raisin-black);
  color: var(--white);
  max-width: 300px;
  width: 100%;
  height: 100vh;
  padding: 30px;
  align-items: start;
  padding-block-end: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 2;
  visibility: hidden;
  transition: var(--transition-2);
}

.navbar.active {
  visibility: visible;
  transform: translateX(300px);
}
.navbar.active ,.navbar-link:is(:hover, :focus-visible) { color: var(--white); }

.navbar-top {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.nav-close-btn {
  background-color: var(--white_a8);
  color: var(--white);
  font-size: 2rem;
  padding: 6px;
  outline: none;
  transition: var(--transition-1);
}

.nav-close-btn ion-icon { --ionicon-stroke-width: 50px; }

.nav-close-btn:is(:hover, :focus-visible) { background-color: var(--white_a12); outline: none; }

.navbar-list { margin-block-end: auto; }

.navbar-link {
  font-weight: var(--fw-700);
  padding-block: 6px;
}

.contact-link { transition: var(--transition-1); }

.contact-link:is(:hover, :focus-visible) { color: var(--white); }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--raisin-black);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-1);
}

.overlay.active {
  pointer-events: all;
  opacity: 0.8;
}

/* 
    Hero
*/
/* CSS for desktop screens */
@media (min-width: 769px) {
  .carousel {
    max-height: 100vh;
    overflow: hidden; 
    position: relative;
  }
  
  .carousel-inner .carousel-item {
    transition: transform 1.5s ease; /* Increase the duration to 1.5 seconds for a slower slide */
  }

  /* Position the hero-content on top of the carousel */
  .hero-container {
    display: flex;
    position: relative;
  }

  .hero-content {
    flex: 1;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-title {
    color: var(--white);
    font-size: 8rem;
    text-align: center; /* Center-align the text */
  }

  .hero-text {
    font-size: var(--fs-5);
    color: var(--white);
    text-align: center;
    margin-block: 24px 36px;
  }

  .btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  @keyframes slow-zoom {
    0% {
      transform: scale(1); 
    }
    50% {
      transform: scale(1.1); 
    }
    100% {
      transform: scale(1.1); 
    }
  }

  .carousel-item img {
    animation: slow-zoom 45s linear; 
    animation-fill-mode: forwards; 
  }
}
/* CSS for mobile screens */
@media (max-width: 768px) {
  .carousel {
    max-height: 60vh; 
  }

  
  .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .hero-content {
    padding: 20px;
    background: var(--raisin-black);
    box-shadow: 0px 40px 40px -40px var(--raisin-black), 0px -40px 40px -40px var(--raisin-black); /* Longer smudge-like shadow on upper and lower sides */
    color: var(--white);
    text-align: center;
  }

  .hero-title {
    font-size: 4rem; 
    color: white;
  }

  .hero-text {
    font-size: var(--fs-5);
    margin: 24px 0; 
  }

  .btn-wrapper {
    flex-direction: column; 
    gap: 12px;
  }
  .carousel-inner .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); 
  }
}

  /*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .container {
  display: grid;
  gap: 50px;
}
.image-about {
  position: relative;
  z-index: 1; 
  box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.1), 15px 15px 25px rgba(0, 0, 0, 0.1); 
  margin-top: 30px;
}


.image-about::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%); 
  top: 0;
  left: 0;
  z-index: -1; /* Place the shadow layer below the image */
}


.about .section-title { margin-block-end: 35px; }

.accordion-card .card-title { padding-block-end: 20px; }

.accordion-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion-btn ion-icon {
  font-size: 1.5rem;
  color: var(--raisin-black);
  transition: var(--transition-1);
}

.accordion-card.expanded .accordion-btn ion-icon {
  transform: rotate(0.5turn);
}

.accordion-btn .span { transition: var(--transition-1); }

.accordion-content {
  padding-inline-start: 24px;
  max-height: 0;
  overflow: hidden;
}
.accordion-btn:focus {
  outline: none;
}
.accordion-card.expanded .accordion-content {
  max-height: max-content;
  padding-block-end: 20px;
}
 /*-----------------------------------*\
  #Portfolio
\*-----------------------------------*/
/* Updated CSS for the Portfolio section */
.portfolio img {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
  transition: transform 1300ms;
}

.portfolio ul {
  list-style: none;
  margin: 0;
  padding: 0; /* Remove padding */
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, 1fr); /* Three columns */
  grid-template-rows: repeat(3, 1fr); /* Two rows */
  max-width: 100%;
  justify-content: center; /* Center the grid */
}
.portfolio figure {
	margin: 0;
	position: relative;
	overflow: hidden;
}

.portfolio figure::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200%;
	height: 200%;
	background: rgba(0, 0, 0, 0.5);
	transform-origin: center;
	opacity: 0;
	transform: scale(2);
	transition: opacity 300ms;
}
figcaption {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	place-items: center;
	text-align: center;
	padding: 1rem;
	color: white;
	font-size: var(--fs-2);
	z-index: 1;
	opacity: 0;
	transition: opacity 600ms, transform 600ms;
}

.consultation-button-container {
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.consultation-btn {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.consultation-btn:hover {
  background: linear-gradient(135deg, #404040, #2c2c2c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.consultation-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.consultation-btn ion-icon {
  font-size: 20px;
}

.portfolio a:is(:hover, :focus) figure::after {
	opacity: 1;
}
.portfolio a:is(:hover, :focus) figcaption {
	opacity: 1;
	transition: opacity 600ms;
}
@media screen and (max-width: 768px) {
  .portfolio ul {
    grid-template-columns: 1fr; 
    grid-template-rows: auto; 
  }

   .consultation-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: no-preference) {
	.portfolio figcaption {
		transform: translate3d(0, 2rem, 0);
	}
	
	.portfolio figure::after {
		border-radius: 50%;
		opacity: 1;
		transform: scale(0);
		transition: transform 900ms;
	}
	
	.portfolio a:is(:hover, :focus) figure::after {
		transform: scale(2.5);
	}

	.portfolio a:is(:hover, :focus) figcaption {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		transition: opacity 600ms 400ms, transform 600ms 400ms;
	}

	.portfolio a:is(:hover, :focus) img {
		transform: scale(1.2);
	}
}


 /*-----------------------------------*\
  #Contact
\*-----------------------------------*/

.contact-box {
  max-width: 900px;
  margin: 0 auto;
  height: auto;
  margin-top: 100px;
  background: #f5f5f5;
  color: var(--raisin-black);
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  border: 2px solid var(--raisin-black);
}

.contact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-header {
  background: var(--raisin-black);
  text-align: center;
  padding: 20px;
  color: white;
}


.contact-header h2 {
  margin: 0;
  font-size: var(--fs-2);
}
.contact-info {
  font-size: var(--fs-5);
  padding: 15px;
  display: flex;
  flex-direction: column; 
}
.contact-item {
  display: flex; 
  align-items: center; 
  margin-bottom: 10px; 
}

.contact-item ion-icon {
  font-size: 30px; 
  width: 50px; 
  text-align: center; 
}

.contact-text {
  flex: 1;
  font-size: var(--fs-5);
}
.contact-text a:is(:hover, :focus-visible) { color: var(--raisin-black);}

.contact-box h1 {
  font-size: 30px; 
  margin-bottom: 20px;
}

.office-hours {
  font-size: var(--fs-5);
  padding: 15px;
}

.google-map {
  flex: 1;
  max-height: 505px; 
  border-left: 2px solid var(--raisin-black);
}
.office-hours p {
  font-size: var(--fs-5); 
  margin-bottom: 1px; 
}

@media (max-width: 998px) {
  .contact-box {
    flex-direction: column; 
    width: 100%;
    margin-top: 50px;;
    margin-bottom: 50px;
  }
  .google-map {
    flex: 1;
    border-top: 2px solid var(--raisin-black);
    border-left: none;
  }
  .section{
    padding: 0px;
  }
  .contact-info{
    margin-top: 15px;
    padding: 0px;
  }
  .office-hours{
    padding: 0px;
    margin-top: 15px;
  }

  .contact-info, .office-hours {
    padding: 15px; 
  }

}

 /*-----------------------------------*\
  #Contact Form
\*-----------------------------------*/


.contact-form-container {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.contact-form-container > * {
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 4.5rem;
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 1.4rem;
    font-weight: 400;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: #e74c3c;
    font-size: 1.5rem;
}

.optional {
    color: #999;
    font-size: 1.1rem;
    font-weight: 400;
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea,
#budget-select {
    padding: 15px;
    border: 2px solid #e8ecf4;
    border-radius: 12px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
#budget-select:focus {
    outline: none;
    border-color: #9b9b9b;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover,
#budget-select:hover {
    border-color: #c7c8d1;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.radio-group {
    display: flex;
    gap: 25px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e8ecf4;
    transition: all 0.3s ease;
    cursor: pointer;
}

.radio-item:hover {
    border-color: #a7a8af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.radio-item input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #7c7c7c;
    cursor: pointer;
}

.radio-item label {
    margin: 0;
    cursor: pointer;
    font-size: 1.5rem;
}

.budget-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.budget-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e8ecf4;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.budget-item:hover {
    border-color: #a7a8af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.budget-item input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #bec4db;
    cursor: pointer;
}

.budget-item label {
    margin: 0;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 500;
}


#budget-select {
        display: none;
        padding: 10px;
        height: 50px;
        color: #333;
}


.budget-item:has(input[type="radio"]:checked) {
    border-color: #b4b4b4;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 3px dashed #c5cae9;
    border-radius: 15px;
    text-align: center;
    color: #a4a8bd;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff8f0 100%);
    min-height: 120px;
    font-weight: 500;
}

.file-upload:hover .file-upload-label {
    border-color: #a9abb4;
    background: linear-gradient(135deg, #e3f2fd 0%, #fff3e0 100%);
    transform: scale(1.02);
}

.file-info {
    margin-top: 8px;
    font-size: 1.1rem;
    color: #888;
    font-style: italic;
}

.submit-btn {
    grid-column: 1 / -1;
    justify-self: center;
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
    color: white;
    border: none;
    padding: 20px 55px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 35px;
    box-shadow: 0 10px 30px rgba(73, 80, 87, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(73, 80, 87, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .submit-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }

     .budget-group {
                display: none;
            }

     #budget-select {
        display: block;
       }
}

@media (max-width: 480px) {
    .form-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-form-container {
        padding: 25px 15px;
        margin-bottom: 40px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 1.1rem;
    }

    .form-group label {
        font-size: 1.1rem;
    }

    .submit-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}
/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

  .footer {
  background-color: var(--raisin-black);
  padding-block: 60px 100px;
  color: var(--white);
}

.footer-brand .footer-text { margin-block: 20px; color: var(--white); }

.footer .social-list { color: var(--white); }

.footer-list-title {
  color: var(--white);
  margin-block-end: 16px;
}
.footer-list-title:is(:hover, :focus-visible) { color: var(---light-gray); }

.footer-link {
  padding-block: 6px;
  color: var(--white);
}


/* Appointment Popup Styles */
#appointment-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.appointment-popup {
    background: white;
    border-radius: 12px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.popup-header {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #666;
}

.popup-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.popup-content {
    padding: 30px 25px;
    text-align: center;
}

.popup-content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-yes, .btn-no {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-yes {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: white;
    border: 2px solid #666;
}

.btn-yes:hover {
    background: linear-gradient(135deg, #404040, #2c2c2c);
    border-color: #888;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-no {
    background: white;
    color: #666;
    border: 2px solid #ddd;
}

.btn-no:hover {
    background: #f8f9fa;
    border-color: #999;
    color: #333;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .appointment-popup {
        width: 95%;
        margin: 10px;
    }
    
    .popup-header {
        padding: 15px 20px;
    }
    
    .popup-header h3 {
        font-size: 20px;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-content p {
        font-size: 16px;
    }
    
    .popup-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-yes, .btn-no {
        width: 100%;
        padding: 15px;
    }
}
/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

 @media (min-width: 575px) {

    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 540px;
      width: 100%;
      margin-inline: auto;
    }
   
  
  }
  
  @media (min-width: 769px) and (max-width: 998px) {
    .hero-title{
      font-size: 6.2rem;
    }
    .hero-text { padding-left:70px; padding-right: 70px; }
  }
  
  /**
   * responsive for large than 992px screen
   */
  
  @media (min-width: 992px) {
  
    /**
     * REUSED STYLE
     */
     :root {
  
      /**
       * spacing
       */
  
      --section-padding: 40px;
  
    }
    /**
     * REUSED STYLE
     */
  
    .hero-text { --fs-5: 2rem; }
  
  
    /**
     * HEADER
     */
  
    .header .btn {
      display: block;
      margin-inline-start: auto;
      padding: 8px 20px;
    }
  
    .header.active .btn {
      background-color: var(--light-gray);
      border-color: var(--light-gray);
      color: var(--white);
    }
  
  
  
    /**
     * HERO
     */
  
    .hero-content {
      max-width: 85%;
      margin-inline: auto;
    }
  
    .hero-text { --fs-5: 2rem; }

     /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    padding: 100px;
  }
  
    .container { max-width: 1060px; }
  
  
  
    /**
     * HEADER
     */
  
    .nav-open-btn,
    .navbar > *:not(.navbar-list),
    .overlay { display: none; }
  
    .navbar,
    .navbar.active {
      all: unset;
      display: block;
      margin-inline: auto 24px;
    }
  
    .navbar-list {
      display: flex;
      gap: 30px;
    }
  
    .navbar-link {
      color: var(--white);
      transition: var(--transition-1);
    }
  
    .navbar-link:is(:hover, :focus-visible) { color: var(--white); }
  
    .header.active .navbar-link { color: var(--charcoal); }
  
    .header.active .navbar-link:is(:hover, :focus-visible) {
      opacity: 1;
    }
  
    .header .btn { margin-inline-start: 0; }
  
  
    /**
     * HERO
     */
  
    .hero {
      padding-block-start: calc(var(--section-padding) + 50px);
    }
  
    .hero .container {
      grid-template-columns: 1fr 0.8fr;
      align-items: center;
    }
  
    .hero-content {
      max-width: unset;
      margin-inline: 0;
    }
  
    .btn-wrapper { justify-content: flex-start; }

  
    /**
     * FOOTER
     */
  
    .footer .grid-list { grid-template-columns: repeat(4, 1fr); }
  
  }
  
  
  
  
  
  /**
   * responsive for large than 1200px screen
   */
  
  @media (min-width: 1200px) {
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 1140px; }
  
  
  
    /**
     * HERO
     */
  
    .hero-text { padding-inline-end: 100px; }
  
    /**
     * FOOTER
     */
  
    address.footer-text {
      padding-inline-end: 100px;
      margin-block-end: 16px;
    }
  
  }
  
  
  
  
  
  /**
   * responsive for large than 1400px screen
   */
  
  @media (min-width: 1400px) {
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 1320px; }
  
  }







