/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap');


/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Crimson Text', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 5px; /* Space for fixed navbar */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6B3A26;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo i {
    color: #8A4A2F;
    margin-right: 10px;
    font-size: 2.3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #8A4A2F;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: #A76443;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f0951d;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: 0.3s;
}

/* Active state for current page */
.nav-menu a.active {
    color: #8A4A2F;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Responsive Design for Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}



/* Desktop default (your current) */
.clay-hero {
    position: relative;
    width: 95%;
    height: 85vh;
    background: url("images/hero-banner.png") center center/cover no-repeat;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 40px;
}

/* Tablet */
@media (max-width: 1024px) {
    .clay-hero {
        width: 96%;
        height: 75vh;
        margin: 60px 20px;
        border-radius: 22px;
    }
}

/* Large Mobile */
@media (max-width: 768px) {
    .clay-hero {
        width: 100%;
        height: 70vh;
        margin: 70px 0;
        border-radius: 18px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .clay-hero {
        height: 60vh;
        margin: 25px 0;
        border-radius: 12px;
        margin-top: 60px;
    }
}


/* Dark overlay */
.clay-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 24, 14, 0.35);
}

/* Content */
.clay-hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    color: #fff;
    z-index: 2;
}

/* Main heading */
.clay-title {
    font-family: 'Crimson Text', serif;
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 20px;
}

/* Subtitle */
.clay-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F3E2C7;
}

/* Responsive */
@media (max-width: 1024px) {
    .clay-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .clay-hero {
        height: 70vh;
        border-radius: 18px;
    }

    .clay-title {
        font-size: 2.5rem;
    }

    .clay-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .clay-title {
        font-size: 2rem;
    }

    .clay-subtitle {
        font-size: 0.85rem;
    }
}



.clay-about{
    background:#FFFBE3;
    padding:80px 60px;
    
}

.clay-about-wrap{
    display:flex;
    gap:60px;
    align-items:flex-start;
}

/* Image */
.clay-about-img{
    flex:1;
}

.clay-about-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:28px;
}

/* Content */
.clay-about-content{
    flex:1;
    font-family:'Crimson Text', serif;
    color:#3A2416;
}

.clay-about-content h2{
    font-size:38px;
    margin-bottom:25px;
    letter-spacing:1px;
}

.clay-about-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
}

/* Tablet */
@media(max-width:1024px){
    .clay-about{
        padding:60px 40px;
    }
    .clay-about-wrap{
        gap:0px;
    }
    .clay-about-content h2{
        font-size:36px;
    }
}

/* Mobile */
@media(max-width:768px){
    .clay-about-wrap{
        flex-direction:column;
    }
    .clay-about-img img{
        border-radius:18px;
    }
    .clay-about-content h2{
        font-size:30px;
        margin-top:30px;
    }
    .clay-about-content p{
        font-size:16px;
    }
}

/* Small Mobile */
@media(max-width:480px){
    .clay-about{
        padding:40px 20px;
    }
    
}



.clay-vm{
    position: relative;
    width: 100%;        /* You can change */
    height: 95vh;     /* You can change */
    margin: 80px auto;
    background: url("images/vision.png") center center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clay-vm-overlay{
    position:absolute;
    inset:0;
    background:rgba(35, 20, 10, 0.85);
}

/* Content */
.clay-vm-content{
    position: relative;
    z-index:2;
    max-width: 900px;
    text-align: center;
    color:#f8f5f0;
    font-family: 'Crimson Text', serif;
    padding:40px;
}

.clay-vm-content h3{
    font-size: 32px;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 400;
}

.clay-vm-content h4{
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 18px;
}

.clay-vm-content p{
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* Tablet */
@media(max-width:1024px){
    .clay-vm{
        height:75vh;
    }
    .clay-vm-content{
        max-width:700px;
    }
}

/* Mobile */
@media(max-width:768px){
    .clay-vm{
        width:100%;
        height:auto;
        border-radius:18px;
        padding:60px 0;
    }

    .clay-vm-content{
        padding:20px;
    }

    .clay-vm-content h3{
        font-size:26px;
    }

    .clay-vm-content h4{
        font-size:18px;
    }

    .clay-vm-content p{
        font-size:15px;
    }
}

/* Small mobile */
@media(max-width:480px){
    .clay-vm-content p{
        font-size:14px;
    }
}



.clay-products{
    background:#fff;
    padding:60px 60px;
    text-align:center;
    font-family:'Crimson Text', serif;
}

.clay-products-title{
    font-size:42px;
    color:#3A2416;
    margin-bottom:25px;
    padding-top:30px;
}

.clay-products-desc{
    max-width:900px;
    margin:0 auto 60px;
    font-size:18px;
    line-height:1.9;
    color:#3A2416;
}

/* Grid */
.clay-products-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:30px;
}

/* Cards */
.clay-card{
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.clay-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Tablet */
@media(max-width:1024px){
    .clay-products{
        padding:60px 40px;
    }
}

/* Mobile */
@media(max-width:768px){
    .clay-products-grid{
        grid-template-columns:1fr;
    }
    .clay-products-title{
        font-size:32px;
        padding-top:30px;
    }
    .clay-products-desc{
        font-size:16px;
    }
}

/* Small mobile */
@media(max-width:480px){
    .clay-products{
        padding:40px 20px;
    }
}


.clay-gallery {
  column-count: 3;
  column-gap: 20px;
  padding: 40px;
}

.clay-gallery img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
  break-inside: avoid;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 992px) {
  .clay-gallery {
    column-count: 2;
    padding: 25px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .clay-gallery {
    column-count: 1;
    padding: 15px;
  }
}
.gallery-title{
    text-align:center;
    font-size:36px;
    font-family: 'Crimson Text', serif;
    color:#6B3A26;  /* your brand brown */
    margin-bottom:30px;
    letter-spacing:2px;
    padding: 30px;
}

/* Core Layout Settings */


.gallery-wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.gallery-heading {
    font-family: 'Crimson Text', serif;
    font-size: 26px;
    color: #4a3728;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: center;
    padding: 50px;
}

/* 12-Column Grid Definition */
.clay-grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 12 equal units */
    grid-auto-rows: 190px; /* Base height per row unit */
    gap: 12px; /* Spacing between grid items */
}

.grid-box {
    overflow: hidden;
    background-color: #f5f5f5;
}

.grid-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents image distortion */
    display: block;
}

/* Exact Spans based on Screenshot Ratios */

/* Row 1: 5:7 Ratio */
.workshop-portrait {
    grid-column: span 5;
    grid-row: span 2;
}

.painting-landscape {
    grid-column: span 7;
    grid-row: span 2;
}

/* Row 2: 8:4 Ratio */
.wheel-wide {
    grid-column: span 8;
    grid-row: span 2;
}

/* Tall Kiln Box: Spans across Middle and Bottom */
.kiln-tall {
    grid-column: span 4;
    grid-row: span 3; 
}

/* Row 3: Splits remaining 8 columns into 4:4 */
.elephant-display {
    grid-column: span 4;
    grid-row: span 2;
}

.storage-landscape {
    grid-column: span 4;
    grid-row: span 1;
}

/* Fully Responsive: Stacks for Tablets and Phones */
@media (max-width: 900px) {
    .clay-grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        grid-auto-rows: 250px;
    }
    .grid-box {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

@media (max-width: 500px) {
    .clay-grid-container {
        grid-template-columns: 1fr; /* Single column for phones */
    }
    
}



/* Title */
.partner-section .partner-title{
    text-align:center;
    font-size:36px;
    color:#4c2a17;
    margin-bottom:50px;
}

/* Card */
.partner-section .partner-box{
    background:#fffde6;
    border:1px solid #bfa58a;
    border-radius:20px;
    padding:30px 40px;
    display:flex;
    gap:30px;
    align-items:center;
    margin-bottom:25px;
}

/* Icon */
.partner-section .icon{
    min-width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    color:#1a1a1a;
}

/* Text */
.partner-section .content h3{
    font-size:22px;
    margin-bottom:10px;
    color:#1f1f1f;
}

.partner-section .content p{
    font-size:16px;
    line-height:1.7;
    color:#333;
}

/* Responsive */
@media(max-width:768px){
    .partner-section .partner-box{
        flex-direction:column;
        text-align:center;
        padding:25px;
    }

    .partner-section .icon{
        margin-bottom:15px;
    }

    .partner-section .partner-title{
        font-size:28px;
    }
}

.business-model{
  background: linear-gradient(135deg,#2b1606,#3b1f0d);
  padding: 80px 8%;
  color: #fff;
  
}

.business-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.business-left{
  width: 40%;
}

.business-left h2{
  font-family: 'Crimson Text', serif;
  font-size: 38px;
  margin-bottom: 40px;
  color: #f8f3e6;
}

.info{
  margin-bottom: 35px;
}

.info p{
  font-size: 18px;
  color: #f3e8d4;
  margin-bottom: 6px;
}

.info span{
  font-family: 'Crimson Text', serif;
  font-size: 22px;
  color: #ffffff;
}

.business-right{
  width: 60%;
}

.business-right img{
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

/* Footer */
.business-footer{
  background: #fbf8df;
  text-align: center;
  padding: 60px 10%;
  font-family: 'Crimson Text', serif;
}

.footer-features{
  font-size: 20px;
  color: #2b1606;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.download-btn{
  background: linear-gradient(135deg,#2b1606,#3b1f0d);
  color: #fff;
  padding: 16px 50px;
  border-radius: 40px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.download-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

/* Responsive */
@media(max-width:900px){
  .business-wrapper{
    flex-direction: column;
  }
  .business-left,
  .business-right{
    width: 100%;
    text-align: center;
  }
}


.clay-contact{
  padding: 30px 8%;
  padding-top:70px;
  display: flex;
  justify-content: space-between;
  font-family: 'Crimson Text', serif;
  background: #fffbe4;
}

/* LEFT */
.contact-left{
  width: 45%;
}

.contact-left h2{
  font-family: 'Crimson Text', serif;
  font-size: 50px;
  margin-bottom: 20px;
  color: #000;
}

.subtext{
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 80px;
}

/*.insta h4{*/
/*  font-family: 'Crimson Text', serif;*/
/*  font-size: 22px;*/
/*  margin-bottom: 15px;*/
/*}*/

/*.insta-images{*/
/*  display: flex;*/
/*  gap: 15px;*/
/*}*/

/*.insta-images img{*/
/*  width: 90px;*/
/*  height: 90px;*/
/*  border-radius: 10px;*/
/*  object-fit: cover;*/
/*}*/

/* RIGHT */
.contact-right{
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-info{
  text-align: right;
  margin-bottom: 40px;
  font-family: 'Crimson Text', serif;
}

.contact-info p{
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #000;
}

.map-box{
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 6px;
}

.map-box iframe{
  width: 100%;
  height: 100%;
  border: none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .clay-contact{
    flex-direction: column;
    gap: 60px;
  }
  .contact-left,
  .contact-right{
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }
  .contact-info{
    text-align: left;
  }
}

.clay-footer-bar{
  background: linear-gradient(135deg, #2b160a, #4b240f);
  padding: 22px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff3dc;
  font-family: 'Crimson Text', serif;
}

.clay-footer-bar p{
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.clay-footer-bar span{
  color: #f5c07a;
  font-weight: 500;
}

/* Mobile */
@media(max-width:768px){
  .clay-footer-bar{
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
.clay-slider {
  position: relative;
  /*max-width: 1100px;*/
  margin: 40px auto;
  display: flex;
  align-items: center;
}

.clay-track-container {
  overflow: hidden;
  width: 100%;
}

.clay-track {
  display: flex;
  transition: transform 0.4s ease;
}

.clay-card {
  min-width: 25.13%; /* 4 at a time */
  padding: 10px;
}

.clay-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.nav {
  background: #8a4a2f;
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
}

.nav:hover {
  background: #8a4a2f;
}

/* Dots */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  margin: 0 4px;
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  background: #8a4a2f;
}

/* Responsive */
@media (max-width: 900px) {
  .clay-card { min-width: 33.33%; } /* 3 at a time */
}

@media (max-width: 600px) {
  .clay-card { min-width: 50%; } /* 2 at a time */
}

@media (max-width: 400px) {
  .clay-card { min-width: 100%; } /* 1 at a time */
}
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup.show {
  display: flex;
}

.popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  animation: zoomIn 0.35s ease;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.clay-feature-list {
  max-width: 800px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 30px;
}

.clay-item {
  font-family: 'Crimson Text', serif;
  font-size: 17px;
  color: #3a2416;
  padding-left: 25px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  text-align:left;
}

.clay-item::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 0;
  color: #ef951e;
  font-size: 16px;
}

/* Animation when active */
.clay-item.show {
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .clay-feature-list {
    grid-template-columns: 1fr;
  }
}

.clay-vision-mission{
  background:#1b1b1b;
  padding:80px 8%;
}

.vm-block{
  display:flex;
  gap:40px;
  align-items:stretch;
  margin-bottom:60px;
}

.vm-reverse{
  flex-direction:row-reverse;
}

.vm-media{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  flex:1;
}

.vm-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:24px;
}

.vm-content{
  flex:1;
  padding:40px;
  background:#1b1b1b;
  color:#eee;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.vm-content h2{
  font-family: 'Crimson Text', serif;
  font-size:56px;
  margin-bottom:12px;
}

.vm-content h4{
  font-family: 'Crimson Text', serif;
  font-size:18px;
  font-weight:500;
  margin-bottom:20px;
  color:#cfcfcf;
}

.vm-content p{
  font-family: 'Crimson Text', serif;
  font-size:15px;
  line-height:1.7;
  color:#bbb;
}

/* Responsive */
@media(max-width:900px){
  .vm-block{
    flex-direction:column;
  }

  .vm-media{
    grid-template-columns:1fr;
  }

  .vm-content h2{
    font-size:38px;
  }
}
@media(max-width:500px){
  .vm-content{
    padding:25px;
  }

  .vm-content h2{
    font-size:32px;
  }
}
.vm-media img{
  width:100%;
  height:300px;   /* increase width feel */
  object-fit:cover;
  object-position:center;
  border-radius:24px;
}
.vm-media-panorama img{
  width:100%;
  height:380px;              /* Desktop */
  object-fit:cover;
  object-position:center;
  border-radius:24px;
}

/* Laptop / Tablet */
@media(max-width:1024px){
  .vm-media-panorama img{
    height:320px;
  }
}

/* Tablet */
@media(max-width:768px){
  .vm-media-panorama img{
    height:280px;
  }
}

/* Mobile */
@media(max-width:480px){
  .vm-media-panorama img{
    height:220px;
  }
}
.arrow-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

/* Arrow Shape */
.arrow {
    width: 13px;
    height: 13px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    animation: scroll-down 1s infinite;
}

/* Second arrow delay for continuous effect */
.arrow:nth-child(2) {
    animation-delay: 0.1s;
}

/* Scroll-down animation */
@keyframes scroll-down {
    0% {
        transform: rotate(45deg) translateY(0);
        opacity: 0;
    }
    50% {
        transform: rotate(45deg) translateY(15px);
        opacity: 1;
    }
    100% {
        transform: rotate(45deg) translateY(15px);
        opacity: 0;
    }
}
.sticky-container {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%); /* Center vertical alignment */
  z-index: 999;
}

.sticky-social {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sticky-social li {
  width: 50px; /* Desktop width */
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.sticky-social li a {
  color: white;
  font-size: 24px;
  text-decoration: none;
}

/* Background Colors */
.facebook  { background-color: #6c2602; }
.instagram { background-color: #f0951d; }
.whatsapp  { background-color: #b46026; }
.youtube   { background-color: #e65409; }

/* Hover Effect */
.sticky-social li:hover {
  width: 60px; /* Slight expansion on hover */
}

/* --- Responsive (Mobile View) --- */
@media screen and (max-width: 600px) {
  .sticky-social li {
    width: 40px; 
    height: 40px;
  }
  .sticky-social li a {
    font-size: 18px;
  }
}
/* Enquiry Button */
.enquiry-btn {
    position: fixed;
    right: 10px;
    top: 73%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    background-color: #b46026;
    color: white;
    padding: 19px 12px;
    cursor: pointer;
    font-weight: bold;
    z-index: 1001;
    
}


@media screen and (max-width: 990px){
    .sticky-container {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%); /* Center vertical alignment */
  z-index: 999;
}
.enquiry-btn {
    position: fixed;
    right: 10px;
    top: 77%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    background-color: #b46026;
    color: white;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: bold;
    z-index: 1001;
    
}
}
@media screen and (max-width: 480px){
    .sticky-container {
  position: fixed;
  top: 68%;
  right: 10px;
  transform: translateY(-50%); /* Center vertical alignment */
  z-index: 999;
}
.enquiry-btn {
    position: fixed;
    right: 10px;
    top: 87%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    background-color: #b46026;
    color: white;
    padding: 10px 7px;
    cursor: pointer;
    font-weight: bold;
    z-index: 1001;
    
}
}
/* Side Panel Layout */
.side-panel {
    position: fixed;
    top: 0;
    right: -400px; /* Initially hidden */
    width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transition: 0.4s ease;
    z-index: 1002;
    padding: 20px;
    box-sizing: border-box;
}

.side-panel.active {
    right: 0; /* Slide-in effect */
}

/* Form Styling */
.panel-content h2 { color: #86422a; margin-bottom: 20px; }

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.submit-btn {
    width: 100%;
    background-color: #86422a; /* Brown/Dark Red color */
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.submit-btn:hover { background-color: #5a1815; }

/* Close Button */
.close-btn {
    font-size: 30px;
    cursor: pointer;
    float: right;
    color: #888;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}

.overlay.active { display: block; }

.partner-section {
  background-color: #fffbe4; 
  padding: 75px 20px;
  margin:60px auto;
  max-width:1200px;
  
}
@media (max-width: 768px) {
  .partner-section {
    margin: 0;
     padding: 15px 20px;
  }
  .partner-title h1 {
  font-size: 80px; /* Large elegant heading */
  line-height: 1;
  color: #333;
  margin-bottom: 20px;
  font-weight: normal;
  margin-top:50px;
}
}
.partner-container {
  /*max-width: 1100px;*/
  margin:0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Left Heading Styling */
.partner-title {
  flex: 1;
}

.partner-title h1 {
  font-size: 80px; /* Large elegant heading */
  line-height: 1;
  color: #333;
  margin-bottom: 20px;
  font-weight: normal;
  margin-top:69px;
}

.site-link {
  font-size: 16px;
  color: #555;
  margin-top: 50px;
}

/* Right Features Styling */
.partner-features {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 25px;
}

.feature-img-box {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%; /* Makes image round */
  overflow: hidden;
  border: 1px solid #ccc;
}

.feature-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-text h3 {
  font-size: 24px;
  color: #000;
  margin-bottom: 8px;
   /* Subtitles in sans-serif for clarity */
}

.feature-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  
}

/* --- FULL RESPONSIVE --- */
@media screen and (max-width: 992px) {
  .partner-container {
    flex-direction: column; /* Stacks vertically on smaller screens */
    text-align: left;
  }
  
  .partner-title h1 {
    font-size: 50px;
  }
}

@media screen and (max-width: 600px) {
  .feature-item {
    flex-direction: column; /* Image on top, text below for mobile */
    align-items: flex-start;
  }
  
  .feature-img-box {
    width: 120px;
    height: 120px;
  }
  .partner-features {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top:-60px;
}
}


        .bg-clay-pattern {
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1590001140507-62f9905952f4?auto=format&fit=crop&q=80');
            background-size: cover;
            background-position: center;
        }

/* Claysthan Section Specific Styles */
.clay-model-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: -60px auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .clay-model-section {
    margin: 0px;
  }
}
.clay-top-banner {
    height: 320px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1590001140507-62f9905952f4?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.clay-title {
    color: white;
    font-size: clamp(3rem, 8vw, 5rem);
    font-family: 'Crimson Text', serif;
    margin: 0;
}

.clay-content-area {
    display: flex;
    flex-direction: row;
}

.clay-stats-container {
    flex: 2;
    padding: 50px;
}

.clay-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.clay-stat-item {
    border-top: 2px solid #000;
    padding-top: 15px;
}

.clay-stat-value {
    
    font-size: 1.8rem;
    margin: 0;
}

.clay-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
}

/* Phone Section */
.clay-phone-showcase {
    flex: 1;
    background:#86422a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.clay-phone-frame {
    width: 260px;
    height: 520px;
    background: #1a1a1a;
    border-radius: 40px;
    border: 12px solid #1a1a1a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.clay-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet & Mobile Responsive */
@media (max-width: 992px) {
    .clay-content-area { flex-direction: column; }
    .clay-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .clay-stats-grid { grid-template-columns: 1fr; }
    .clay-top-banner { height: 250px; padding: 20px; }
    .clay-stats-container { padding: 20px; }
}
/* New Features List Styling */
.clay-features-list {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.clay-feature-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 400;
}

.clay-bullet {
    color: #b08d57; /* Gold/Clay accent color */
    font-weight: bold;
    font-size: 1.4rem;
}

/* Download Button Styling */
.clay-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #86422a; /* Black button like the image style */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: transform 0.2s, background-color 0.2s;
}

.clay-download-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.clay-footer-url {
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
}

/* Mobile Tweak for Button */
@media (max-width: 600px) {
    .clay-download-btn {
        width: 100%;
        justify-content: center;
    }
    .clay-feature-row {
        font-size: 1rem;
    }
}
.clay-top-banner {
    /* உங்கள் படத்தின் லிங்கை கீழே உள்ள url-ல் கொடுக்கவும் */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                      url('images/8af13ea3-ff06-41a9-a707-225dbe9c654e.JPG'); 
    
    background-size: cover;          /* படம் முழுவதுமாக கவர் ஆகும் */
    background-position: center;     /* படம் மையமாக இருக்கும் */
    background-repeat: no-repeat;    /* படம் திரும்பத் திரும்ப வராது */
    
    height: 320px;                   /* பேனரின் உயரம் */
    display: flex;
    align-items: flex-end;           /* எழுத்துக்களை கீழே கொண்டு வரும் */
    padding: 40px;                   /* ஓரங்களில் இடைவெளி */
    border-radius: 12px 12px 0 0;    /* மேல் பக்கம் மட்டும் வளைவு */
}

.clay-title {
    color: #ffffff;                  /* எழுத்து வெள்ளை நிறம் */
  
    font-size: clamp(2.5rem, 6vw, 5rem); /* ஸ்கிரீன் அளவிற்கு ஏற்ப மாறும் */
    margin: 0;
    font-weight: 300;
    letter-spacing: -1px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .clay-top-banner {
        height: 220px;               /* மொபைலில் உயரம் குறைவு */
        padding: 20px;
    }
}
.clay-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* இது படத்தை பிரேமிற்குள் கச்சிதமாகப் பொருத்தும் */
    display: block;
}
.social-icons {
    display: flex;
    gap: 15px; /* ஐகான்களுக்கு இடையே இடைவெளி */
    align-items: center;
    margin-top: 15px;
}

.social-img {
    width: 30px;  /* ஐகான் அகலம் */
    height: 30px; /* ஐகான் உயரம் */
    transition: transform 0.3s ease;
    cursor: pointer;
}

.social-img:hover {
    transform: scale(1.2); /* மவுஸ் வைக்கும்போது ஐகான் லேசாகப் பெரிதாகும் */
    filter: brightness(1.2);
}

.clay-locations-section {
    background-color: #fdfaf7; /* லேசான மண் நிறப் பின்னணி */
    padding: 40px 20px;
    text-align: center;
    

.clay-loc-container {
    max-width: 1000px;
    margin: 0 auto;
}

.clay-main-heading {
    
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #3e2723; /* Dark earthy brown */
    margin-bottom: 15px;
    line-height: 1.2;
}

.clay-state-highlights {
    font-size: 1.1rem;
    color: #b08d57; /* Gold/Clay Accent */
    font-weight: 500;
    margin-bottom: 30px;
}

.clay-divider {
    margin: 0 10px;
    color: #d7ccc8;
}

.clay-coming-soon {
    font-style: italic;
    color: #8d6e63;
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
}

.clay-loc-divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, #b08d57, transparent);
    margin: 40px auto;
    width: 80%;
}

.clay-sub-heading {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #3e2723;
    margin-bottom: 25px;
}

.clay-detailed-list {
    line-height: 2;
    color: #5d4037;
    font-size: 1.05rem;
}

.clay-city {
    display: inline-block;
    padding: 2px 8px;
    transition: color 0.3s ease;
}

.clay-city:hover {
    color: #b08d57;
}

.clay-dot {
    margin: 0 8px;
    color: #b08d57;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .clay-locations-section { padding: 40px 15px; }
    .clay-main-heading { font-size: 1.6rem; }
    .clay-detailed-list { font-size: 0.95rem; text-align: justify; }
}




