/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


h2{
    font-family: 'Aboreto',serif;
font-size: 22px;
}

h2 {
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #cba785;
  overflow-x: hidden;
}

/* Main Navbar Styling */
.main-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 5px 40px;
  z-index: 9999;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  background-color: transparent;
}

.main-navbar.scrolled {
  background-color: #654321; /* Brown color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height:50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-family: 'Italiana', serif;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f1e1d1;
}

.nav-links li a {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Times New Roman', serif;
  padding-bottom: 4px; /* space for underline */
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #cba785; /* your brown color */
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Hero Section */
.my-section {
  min-height: 100vh;
  background: url('images/living-room-by-top-interior-design-website-Decorilla-2048x1148.webp') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white; /* changed to white for better visibility on bg */
  position: relative;
  overflow: hidden;
}

.section-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 4rem;
  font-family: 'Italiana', serif;
  margin-bottom: 2rem;
  color: white;
}

/* Logo Image at Top Left */
.hero-image {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 120px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.05);
}


.round-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #cba785;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  box-shadow: 0 5px 20px rgba(203, 167, 133, 0.4);
}

.round-btn:hover {
  background: #92623a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(203, 167, 133, 0.6);
}

/* How It Works Section */
.how-it-works {
  padding: 80px 40px;
  text-align: center;
  background: #cba785;
}

.section-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Italiana', serif;
  font-weight: 150;
font-size:400%;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 50px;
  max-width: 600px;
font-family: 'Times New Roman', serif;
font-size:150%;
  margin-left: auto;
  margin-right: auto;
}

.process-images {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.process-img {
  width: 40%;
  max-width: 600px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.process-img:hover {
  transform: translateY(-10px);
}

/* Icon Section */
.icon-section {
  padding: 80px 40px;
  background: white;
}

.icon-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
}

.icon-button {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 40px; /* increased from 30px */
  transition: all 0.3s ease;
  color: #b09e6e;
  font-size: 100px; /* increased from 18px */
  border-radius: 25px; /* slightly larger */
  transform: scale(1);
}

.icon-button:hover {
  transform: scale(1.1);
  background: rgba(203, 167, 133, 0.15);
  color: #654321;
}

.material-symbols-outlined {
  font-size: 120px; /* increased from 104px */
}

.label {
  font-size: 16px; /* was 14px */
  font-weight: 500;
}


/* Floating Box */
.floating-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-width: 500px;
  width: 90%;
  animation: popIn 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #333;
}

#popupImage {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 15px;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border: 2px solid #ccc;
  z-index: 999;
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.popup img {
  max-width: 100%;
  height: auto;
}

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


/*SLIDER*/

body {
  margin: 0;
  font-family: sans-serif;
  background: #f0f0f0;
}

.slider {
  position: relative;
  width: 1000px;
  max-width: 100%;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-wrapper img {
  width: 100%;
  flex-shrink: 0;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white; /* Default white background */
  border: none;
  color: black;       /* Text/icon color */
  padding: 20px;
  cursor: pointer;
  font-size: 28px;
  z-index: 1;
  border-radius: 50%; /* Makes it round */
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav:hover{
background:#cba785;
color:white
}


.prev {
  left: 10px;
}

.next {
  right: 10px;
}



/* About Section */
.about-section {

  background-color:white
  padding: 80px 40px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-header h2 {
  font-family: 'Italiana', serif;
  font-size: 3rem;
  color: black;
  margin-bottom: 20px;
margin-top: 20px;
}

.about-header p {
  font-size: 1.2rem;
  color: black;
font-family: 'Times New Roman', serif;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.stat-item {
  background: #f0f0f0;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: #cba785;
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #cba785;
  display: block;
}

.stat-item:hover .stat-number {
  color: white;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  margin-top: 10px;
}

.stat-item:hover .stat-label {
  color: white;
}

.about-story {
  background: #cba785;
  padding: 50px;
  border-radius: 20px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.about-story h3 {
  font-family: 'Italiana', serif;
text-align:center;
  font-size: 2rem;
  color: white;
  margin-bottom: 20px;
}

.about-story p {
  font-size: 1.1rem;
text-align:center;
  line-height: 1.8;
  color: white;
  margin-bottom: 20px;
}

/* Future Goals */

.future-goals {
    text-align: center;
}

.future-goals h3 {
    font-family: 'Italiana', serif;
    font-size: 300%;
    margin-bottom: 3rem;
    margin-top: 3rem;
    color: Black;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #cba785;
}

.goal-item i {
    font-size: 3rem;
    color: #895129;
    margin-bottom: 1rem;
}

.goal-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color:black;
    font-family: 'Aboreto',serif;
}

.goal-item p {
    color: black;
    line-height: 1.6;
    font-family: 'Times New Roman',serif;
}



/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #cba785;
    background: white;
}

.service-icon {
    font-size: 4rem;
    color: #cba785;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: black;
font-family: 'Italiana', serif;
    font-weight: 600;
}

.service-card p {
    color: #black;
font-family: 'Times New Roman', serif;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: black;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #cba785;
    font-weight: bold;
}


/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 80px 40px;
  color: white;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-family: 'Italiana', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #cba785;
}

.contact-methods {
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(203, 167, 133, 0.2);
  transform: translateX(10px);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: #cba785;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.method-info h4 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
}

.method-info p {
  margin: 0;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #cba785;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: #92623a;
  transform: translateY(-3px);
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #cba785;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #cba785;
  background: rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.social-link.facebook {
  background: #3b5998; /* Facebook blue */
}

.social-link.instagram {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, 
    #fdf497 5%, 
    #fd5949 45%, 
    #d6249f 60%, 
    #285AEB 90%);
  color: white;
}



.social-link.linkedin {
  background: #1DA1F2; /* Twitter blue */
}


/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease;
}

.fade-in-up {
  animation: fadeInUp 1s ease;
}

.slide-in-left {
  animation: slideInLeft 1s ease;
}

.slide-in-right {
  animation: slideInRight 1s ease;
}

.fade-in-left {
  animation: slideInLeft 1s ease;
}

.fade-in-right {
  animation: slideInRight 1s ease;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #cba785;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: #92623a;
  transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .process-images {
    flex-direction: column;
    align-items: center;
  }
  
  .process-img {
    width: 80%;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-story {
    padding: 30px;
  }
}

.container, .contact-container, .about-container {
  width: 1024px;
  margin: 0 auto;
}

