/* Global Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #18bc9c;
  --text-color: #333;
  --light-gray: #f4f4f4;
  --white: #fff;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  text-decoration: none;
  position: relative;
  /* margin-bottom: 20px; */
  color: #1d3e53;
}

h2:after {
  content: '';
  width: 50px;
  height: 3px;
  background: rgb(226, 226, 226);
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

h3 {
  color: #1d3e53;
  margin-bottom: 15px;
}

.about-text-h3 {
  font-size: 2.3rem;
  color: #1d3e53;
  margin-bottom: 15px;
  text-align: center;

}


/* Section Styling */
.section {
  padding: 50px 15px;
  background-color: #f9f9f9;
}

.container {
  /* max-width: 1100px; */
  margin: auto;
}

/* Hero Section */
.hero {
  background: url('../images/Studio-Project.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.hero .logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.hero .title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Learn More Button Styling */
.learn-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  /* Text color */
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 30px;
  border: 2px solid #fff;
  /* Border color */
  background-color: transparent;
  /* border-radius: 5px; */
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: rgb(209, 208, 183);
  /* Background changes on hover */
  color: #000000;
  /* Text color changes on hover */
  border: 2px solid transparent;
  /* Border color */
}

/* Horizontal Lines */
.learn-more-btn .line {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  /* Line color */
  margin: 0 10px;
  /* Spacing between text and lines */
  transition: all 0.3s ease;
}

.learn-more-btn:hover .line {
  background-color: #000000;
  /* Line color changes on hover */
}

.drop-us-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  color: rgb(209, 208, 183);
  /* Text color */
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 20px;
  padding: 10px 30px;
  border: 2px solid rgb(209, 208, 183);
  /* Border color */
  background-color: transparent;
  /* border-radius: 5px; */
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.drop-us-btn:hover {
  background-color: rgb(209, 208, 183);
  /* Background changes on hover */
  color: #000000;
  /* Text color changes on hover */
  border: 2px solid transparent;
  /* Border color */
}

/* Horizontal Lines */
.drop-us-btn .line {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: rgb(209, 208, 183);
  /* Line color */
  margin: 0 10px;
  /* Spacing between text and lines */
  transition: all 0.3s ease;
}

.drop-us-btn:hover .line {
  background-color: #000000;
  /* Line color changes on hover */
}

.sign-up-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  color: #787767;
  /* Text color */
  text-transform: uppercase;
  text-decoration: none;
  /* margin-top: 20px; */
  padding: 10px 30px;
  border: 2px solid rgb(209, 208, 183);
  /* Border color */
  background-color: transparent;
  /* border-radius: 5px; */
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.sign-up-btn:hover {
  background-color: rgb(209, 208, 183);
  /* Background changes on hover */
  color: #000000;
  /* Text color changes on hover */
  border: 2px solid transparent;
  /* Border color */
}

/* Horizontal Lines */
.sign-up-btn .line {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: rgb(209, 208, 183);
  /* Line color */
  margin: 0 10px;
  /* Spacing between text and lines */
  transition: all 0.3s ease;
}

.sign-up-btn:hover .line {
  background-color: #000000;
  /* Line color changes on hover */
}



/* Section Styling */
.section {
  padding: 15px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primary-color);
}

/* .about-content {
  display: flex;
  gap: 20px;
} */

/* .about-image {
  width: 50%;
  border-radius: 10px;
} */
.about-content {
  display: flex;
  align-items: center;
  gap: 30px;
  /* flex-wrap: wrap; */
}

.about-image {
  position: relative;
  width: 50%;
  overflow: hidden;
  border-radius: 10px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  text-align: center;
  width: 100%;
}

.about-text {
  width: 50%;
}

.about-text p {
  text-align: justify;
  font-size: 1.3rem
}

/* Expertise Section Styling */
.expertise-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  color: #1d3e53;
  text-align: center;
  margin-bottom: 30px;
}

.expertise-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.expertise-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.expertise-text {
  flex: 1;
}

.expertise-text h3 {
  font-size: 1.8rem;
  color: #1d3e53;
  margin-bottom: 20px;
}

.expertise-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

.expertise-list li {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .expertise-content {
    flex-direction: column;
    text-align: center;
  }

  .expertise-image img {
    /* max-width: 80%; */
    margin: 0 auto;
  }

  .expertise-text h3 {
    font-size: 1.5rem;
  }

  .expertise-list {
    padding-left: 0;
  }
}


/* Services */
/* Services Section */
.services {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-image img {
  width: 100%;
  height: 200px;
  /* Consistent height */
  object-fit: cover;
  /* Ensures image fits without distortion */
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1d3e53;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image img {
    height: 150px;
    /* Adjusted for smaller screens */
  }

  .service-card {
    padding: 15px;
  }
}


/* Contact */
/* * Contact Us Section */
*/
/* Contact Us Section Styling */
/* Contact Us Section Styling */
/* General Styling */
/* body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 0;
} */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #f9f9f9, #ffffff);
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  color: #1d3e53;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

/* Contact Content Layout */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

/* Contact Info Section */
.contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #1d3e53;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

.contact-info a {
  color: #1d3e53;
  text-decoration: none;
}

.contact-info .hours h4 {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #1d3e53;
}

.contact-info .hours ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  color: #333;
}

.contact-info .hours ul li {
  margin-bottom: 5px;
}

/* Contact Form Section */
.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.contact-form h3 {
  font-size: 1.8rem;
  color: #1d3e53;
  margin-bottom: 15px;
}

/* Form Group */
.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-input {
  width: 95%;
  margin-bottom: 10px;
  padding: 10px 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  background: transparent;
  color: #333;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: #1d3e53;
  outline: none;
}

.form-label {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1rem;
  color: #aaa;
  background: white;
  padding: 0 5px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label {
  top: -15px;
  font-size: 0.85rem;
  color: #1d3e53;
}

.submit-btn {
  width: 100%;
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background-color: #1d3e53;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #455a64;
}

/* WhatsApp Button */
.whatsapp-wrapper {
  margin-top: 40px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn img {
  width: 20px;
  margin-right: 10px;
}

/* Hover Effect */
.whatsapp-btn:hover {
  background-color: #1ebe57;
  /* Darker green for hover effect */
  transform: translateY(-3px);
  /* Slight upward movement */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  /* Add shadow for depth */
}


/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    max-width: 100%;
  }
}

/* Subscribe Section */
.subscribe-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
}

.map-container {
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.google-map {
  width: 100%;
  height: 100%;
  border: none;
}

.subscribe-container {
  text-align: center;
  padding: 2px;
}

.subscribe-title {
  font-size: 2rem;
  color: #1d3e53;
  margin-bottom: 10px;
  font-weight: 700;
}

.subscribe-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-input {
  width: 300px;
  height: 25px;

  max-width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.subscribe-input:focus {
  border-color: #1d3e53;
}

.subscribe-button {
  background-color: #1d3e53;
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.subscribe-button:hover {
  background-color: #455a64;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 15px;
  }

  .subscribe-input {
    width: 70%;
  }

  .subscribe-button {
    width: 100%;
  }
}


/* Responsive Styling */
@media (max-width: 768px) {
  .hours-toggle {
    width: 40%;
    font-size: 1rem;
  }

  .hours-list {
    text-align: center;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    text-align: center;
  }

  .whatsapp-btn {
    font-size: 1rem;
    width: 50%;
    justify-content: center;
  }

  .contact-btn {
    width: 100%;
  }
}



/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .hero .title {
    font-size: 2rem;
  }

  .about-image,
  .about-text {
    width: 100%;
  }
}