/* Global Styles */
:root {
    --primary: #2a5f8a;
    --secondary: #e67e22;
    --accent: #16a085;
    --light: #f9f9f9;
    --dark: #333;
    --gray: #777;
    --light-gray: #eaeaea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    overflow-x: hidden;
}
body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    color: #6b3a73;
    font-family: "Poppins", sans-serif;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.btn-home-exterior {
    display: inline-block;
    width: 100%;
    padding: 12px 30px;
    background: linear-gradient(to bottom, #6b3a73, #3d1b42);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    /* font-weight: bold; */
    transition: all 0.3s;
}

.btn-home-exterior:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
}
/*   breadcrumb css     */

nav.breadcrumb {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
    border: 1px solid #ffffff26;
    padding: 0.25rem 0.5rem;
    margin-top: 0px;
  }
  nav.breadcrumb a {
    
    color: rgb(235, 235, 235);
    font-size: 0.875rem; /* 14px */
    text-decoration: none;
    display: inline-flex;
    align-items: center;

  }
  nav.breadcrumb a .icon-home {
    margin-right: 0.25rem;
    margin-bottom: 3px;
    font-size: 0.875rem;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: rgb(61, 61, 61);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M280.37 148.26L96 300.11V464a16 16 0 0016 16l112-.29a16 16 0 0016-15.74V368a16 16 0 0116-16h64a16 16 0 0116 16v111.72a16 16 0 0016 15.72l112 .29a16 16 0 0016-16V300L295.67 148.26a12.19 12.19 0 00-15.3 0z"/></svg>') no-repeat center / contain;
    mask: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M280.37 148.26L96 300.11V464a16 16 0 0016 16l112-.29a16 16 0 0016-15.74V368a16 16 0 0116-16h64a16 16 0 0116 16v111.72a16 16 0 0016 15.72l112 .29a16 16 0 0016-16V300L295.67 148.26a12.19 12.19 0 00-15.3 0z"/></svg>') no-repeat center / contain;
    background-color: rgb(235, 235, 235);
  }
  nav.breadcrumb span.separator {
    color: rgb(235, 235, 235);
    margin: 0 0.5rem;
    font-size: 0.875rem;
    font-family: Arial, sans-serif;
    user-select: none;
  }
  nav.breadcrumb span.current {
    color: rgb(235, 235, 235);
    font-size: 0.875rem;
    
    
  }

 /* breadcrumb css end   */ 
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    
    position: relative;
    background: linear-gradient(to right, #6b3a73 45%, #e67e22 55%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 0px auto; 
}

/* Header & Navigation 
header {
    background-image: url(img/headerbg.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 95%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
    left: 30px;
    border-radius: 5px;
    z-index: 100;
} */

/*.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}*/

/* Navbar */
.top-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #33333347;;
    border-radius: 0px;
    position: fixed;
    padding: 0px 100px;
    top: -3px;
    left: 0px;
    z-index: 100;
}
.top-nav-links {
    display: flex;
    gap: 40px;
}

.top-nav-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    transition: all 0.3s;
}

.top-nav-links a:hover {
    color: #d67c15;
}
/* Add to your style.css */
.top-nav-links .social-icons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.top-nav-links .social-icons a {
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.top-nav-links .social-icons a:hover {
    color: #f1c40f; /* Change to your brand color */
    transform: translateY(-2px);
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .top-nav-links .social-icons {
        border-left: none;
        padding-left: 0;
        margin-left: 10px;
        gap: 10px;
    }
}
@media only screen and (max-width: 767px) {
    .top-nav {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .top-nav-links {
        margin: 0px -80px;
        gap: 12px;
    }
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 0px;
    width: 100%;
    padding: 20px 20px;
    z-index: 100;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media only screen and (max-width: 767px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
}

.logo {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgb(66, 66, 66);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: #e67e22;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}
@media (max-width: 640px) {
    img.logo-img {
        margin-left: -12px;
    }
} 
img.logo-img {
    position: relative;
    left: -35px;
    display: block;
    width: 250px;
 /*   margin-top: -40px;
    margin-bottom: -40px;   */
}
.footer-logo-img
{
    position: static;
    display: block;
    width: 250px;
}
.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

/*.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}*/


/* Navbar Link Hover Animation */
/* Alternative Subtle Animation */
.nav-links li a {
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: -27px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.nav-links li a:hover::before {
    left: 0;
    width: 100%;
}

/* Active link style */
.nav-links li a.active {
    color: #007bff;
}

.nav-links li a.active::before {
    left: 0;
    width: 100%;
}
/* Navbar Link Hover Animation end */
/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}
/* About 1 */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .about-img {
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .about-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
  }
  
  .about-text p {
    margin-bottom: 15px;
  }

  section.page-content {
    position: relative;
    top: 105px;
    margin-bottom: 130px;
}

/* index get in touch css */

  /* Card */
  .card {
    background: #fff;
    
    border-radius: 0.375rem;
    
    padding: 2.5rem 2.5rem 3rem;
  }
  /* Heading */
  h2#contact-heading {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #6b3a72;
    text-align: center;
    margin: 0 0 0.5rem 0;
}
  /* Subtext */
  p.subtext {
    font-size: 0.875rem; /* 14px */
    color: #374151;
    text-align: center;
    margin: 0 0 2rem 0;
  }
  /* Form */
  form {
    width: 100%;
  }
  /* Grid for selects and inputs */
  .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-bottom: 1.5rem;
  }
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
    margin-bottom: 1.25rem;
  }
  /* Responsive adjustments */
  @media (max-width: 640px) {
    .grid-2 {
      grid-template-columns: 1fr;
      gap: 1rem 0;
      margin-bottom: 1.25rem;
    }
    .grid-4 {
      grid-template-columns: 1fr 1fr;
      gap: 1rem 1rem;
      margin-bottom: 1rem;
    }
  }
  /* Inputs and select */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #d1d5db;
    padding: 0.25rem 0.25rem 0.25rem 0.25rem;
    font-size: 0.875rem;
    color: #374151;
    background: transparent;
    outline-offset: 2px;
    outline-color: transparent;
    transition: border-color 0.2s ease;
  }
  input[type="text"]::placeholder,
  input[type="email"]::placeholder,
  input[type="tel"]::placeholder {
    color: #6b7280;
  }
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3e%3c/path%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem 1rem;
    cursor: pointer;
  }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  select:focus {
    border-bottom-color: #0a1f4e;
    outline-color: #0a1f4e;
  }
  /* Checkbox container */
  .checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #374151;
    margin-bottom: 1.5rem;
  }
  .checkbox-container input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 1rem;
    height: 1rem;
    accent-color: #2563eb;
    flex-shrink: 0;
  }
  /* Button */
  button.git-submit {
    display: block;
    margin: 0 auto;
    background: linear-gradient(to bottom, #6b3a73, #3d1b42);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: filter 0.2s ease;
  }
  button:hover,
  button:focus {
    filter: brightness(1.1);
    outline: none;
  }
  /* Fixed icons container */
  .fixed-icons {
    position: fixed;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    bottom: 6rem;
  }
  /* Icon links */
  .icon-link {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgb(0 0 0 / 0.1);
    cursor: pointer;
    transition: filter 0.2s ease;
  }
  .icon-link:hover,
  .icon-link:focus {
    filter: brightness(1.1);
    outline: none;
  }
  .whatsapp {
    background-color: rgba(255, 255, 255, 0);
  }
  .phone {
    background-color: rgba(255, 255, 255, 0);
  }
  /* Icon images */
  .icon-link img {
    width: 3.5rem;
    height: 3.5rem;
  }

/* index get in touch css */



/* About Section 2 
.about {
    padding: 80px 0;
    background-color: var(--light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}    */

/* Products Section */

.product-feature-column {
    flex: 1;
    min-width: 300px;
}

.product-feature-header {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2a5f8a;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e67e22;
}

.product-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-feature-item {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.product-feature-item.filled:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    background-color: #e67e22;
    border-radius: 50%;
}

.product-title {
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    color: #2a5f8a;
}

h3.product-subtitle {
    font-size: 12px;
    color: #f01a1a;
    margin: 0 0 10px 0;
}

.product-description {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    line-height: 1.5;
}

.product-description.collapsed {
    max-height: 3em; /* Show only 2 lines of text */
}

.toggle-description {
    padding: 12px 30px;
    background: linear-gradient(to bottom, #6b3a73, #3d1b42);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 5px;
    display: inline-block;
}

.toggle-description:hover {
    text-decoration: underline;
}

.product-category {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}
.products {
    padding: 120px 0;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 20px;
    background: var(--light-gray);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active, .category-btn:hover {
    background: #6b3a73;
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    height: fit-content;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    text-align: center;
    padding: 20px;
    padding-top: 0px;
}

.product-info h2 {
    margin-bottom: 10px;
    color: var(--primary);
}
.product-info h3 {
    font-weight:normal
    margin-bottom: 10px;
    color: var(--primary);
}

.product-info p {
    color: var(--gray);
    margin-bottom: 15px;
}

.product-price {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.color-options {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.color-option {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}
/* Products details page Section */

/* Top section */
@keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: scale(0.95);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .animated-image {
    animation: fadeInScale 2s ease-out forwards;
  }
.top-section {
  background-image: url(img/top-bg1.jpg); 
    padding-top: 120px;
    position: relative;
    margin-bottom: 190px;
    height: 340px;
  }
  .top-image {
    margin: auto;
    margin-bottom: -160px;
    bottom: 196px;
    width: 18%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
  }

  .bucket-img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 160px;
    height: 160px;
    object-fit: contain;
    transform: translateY(-50%);
    z-index: 3;
  }

  .arrow-img {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    z-index: 3;
  }

  /* Description paragraph */
  .pro-page-description {
    margin: 0 100px;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
  }

  /* Tabs */
  .tabs {
    max-width: 70%;
    margin: 32px auto 0;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    font-size: 15px;
    font-weight: 600;
  }

  .tab {
    flex: 1;
    padding: 8px 0;
    text-align: center;
    cursor: default;
    user-select: none;
  }

  .tab.colours {
  /*  background-color: #b9a6d9;  */
    color: #ffffff;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .tab.pack {
    background-color: #7a5ea6;
    color: white;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .tab span {
    display: block;
    font-weight: 400;
    margin-top: 4px;
  }

  /* Image below tabs */
  .room-image-container {
    max-width: 700px;
    margin: 24px auto 0;
    border-radius: 8px;
    overflow: hidden;
  }

  .room-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* Features list */
  .pro-page-features {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    max-width: 70%;
    margin: 32px auto 32px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-size: 14px;
  }

  .pro-page-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pro-page-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #3d1b42;
    font-size: 18px;
  }

  .pro-page-features li i {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 4.5px solid #16a085;
    background: #fff;
    font-style: normal;
    line-height: 0;
  }

  /* Responsive */
  @media (max-width: 640px) {
    .top-section {
        height: 225px;
        border-radius: 0;
        margin-bottom: 80px;
    }
    .top-image {
        width: 100%;
    }
    .circle-bg {
      display: none;
    }

    .bucket-img {
      position: absolute;
      top: 50%;
      left: 16px;
      transform: translateY(-50%);
      width: 120px;
      height: 120px;
      z-index: 3;
    }

    .arrow-img {
      display: none;
    }

    .pro-page-description {
      font-size: 16px;
      padding: 0 8px;
      margin: 0px;
    }

    .tabs {
      max-width: 95%;
      font-size: 11px;
    }

    .pro-page-features {
      grid-template-columns: 1fr;
      gap: 16px 0;
      max-width: 95%;
      margin-bottom: 30px;
    }
    .pro-page-features li {
        max-width: 95%;
        font-size: 16px;
      }
    .room-image-container {
        max-width: 95%;
    }
  }
/* Products details page Section Ends */
/* Services Section */
.services {
    position: relative;
    top: 0px;
    padding: 80px 0;
    background-color: var(--light);
}
.services-2 {
    position: relative;
    top: 120px;
    margin-bottom: 130px;
    
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Color Gallery */
.color-gallery {
    padding: 80px 0;
}

.color-palettes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.palette {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.palette:hover {
    transform: scale(1.05);
}

.palette-colors {
    height: 100px;
    display: flex;
}

.palette-color {
    flex: 1;
}

.palette-info {
    padding: 15px;
    background: white;
}

.palette-info h4 {
    margin-bottom: 5px;
}

.palette-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.inspiration-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.inspiration-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.inspiration-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.inspiration-item:hover img {
    transform: scale(1.1);
}

.inspiration-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 3rem;
    color: var(--light-gray);
    position: absolute;
    top: -15px;
    left: -10px;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 110px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-text h3 {
    margin-bottom: 5px;
}

.contact-text p, .contact-text a {
    color: var(--gray);
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: white;
    margin-left: 12px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about p {
    margin-bottom: 20px;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-links h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-newsletter p {
    color: #ccc;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 0 15px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    header {
        width: 90%;
    }
    
    .nav-links {
        position: absolute;
        border-radius: 5px;
        top: 80px;
        left: -110%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left 0.3s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-categories {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 80px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* slider css  */

        /* Fullscreen Slider */
        .slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            width: 100%; 
            height: 100%;
            flex-shrink: 0;
            position: relative;
            background-size: cover;
            background-position: bottom;
        }
        
        /* Slide Backgrounds */
        .slide-1 {
            background-image: url(img/helios2.jpg);
        }
        
        .slide-2 {
            background-image: url(img/helios1.jpg);
        }
        
        .slide-3 {
            background-image: url(img/helios3.jpg);
        }
        
        /* Slide Content */
        .slide-content {
            position: absolute;
            top: 50%;
            left: 60%;
            transform: translate(-50%, -50%);
            text-align: right;
            color: white;
            width: 80%;
            max-width: 800px;
        }
        
        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #6b3a72;
        }
        
        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #6b3a72;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(to bottom, #6b3a73, #3d1b42);
            color: white;
            text-decoration: none;
            border-radius: 4px;
        /*    font-weight: bold;   */
            transition: all 0.3s;
        }
        
        .btn:hover {
            background: #d35400;
            transform: translateY(-3px);
        }
        
        /* Navigation Buttons */
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }
        
        .slider-nav button {
            background: rgba(255,255,255,0.3);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .slider-nav button:hover {
            background: rgba(255,255,255,0.5);
        }
        
        
        
        /* Slider Indicators */
        .slider-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            /* Switch to portrait images on mobile */
            .slide-1 {
                background-image: url('img/helios-m-1.jpg');
            }
            
            .slide-2 {
                background-image: url('img/helios-m-2.jpg');
            }
            
            .slide-3 {
                background-image: url('img/helios-m-3.jpg');
            }
            
            /* Adjust content positioning for mobile */
            .slide-content {
                left: 50%;
                top: 35%;
                text-align: center;
                width: 90%;
                padding: 0 20px;
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            /* Make navbar more compact */
            .navbar-container {
                flex-direction: column;
                padding: 10px;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
                margin-top: 10px;
            }
            
            .nav-links a {
                font-size: 0.9rem;
            }
            
            /* Adjust navigation buttons */
            .slider-nav button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

/* end slider css */


/*  about copy  */

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1605152276897-4f618f831968?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

/* Values Section */
.values {
    background: var(--light);
    padding: 80px 0;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-icon {
    font-size: 2.5rem;
    color: #6b3a72;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Team Section */
.team {
    padding: 80px 0;
    text-align: center;
}

.team-grid {
    position: relative;
    margin: auto;
    max-width: 60%;
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.member-info p {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: var(--gray);
    transition: color 0.3s;
}

.social-links a:hover {
    color: #6b3a72;
}
@media (max-width: 768px) {
    .team-grid {
     max-width: 100%;
     gap: 20px;
    }
}
/* Footer */
footer {
    background-color: #330e38;
    color: white;
    padding: 60px 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* about copy end */

/* why choose us */

        /* Features Section */
        .features {
            padding: 120px 0;
            background-color: #f9f9f9;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 40px 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 50px;
            color: #df4d46;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            
            background: linear-gradient(to right, #6b3a73 40%, #c9650d 70%);
	        -webkit-background-clip: text;
	        -webkit-text-fill-color: transparent;
        }
        
        .feature-card p {
            color: #7f8c8d;
        }
        .section-title h2 {
            font-size: 2.2rem;
        }
        .section-title p {
            font-size: 20px;
        }

/* why choose us end */

/* go to top css  */
.logo-div{
    
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #7a5ea6;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: #004080;
    transform: translateY(-3px);
}

.back-to-top:active {
    transform: translateY(1px);
}

.page-title--small {
    width: 100%;
    border-radius: 0px;
    margin: auto;
    height: 150px;
    background-color: #c88bd9;
    margin-bottom: 60px;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}
.page-title--small .page-title__content h1 {
    color: #333;
    font-size: 40px;
    margin-bottom: 0px;
}
.page-title__content {
    text-align: left;
    position: absolute;
    top: 20px;
    /* left: 15px; */
    /* right: 15px; */
}
@media only screen and (max-width: 767px) {
    .page-title.page-title--small {
        background-image: none !important;
    }
}


/*ed top */

.ed-top {
    background: #f5f7f9;
}

.ed-com-t1-left {}

.ed-com-t1-left ul {
    margin-bottom: 0px;
}

.ed-com-t1-left ul li {
    float: left;
    display: inline-block;
}

.ed-com-t1-left ul li a {
    color: #7a8088;
    padding: 5px 14px;
    line-height: 30px;
    border-right: 1px solid #e7ebef;
    font-size: 12px;
}

.ed-com-t1-right {
    float: right;
}

.ed-com-t1-right ul {}

.ed-com-t1-right ul li {
    float: left;
    display: inline-block;
}

.ed-com-t1-right ul li a {
    color: #fff;
    padding: 7px 12px;
    line-height: 30px;
    font-size: 12px;
}

.ed-com-t1-right ul li:nth-child(1) a {
    background: #f4364f;
    background: linear-gradient(to bottom, #f4364f, #dc2039);
}

.ed-com-t1-right ul li:nth-child(2) a {
    background: #2d5d73;
}
.ed-com-t1-social {
    position: relative;
    overflow: hidden;
    margin-top: -5px;
    /* float: right;
     */
}

.ed-com-t1-social ul li {
    float: left;
    list-style-type: none;
}

.ed-com-t1-social ul li a {
    line-height: 26px;
}

.ed-com-t1-social ul li a i {
    width: 30px;
    height: 30px;
    /* background: #013673;
     */
    color: #92a5bb;
    padding: 13px 4px 12px 4px;
    text-align: center;
    /* border-right: 1px solid #e7ebef;
     */
}


/* Add to your style.css */
section.product-top-section {
    margin-bottom: -150px;
}
.product-hero-image {
    text-align: center;
    margin: 0px 0;
    position: relative;
}

.product-image-main {
    position: relative;
    top: -200px;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.product-image-mobile {
    position: absolute;
    top: 0px;
    display: none;
    max-width: 120%;
    height: auto;
    margin: 0 auto;
    z-index: -1;
}

/* Mobile styles */
@media (max-width: 768px) {
    .product-image-main {
        position: relative;
        top: -54px;
        left: -125px;
        width: 35%;
        display: block; /* Hide desktop version on mobile */
    }
    
    .product-image-mobile {
        width: 100%;
        display: block; /* Show mobile-optimized version */
    }
    section.product-top-section {
        margin-bottom: -40px;
    }
    
    /* Optional animation for mobile 
    .product-image-mobile {
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }*/
}

/* Mobile Menu Styles */
.mobile-menu-container {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.menu-bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: fixed;
    top: 20px;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    font-size: 1.2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-links {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #0066cc;
}

.mobile-menu-footer {
    margin-bottom: 25px;
    padding: 20px;
    border-top: 1px solid #eee;
}

.homeowner-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.homeowner-btn,
.download-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
}

.homeowner-btn {
    background-color: #0066cc;
    color: white;
}

.download-btn {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

/*  exterior section on home page css  */

/* Exterior Paints Section */
.section-subtitle {
    text-align: center;
}
.exterior-paints {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.exterior-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.exterior-products {
    text-align: center;
    margin-top: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

/* Exterior Inspiration Gallery */
.exterior-inspiration {
    padding: 0px 0;
    background-color: #fff;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.transformation-card {
    grid-column: span 2;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.before, .after {
    position: relative;
}

.before span, .after span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.before-after img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.transformation-info {
    padding: 20px;
}

.design-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.design-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.design-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.design-card:hover .design-info {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .transformation-card {
        grid-column: span 1;
    }
    
    .before-after {
        grid-template-columns: 1fr;
    }
}

/*  exterior section on home page css  */
.ex-hero-section {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0px;
    text-align: center;
}

.ex-hero-section h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.ex-hero-section h2 {
    color: rgb(216, 151, 224);
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.ex-hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.ex-cta-button {
    display: inline-block;
    background-color: #f4e3ff;
    color: rgb(0, 0, 0);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.ex-cta-button:hover {
    background-color: #e990ff;
    transform: translateY(-3px);
}

.ex-slider-container {
    max-width: 100%;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}

.ex-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.ex-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    box-sizing: border-box;
}

.paint-image {
    width: 660px;
    height: 440px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

h2 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #675685;
    
}

.description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.5;
}

.inspire-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #675685;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.inspire-button:hover {
    background-color: #694d99;
}

.ex-slider-nav {
    text-align: center;
    margin-top: 20px;
}

.slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.slider-dot.active {
    background-color: #0066cc;
}

@media (max-width: 1024px) {
    .ex-slide {
        flex-direction: column;
    }
    
    .paint-image {
        width: 100%;
        height: auto;
        max-height: 400px;
    }
    
    .content {
        text-align: left;
        padding-right: 0;
    }
    .content h2 {
        font-size: 25px;
    }
}