:root { 
  /***** ===== PRIMARY BRAND COLORS ===== *****/

  /* Primary Colors */
  --spj-primary:  #C2AB69;
  /*  --primary-dark: #e05a2a; */       
  --spj-secondary: #2E294E;  
    --white:#fff;   
  --spj-crisp-white: #f8f9fa;     
  --spj-warm-metal: #6c757d; 
  --spj-white:#ffffff;           
   --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);       
  
  /* Accent Colors */
  --spj-emergency: #ff6b6b;       
  --spj-accent: #20c997;          
  --spj-highlight: #ffd43b;     
  
  /* Neutrals */
  --spj-dark: #212529;           
  --spj-gray: #adb5bd;            
  --spj-light-gray: #e9ecef;     
         
  
  /* Utility Colors */
  --spj-success: #28a745;       
  --spj-danger: #dc3545;        
  --spj-warning: #fd7e14;       
  
  /* Text Colors */
  --text-primary: var(--spj-dark);
  --text-secondary: var(--spj-gray);
  --text-light: var(--spj-light);
  --text-accent: var(--spj-primary);
  --text-emergency: var(--spj-accent);
  
  /* Button Colors */
  --btn-primary-bg: var(--spj-primary);
  --btn-primary-text: white;
  --btn-primary-hover: #005f92;
  
  --btn-secondary-bg: var(--spj-secondary);
  --btn-secondary-text: var(--spj-dark);
  --btn-secondary-hover: #0096b7;
  
  --btn-accent-bg: var(--spj-accent);
  --btn-accent-text: var(--spj-dark);
  --btn-accent-hover: #e68a00;
  
  --btn-emergency-bg: var(--spj-danger);
  --btn-emergency-text: white;
  --btn-emergency-hover: #bb2d3b;
  
  /* Link Colors */
  --link-color: var(--spj-primary);
  --link-hover: #005f92;
  --link-visited: #5e60ce;


  --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;


}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(27, 153, 139, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(46, 41, 78, 0.03) 0%, transparent 25%);
            background-size: 800px 800px;
            background-position: 0 0, 300px 300px, 600px 600px;
            -webkit-tap-highlight-color: transparent;
        } 
        
        


/***** ===== GENERAL SETTINGS ===== *****/


/* HEADINGS */

h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 20px;
            line-height: 1.3;


        }

        h1 {
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            font-weight: 900;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            position: relative;
            padding-bottom: 15px;
        }

    
        h3 {
            font-size: clamp(1.6rem, 3vw, 1.9rem);
        }

        p {
            margin-bottom: 20px;
            font-size: clamp(1rem, 1.1rem, 1.2rem);
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            display: block;
            height: auto;
        }




/** BUTTONS  & SECTION TITLES**/


 .btn {
            display: inline-block;
            padding: 14px 30px;
            border-radius: 50px;
            text-align: center;
            font-weight: 700;
            font-size: clamp(1rem, 1.1rem, 1.2rem);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            min-width: 180px;
        }

.btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
        }

        .btn-primary:hover, .btn-primary:focus {
            background: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
        }

        .btn-secondary {
            background: var(--secondary);
            color: white;
            box-shadow: 0 6px 15px rgba(46, 41, 78, 0.3);
        }

        .btn-secondary:hover, .btn-secondary:focus {
            background: #252142;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(46, 41, 78, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 3px solid var(--primary);
            color: var(--primary);
            font-weight: 700;
        }

        .btn-outline:hover, .btn-outline:focus {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

      /*   .text-center {
            text-align: center;
        }

        .section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            display: inline-block;
        }

        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            max-width: 700px;
            margin: 20px auto 0;
            font-size: clamp(1rem, 1.1rem, 1.2rem);
            color: var(--gray);
        }

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


           h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: var(--primary);
            border-radius: 10px;
        }  */










/* TOP BAR - CTB */

  .ctb-section {
          display: block;
          background-color: var(--spj-primary);
          padding:0.5rem 0;
         
          }
        
          .ctb-container {
            margin:0 2rem;
            display: block;
            gap:30px;
            
          }
        
          .ctb-info {
            gap: 20px;
            font-size: 1rem;
          }
        
          .ctb-social {
            display: none;
          }
        
          .ctb-item {
            display: flex;
            align-items: center;
            gap: 10px;
            /* text-decoration: none; */
            color: var(--spj-white);
            font-weight: bold;
            font-size: 16px;
          }

          .ctb-item:nth-child(1) {
            display:none;
          }

        


  /***** ===== MENU HEADER ===== *****/



  .cit-nav-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .cit-nav {
  /*   background-color: white; */
    box-shadow: var(--shadow);
    position: relative;
    z-index: 100;
  }

  .cit-navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: background 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1rem;
    gap:60px;
    height: 65px;
  }


  .cit-nav-container .cit-scrolled {
    background: var(--spj-white);
}

.cit-nav-container .cit-scrolled .cit-get-started {
    background-color: #000;
    color: #fff;
}

 .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            width: 100%;
            margin-right: 5px;
        }

        .logo h1 {
            font-size: clamp(1.8rem, 2.2rem, 2.5rem);
            font-weight: 900;
            color: var(--secondary);
            margin-bottom: 0;
        }

        .logo span {
            color: var(--primary);
        }


         .ft-logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
        }
        .ft-logo-text span {
            color:  var(--secondary);
        }


  
/** Whatsapp Button **/

.whatsapp-float {
  position: fixed;
  /* top: 10px; */
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  text-decoration: none;
}

.whatsapp-button {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: w-pulse 2s infinite;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-button img {
  width: 32px;
  height: 32px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #25D366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-size: 14px;
  font-family: sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Pulse Animation */
@keyframes w-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


 /*  .cit-logo, .cit-cta-button {
    flex: 0 0 auto;
  } */
  

  .cit-menu-items {
    display: flex;
    align-items: center;
    text-align: left;
    
  }

  .cit-menu {
    display: flex;
    align-items: center;

  }

  .cit-nav-links {
    display: flex;
    align-items: center;
   /*  padding: 0 0.5rem; */
    flex-wrap: wrap; 
  } 



  .cit-menu-items li {
    list-style: none;
    position: relative;
    margin-left: 25px;
  }

  .cit-menu-items a {
    color: var(--secondary);
    font-weight: 600;
    /* padding: 10px 0px; */
    display: flex;
    align-items: center;
    /* gap: 5px; */
    transition: all 0.3s ease;
     font-size: clamp(0.9rem, 1.1rem, 1.2rem);
      padding: 8px 0;
  }

  

   .cit-menu-items a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--primary);
            left: 0;
            bottom: 0;
            transition: var(--transition);
            border-radius: 3px;
  }

  .cit-menu-items a:hover:after, .cit-menu-items a:focus:after {
            width: 100%;
             
        }

        .cit-menu-items a:hover, .cit-menu-items a:focus {
            color: var(--primary);
        }


   .cit-menu-items a .dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 5px;
    color: var(--spj-primary);
  }

  .cit-menu-items li:hover > a .dropdown-icon {
    transform: rotate(180deg);
  } 

  .cit-cta-button {
/*     margin: 0; */
   /* display: inline-block;  */
    padding: 12px 40px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background-color: var(--spj-primary);
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--spj-white);
    animation: pulse 2s infinite;
    margin-left: 25px;
  }

  .cit-cta-button a {
    color:#ffff;
    text-decoration: none;
  }

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



  .cit-cta-button:hover {
    background-color: var(--spj-white);
    border: 2px solid var(--spj-primary);
    transform: translateY(-2px);
    color: var(--spj-primary);
  }

  .cit .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--spj-white);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
  }

  

  .cit .sub-menu li {
    padding: 0;
    margin-left:0;
  }

  .cit .sub-menu a {
    padding: 10px 20px;
    width: 100%;
    color: var(--spj-fresh-blue);
  }

  .cit-menu-items li:hover >  .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .cit .sub-menu a:hover{
    background-color: var(--spj-primary);
    color:var(--spj-white);
    
  }

  .cit .sub-menu .cit .sub-menu {
    left: 100%;
    top: 0;
  }
  

  .cit-hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--spj-primary);
  }



  @media (max-width: 767px) {

    .cit-navbar {
      height: 60px;
    }

    .logo h1 {
            font-size: clamp(1.4rem, 1.6rem, 2rem);    
        }

    .cit-hamburger {
      display: block;
    }

    .cit-menu-icon {
        font-size: 40px;
        color: var(--spj-primary);
    }

    .cit-menu {
      flex-direction: column;
    }

    .cit-menu-items {
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: var(--spj-white);
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 0;
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-20px);
      transition: all 0.3s ease;
      z-index: 100;
      max-height: calc(100vh - 70px);
      overflow-y: auto;
    }

    .cit-menu-items.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .cit-menu-items li {
      width: 100%;
    }

    .cit-menu-items a {
      padding: 15px 0;
      /* border-bottom: 1px solid var(--teal); */
      width: 100%;
    }

    .cit .sub-menu {
      position: static;
      box-shadow: none;
      display: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      padding-left: 20px;
    }

    .logo-text {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
        }

        

    .cit-menu-items li.open > .sub-menu {
      display: block;
    }

    .cit-menu-items li.open > a .dropdown-icon {
      transform: rotate(180deg);
    }

    .cit .sub-menu .sub-menu {
      padding-left: 20px;
    }

    .cit-cta-button {
      margin-top: 15px;
      width: 100%;
      text-align: center;
      margin-left: 0;
    }
  }







   
   /* Improved Button Hover Effect */
        .apt-btn {
            display: inline-block;
            padding: 14px 28px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            font-weight: 500;
            border-radius: 4px;
            transition: var(--transition);
            border: 2px solid var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .apt-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--white);
            transition: width 0.5s ease;
            z-index: -1;
        }
        
        .apt-btn:hover::before {
            width: 100%;
           
        }
        .apt-btn:hover {
            color: var(--primary);
            border-color: var(--primary);
        }
        
        .apt-btn-secondary {
            background: var(--white);
            color: var(--primary);
            border-color: var(--primary);
        }

         .apt-btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--primary);
            transition: width 0.5s ease;
            z-index: -1;
        }
        
        .apt-btn-secondary:hover {
            color: var(--white);
            background: var(--primary);
        }

         body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background-color: var(--light);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }


  

 /* Hero Section */
        

        .p-csp-hero {
            position: relative;
            overflow: hidden;
            position: relative;
            height: 100vh;
            min-height: 700px;
            color: white;
            overflow: hidden;
        }

        .hero-0{
             background: url('/images/thatches-image.jpg') center/cover no-repeat;
        }
        .hero-1{
             background: url('/images/s-construction.jpg') center/cover no-repeat;
        }
        .hero-2{
             background: url('/images/s-designs.jpg') center/cover no-repeat;
        }
        .hero-3{
             background: url('/images/s-2.jpg') center/cover no-repeat;
        }
        .hero-4{
             background: url('/images/d-c.jpg') center/cover no-repeat;
        }
         


        .p-csp-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 70%;
            height: 95%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            z-index: 10;
        }
        
        .p-csp-overlay-shape-1 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
             clip-path: polygon(40% 0%, 90% 12%, 90% 90%, 0 90%, 0 12%);
        }
        
       /*  .p-csp-overlay-shape-2 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            clip-path: polygon(0 0, 60% 0, 90% 100%, 0 100%);
        }  */
        
        .p-csp-hero-content {
            position: absolute;
            top:15%;
            z-index: 20;
            max-width: 600px;
            color: white;
            padding: 0 10px;
            margin-left: 10%;
            /* opacity: 0; */
            transform: translateX(-20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .p-csp-hero-content.active {
            opacity: 1;
            transform: translateX(0);
        }
        
        .p-csp-hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            color: white;
        }

        .p-csp-hero-title span {
          color: var(--primary);
        }
        
        .p-csp-hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .csp-btn-group {
            display: flex;
            gap: 20px;
        }
        
        .csp-btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 500;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            font-size: 1rem;
            border: none;
            cursor: pointer;
        }
        
        .csp-btn-primary {
            background: var(--primary);
            color: var(--csp-dark);
        }
        
        .csp-btn-primary:hover {
            background: #ffb82b;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 173, 1, 0.4);
        }
        
        .csp-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .csp-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

         .p-csp-hero h1 span {
            color: var(--primary);
        }

        /* Testimonial Auto Scroll */
        .csp-testimonial-slider {
            overflow: hidden;
            position: relative;
            height: 350px;
        }
        
        .csp-testimonial-wrapper {
            display: flex;
            transition: transform 0.8s ease;
            width: 100%;
        }
        

        @media (max-width: 992px) {
            .p-csp-hero-title {
                font-size: 2.8rem;
            }
            
            .p-csp-overlay-shape-1,
            .p-csp-overlay-shape-2 {
                clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
            }
            
            .p-csp-hero-content {
                margin-left: 0 auto;
                text-align: center;
                padding: 0 20px;
            }

             
            
            .csp-btn-group {
                justify-content: center;
            }
            
           
        }
        
        @media (max-width: 768px) {
          
            .p-csp-hero-title {
                font-size: 2.2rem;
            }
            
            .p-csp-hero-subtitle {
                font-size: 1rem;
            }
            
            .csp-section-title {
                font-size: 2rem;
            }
          }

          @media (max-width: 576px) {

          
            
            
            /* Additional mobile adjustments */
            .p-csp-hero-overlay {
                width: 100%;
                justify-content: center;
            }
            
            .p-csp-hero-content {
                margin-left: 0 auto;
                padding: 0 20px;
                text-align: center;
            }
            
            .csp-btn-group {
                flex-direction: column;
                align-items: center;
            }
            
           
        }


















        



/* Contact Section */
        .csp-contact {
            padding: 100px 0;
            background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover;
            color: white;
        }
        
        .csp-contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            white-space: normal;
             word-break: break-word;
        }
        
        .csp-contact-col {
            padding: 30px;
        }
        
        .csp-contact-cta {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .csp-contact-title {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--csp-primary);
        }
        
        .csp-contact-text {
            line-height: 1.8;
            margin-bottom: 25px;
            opacity: 0.9;
        }
        
        .csp-contact-details {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
        }
        
        .csp-contact-info {
            display: flex;
            /* gap: 1px; */
        }
        .csp-contact-info  i{
         padding: 0;   
            gap: 1px;
        }
        
        .csp-contact-icon {
            color: var(--csp-primary);
            font-size: 1.2rem;
            min-width: 30px;
        }
        
         .csp-map {
            height: 500px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            border: solid 1px #ffad01;
            border-radius: 15px;
        }
        
        .csp-map iframe {
            width: 100%;
            height: 100%;
           
        }

        
        /* Responsive Design */
        @media (max-width: 900px) {
            .csp-contact {
                padding: 60px 0;
            }
            
            .csp-contact-container {
                gap: 30px;
            }
            
            .csp-contact-title {
                font-size: 1.8rem;
            }
            
            .csp-contact-text {
                font-size: 1rem;
            }
            
            .csp-map {
                height: 350px;
            }
        }
        
        @media (max-width: 768px) {
            .csp-contact-container {
                grid-template-columns: 1fr;
            }
            
            .csp-contact-col {
                padding: 20px;
            }
            
            .csp-contact-title {
                font-size: 1.7rem;
            }
            
            .csp-contact-details {
                padding: 25px;
            }
            
            .csp-map {
                height: 300px;
            }
        }
        
        @media (max-width: 480px) {
            header h1 {
                font-size: 2.2rem;
            }
            
            .csp-contact {
                padding: 50px 0;
            }
            
            .csp-contact-container {
                gap: 25px;
            }
            
            .csp-contact-title {
                font-size: 1.6rem;
            }
            
            .csp-contact-info {
                flex-direction: column;
                margin-bottom: 20px;
            }
            
            .csp-contact-icon {
                margin-bottom: 10px;
            }
            
            .csp-contact-btn {
                padding: 12px 25px;
                font-size: 0.9rem;
                width: 100%;
                text-align: center;
            }
            
            .csp-map {
                height: 250px;
            }
        }
        
        .responsive-demo {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .device-btn {
            padding: 10px 20px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .device-btn:hover {
            background: var(--csp-primary);
            color: var(--csp-dark);
        }
        
        .device-btn.active {
            background: var(--csp-primary);
            color: var(--csp-dark);
        }

      /*   .csp-contact-info {

        } */
        
     /* CTA Section */
        .apt-cta {
            padding: 120px 0;
            color: white;
            text-align: center;
            position: relative;
           /*  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); */
           margin: 3rem 0;
        }

        .apt-cta-section {
            background: linear-gradient(rgba(26, 60, 46, 0.5), rgba(26, 60, 46, 0.7)), url('/images/hero-6.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
          /*   padding: 6rem 2rem; */
          /*   border-radius: 15px; */
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .cta-section h2::after {
            background: white;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .apt-cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        
        .apt-cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .apt-cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .apt-cta-text {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .apt-cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }
        
        .apt-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            font-size: 0.9rem;
            background: var(--apt-primary);
            color: var(--apt-dark);
        }
        
        .apt-cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            background: #d4bc7c;
        }
        
        .apt-cta-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .apt-cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .apt-cta-btn-whatsapp {
            background: #25D366;
            color: white;
        } 



         /* Our Work Section */
         .apt-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        } 
        .apt-our-work {
            background-color: #fff;
            padding: 5rem 0;
            position: relative;
        }
        
        .apt-our-work-content {
            text-align: center;
        }
        
        .apt-work-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
            place-content: center;
        }
        
        .apt-work-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 250px;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .apt-work-item:hover {
            transform: translateY(-5px);
        }
        
        .apt-work-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .apt-work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 60, 46, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .apt-work-item:hover .apt-work-overlay {
            opacity: 1;
        }
        
        .apt-work-overlay i {
            color: white;
            font-size: 2rem;
        }
        
        /* Lightbox */
        .apt-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        
        .apt-lightbox.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .apt-lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .apt-lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            margin: 0 auto;
        }
        
        .apt-lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 10;
        }
        
        .apt-lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }
        
        .apt-lightbox-btn {
            background: rgba(255,255,255,0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            transition: background 0.3s ease;
        }
        
        .apt-lightbox-btn:hover {
            background: var(--primary);
        }












                
/* ===== FAQ & TSM SECTION ===== */


/* FAQ and Testimonials Section */

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


        .faq-testimonials {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 60px;
            padding: 40px 0;
            width: 100%;
             text-align: center;
        }

        
        .pattern-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 20%);
            z-index: 0;
        }

        .faq-testimonials-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .faq-column, .testimonials-column {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            padding: 0 15px;
        }

        .faq-column h2, .testimonials-column h2 {
            text-align: center;
            margin-bottom: 30px;
            width: 100%;
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: var(--dark);
            position: relative;
            padding: 0 10px;
        }

        .faq-column h2:after, .testimonials-column h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        /* FAQ Accordion */
        .accordion {
            width: 100%;
            max-width: 800px;
        }

        .accordion-item {
            margin-bottom: 15px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: white;
            position: relative;
            width: 100%;
        }

        .accordion-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 6px;
            background: var(--primary);
        }

        .accordion-header {
            padding: 18px 20px 18px 30px;
            background: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: clamp(1.1rem, 1.2vw, 1.3rem);
            position: relative;
            outline: none;
            transition: var(--transition);
        }

        .accordion-header:hover {
            background-color: #fff8f5;
        }

        .accordion-header.active {
            color: var(--dark);
        }

        .accordion-header i {
            transition: var(--transition);
            font-size: 1.3rem;
            min-width: 24px;
            text-align: center;
        }

        .accordion-header.active i {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .accordion-content {
            padding: 0 20px 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: white;
            line-height: 1.8;
        }

        .accordion-content.show {
            padding: 0 20px 25px 30px;
            max-height: 500px;
        }

        .accordion-content p {
            margin: 15px 0;
            font-size: clamp(0.95rem, 1.05vw, 1.1rem);
        }

        /* Testimonials */
        .testimonial-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .testimonial-card {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            position: relative;
            min-width: calc(100% - 30px);
            box-sizing: border-box;
            margin: 0 10px;
        }

        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 5rem;
            color: rgba(255, 107, 53, 0.1);
            font-family: serif;
            line-height: 1;
            font-weight: 900;
        }

        .testimonial-content {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            font-size: clamp(1rem, 1.1vw, 1.2rem);
            font-style: italic;
            padding: 0 20px;
            color: #444;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            padding-left: 20px;
        }

        .author-img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            background: #f0f0f0;
            border: 3px solid var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .author-info h4 {
            margin-bottom: 5px;
            font-size: clamp(1.1rem, 1.2vw, 1.3rem);
            color: var(--dark);
        }

        .author-info p {
            margin-bottom: 0;
            color: var(--gray);
            font-size: clamp(0.9rem, 0.95vw, 1rem);
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1.1rem;
            outline: none;
            box-shadow: var(--shadow);
        }

        .carousel-btn:hover, .carousel-btn:focus {
            background: var(--primary-dark);
            transform: scale(1.1);
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .faq-testimonials-container {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }
            
            .faq-testimonials {
                padding: 60px 0;
            }
            
            .testimonial-card {
                min-width: calc(100% - 20px);
                margin: 0 10px;
            }
            
            .author-img {
                width: 60px;
                height: 60px;
            }
        }

        @media (min-width: 992px) {
            .faq-testimonials {
                padding: 80px 0;
            }
        }

        @media (max-width: 767px) {
            .faq-testimonials {
                padding: 40px 0;
            }
            
            .faq-testimonials-container {
                gap: 30px;
            }
            
            .accordion-header {
                padding: 16px 15px 16px 25px;
            }
            
            .testimonial-card {
                padding: 22px 8px;
                min-width: calc(100% - 5px);
                margin: 0 5px;
            }
            
            .testimonial-content {
                padding: 0 15px;
            }
            
            .author-img {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .carousel-btn {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 480px) {
           
            .section-title {
                margin: 20px 0;
            }
            
            .faq-testimonials {
                padding: 30px 0;
                border-radius: 10px;
            }
            
            .faq-column h2, 
            .testimonials-column h2 {
                margin-bottom: 25px;
            }
            
            .accordion-header {
                padding: 18px 15px 18px 25px;
                font-size: 1.1rem;
            }
            
            .accordion-content p {
                font-size: 0.95rem;
            }
            
            .testimonial-card {
                padding: 20px 15px;
                min-width: calc(100% - 5px);
                margin: 0;
            }
            
            .testimonial-card:before {
                font-size: 4rem;
                top: 5px;
            }
            
            .testimonial-content {
                padding: 0 10px;
                font-size: 1rem;
            }
            
            .testimonial-author {
                padding-left: 10px;
            }
            
            .author-img {
                width: 45px;
                height: 45px;
                margin-right: 12px;
            }
            
            .carousel-nav {
                margin-top: 25px;
            }
        }
        
        /* Mobile centering fixes */
        .faq-column, .testimonials-column {
            overflow: hidden;
        }
        
        .testimonial-track {
            width: 100%;
        }
        
        .testimonial-container {
            width: 100%;
            overflow: hidden;
            padding: 0;
        }
        
        .testimonial-card {
            flex-shrink: 0;
            width: calc(100% - 5px);
        }
        
        .mobile-container {
            max-width: 100%;
            overflow: hidden;
        }








  /* Footer */

   :root {
            --primary: #C2AB69;
           /*  --primary-dark: #e69d00; */
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --medium: #495057;
            --section-bg: #f5f7fa;
        }
        
     
        
        .csp-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            white-space: normal;
           word-break: break-word;
        }
        
        .footer-col h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        
        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links li a i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 14px;
        }
        
        .footer-links li a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }



         /* Move to Top Button */
        .scroll-to-top {
            position: fixed;
            left: 25px;
            bottom: 25px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #A76B2D, #E5B887);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(167, 107, 45, 0.4);
            transition: all 0.4s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }
        
        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(167, 107, 45, 0.6);
        }
        
        /* Animation for the icon */
        .scroll-to-top i {
            transition: transform 0.3s ease;
        }
        
        .scroll-to-top:hover i {
            transform: translateY(-3px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .scroll-to-top {
                left: 15px;
                bottom: 15px;
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
            
            .content-section {
                padding: 20px;
                margin: 20px auto;
            }
        }
        
        @media (max-width: 480px) {
            .scroll-to-top {
                left: 10px;
                bottom: 10px;
                width: 50px;
                height: 50px;
                font-size: 16px;
            }
        }



























































































































































































    

@media(min-width:768px) and (max-width: 1023px) {

        /* CTA SECTION */
      
        .ctb-section {
          display: block;
          background-color: var(--spj-primary);
          padding:1rem 0;
         
          }
        
          .ctb-container {
            margin:0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap:30px;
          }
        
          .ctb-info {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
          }
        
          .ctb-social {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
          }
        
          .ctb-item {
            display: flex;
            align-items: center;
            gap: 10px;
            /* text-decoration: none; */
            color: var(--spj-white);
            font-weight: bold;
          }

          .ctb-item:nth-child(1) {
            display:block;
          }

        
    
          } 








      @media (min-width: 1024px) { 

        /* CTB SECTION */

        .ctb-section {
        display: block;
        background-color: var(--spj-primary);
        padding:1rem 0;
        }
      
        .ctb-container {
          margin:0 6rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap:50px;
          text-align: center;
          
        }
      
        .ctb-info {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 25px;
        }
      
        .ctb-social {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 15px;
        }
      
      
        .ctb-item {
          display: flex;
          gap: 10px;
          text-decoration: none;
          color: var(--spj-white);
          font-weight: 600;
          align-items: center;
        }

        .ctb-item:nth-child(1) {
            display:block;
          }



  .cit-navbar {
      padding: 0 6rem;
  }

  .cit-nav-container .cit-scrolled {
      background-color: var(--bizhub-white);
      top: 0;
  }

  .cit-nav-container .cit-scrolled a {
      color: var(--bizhub-primary-light);
  }

  .cit-nav-container .cit-scrolled a:hover {
      color: var(--bizhub-black);
  }

  .cit-nav-container .cit-scrolled .cit-cta-button:hover {
      color: var(--bizhub-primary-color);
  }

  .cit-nav-container .cit-scrolled .cit-cta-button {
      background-color: var(--bizhub-black);
  }

      
  }