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

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


  --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;
        }



        .ita-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0px;
        }
        
        /* Center align all section titles */

        .ita-section-title {
            text-align: center;
            display: block;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            position: relative;
        }
        
        .ita-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--ita-primary);
        }
        
        /*  Responsive Design for Section Title  */

/* Tablets */
@media (max-width: 1024px) {
  .ita-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .ita-section-title {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    padding: 0 1.5rem; /* Adds breathing space on sides */
  }
}

/* Small phones */
@media (max-width: 480px) {
  .ita-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    padding: 0 1.2rem;
  }
}


  h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            margin-bottom: 2.5rem;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            width: 80px;
            height: 4px;
            background: var(--ita-primary);
            left: 50%;
            transform: translateX(-50%);
        }
        
        section {
            padding: 5rem 0;
        }



/** BUTTONS  & SECTION TITLES**/

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

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






/* TOP BAR - CTB */

  .ctb-section {
          display: block;
          background-color: var(--ita-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(--ita-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(--ita-white);
}

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

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

        .logo img {
            height: 60px;
            width: 100%;
            /* margin-right: 5px; */
        }
        /* .logo2 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-text {
            font-size: 1rem;
            font-weight: 700;
            color:var(--ita-primary);
            line-height: 1em;
        }

        /* Tablet view */
@media (max-width: 992px) {
    .logo-text {
        font-size: 1rem;
    }
}

/* Mobile view */
@media (max-width: 600px) {
    .logo-text {
        font-size: 0.8rem;
        line-height: 1em;
    }
}

        .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(--ita-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(--ita-primary);
        }


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

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


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

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

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



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

  .cit .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--ita-white);
    min-width: 280px;
    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(--ita-fresh-blue);
  }

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

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

  .cit-hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--ita-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(--ita-primary);
    }

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

    .cit-menu-items {
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: var(--ita-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;
    }

        

    .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;
    }
  }

  

 /***** Hero Section *****/


 .ita-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.ita-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ita-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 9s ease-out;
  background-size: cover;
  background-position: center;
  will-change: transform, opacity;
}


.ita-slide.active {
  opacity: 1;
  transform: scale(1.1); /* Zoom-in effect */
  z-index: 2;
}

.ita-slide-1 { background-image: url('/images/decks-and-wood-deck-hero.jpeg'); }
.ita-slide-2 { background-image: url('/images/decks-and-wood-pergolas-hero-2.jpeg'); }
.ita-slide-3 { background-image: url('/images/decks-and-wood-decks-hero-3.jpeg'); }
.ita-slide-4 { background-image: url('/images/decks-and-wood-work-hero-4.jpeg'); }

.ita-hero-overlay {
    position: absolute;
    top: 15px;
    left: 0;
    width: 70%;
    height: 95%;
    z-index: 10;
}

.ita-overlay-shape-1 { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    clip-path: polygon(15% 15%, 85% 15%, 85% 70%, 15% 70%);
}

.ita-overlay-shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    clip-path: polygon(10% 10%, 90% 10%, 90% 75%, 10% 75%);
}



/* Fixed Content Container */
.ita-hero-content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ita-hero-content {
    position: absolute;
    top: 18%;
    left: 15%;
    max-width: 650px;
    color: white;
    padding: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 2s ease, transform 3s ease;
    pointer-events: none;
}

.ita-hero-content.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.ita-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.ita-hero-title span {
    color: var(--ita-primary);
}

.ita-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ita-btn-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}


.ita-feature-badges {
            position: absolute;
            top: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 30;
        }

        .ita-badge {
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--ita-dark);
            padding: 12px 20px;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            transform: translateX(100px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .ita-badge i {
            color: var(--ita-primary);
            font-size: 1.2rem;
        }

        .ita-badge.show {
            transform: translateX(0);
            opacity: 1;
        }



/* Responsive Styles */
@media (max-width: 992px) {
    .ita-hero-title {
        font-size: 3rem;
    }

    .ita-overlay-shape-1 {
        clip-path: polygon(0 0, 60% 0, 90% 100%, 0 100%);
    }

    .ita-overlay-shape-2 {
        clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
    }
}

/* =========================================
   Responsive Design for Hero Section
   ========================================= */

/* Tablets (portrait & landscape) */
@media (max-width: 1024px) {
  .ita-hero {
    height: 80vh;
  }

  .ita-hero-content {
    top: 20%;
    left: 10%;
    max-width: 500px;
    padding: 15px;
  }

  .ita-hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .ita-hero-subtitle {
    font-size: 1rem;
  }

  .ita-btn-group {
    flex-wrap: wrap;
    gap: 15px;
  }

  .ita-btn {
    font-size: 0.95rem;
   /*  padding: 10px 22px; */
    min-width: 140px;
  }

  .ita-hero-overlay {
    width: 85%;
  }

  .ita-overlay-shape-1 {
    clip-path: polygon(10% 10%, 90% 10%, 90% 80%, 10% 80%);
  }

  .ita-overlay-shape-2 {
    clip-path: polygon(8% 8%, 92% 8%, 92% 82%, 8% 82%);
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .ita-hero {
    height: 90vh;
  }

  .ita-hero-content {
    top: 18%;
    left: 8%;
    right: 8%;
    max-width: 100%;
    text-align: center;
    transform: translateX(0);
  }

  .ita-hero-title {
    font-size: 2.2rem;
  }

  .ita-hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .ita-btn-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* .ita-btn {
    width: 80%;
    padding: 10px 20px;
    font-size: 0.9rem;
  } */

  .ita-hero-overlay {
    width: 100%;
    height: 100%;
    top: 0;
  }

  .ita-overlay-shape-1,
  .ita-overlay-shape-2 {
    clip-path: none;
    background: rgba(0, 0, 0, 0.1);
  }

  .ita-feature-badges {
    display:none;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .ita-hero {
    height: 100vh;
  }

  .ita-hero-content {
    top: 15%;
    padding: 10px;
  }

  .ita-hero-title {
    font-size: 2rem;
  }

  .ita-hero-subtitle {
    font-size: 1rem;
  }

 /*  .ita-btn {
    font-size: 0.85rem;
    padding: 8px 18px;
  } */
}
        



/* Accreditation Section */


.ita-accreditations {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    margin-bottom: 60px;
}

.ita-accred-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.ita-accred-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.ita-accred-icon {
    font-size: 2.5rem;
    color: var(--ita-primary);
}

.ita-accred-text {
    font-weight: 600;
    color: var(--ita-dark);
}

.ita-accred-icon {
  width: 70px;
  height: 70px;
  background: var(--ita-primary); /* faint tone of #821922 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ita-white); /* main brand color */
  font-size: 2rem;
  transition: all 0.3s ease;
}

.ita-accred-item:hover .ita-accred-icon {
  background: var(--ita-dark); /* accent color */
  color: var(--ita-white);
  transform: scale(1.1);
}


.ita-divider {
  width: 1px;
  background: var(--ita-primary);
  align-self: center;
  height: 80px;
}

/* Responsive: Stack on mobile */

/* Tablets */
@media (max-width: 1024px) {
  .ita-accred-container {
    gap: 30px;
    padding: 25px 30px;
  }

  .ita-accred-item {
    flex: 1 1 45%;
    max-width: 75%;
    justify-content: flex-start;
  }

  .ita-accred-text {
    font-size: 1rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
    
    .ita-accreditations{
        margin-top: 0px;
        padding:0.5rem;
    }
  .ita-accred-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 25px 20px;
  }

  .ita-accred-item {
    flex-direction: column;
    max-width: 100%;
    gap: 10px;
  }

  .ita-accred-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .ita-accred-text {
    font-size: 1.2rem;
    text-align: center;
  }

  .ita-divider {
    display: none;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .ita-accred-container {
    padding: 20px 15px;
  }

  .ita-accred-item {
    gap: 8px;
  }

  .ita-accred-text {
    font-size: 0.95rem;
  }
}



        

/* About Section */

        .ita-about {
            background-color: white;
        }
        
        .ita-about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .ita-about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: translateX(-100px);
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
        }
        
        .ita-about-img.visible {
            transform: translateX(0);
            opacity: 1;
        }
        
        .ita-about-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .ita-about-text h2 {
            text-align: center;
        }
        
        .ita-about-text {
            flex: 1;
            transform: translateX(100px);
            opacity: 0;
            transition: transform 0.8s ease, opacity 0.8s ease;
        }
        
        .ita-about-text.visible {
            transform: translateX(0);
            opacity: 1;
        }
        
        .ita-about-text h2 {
            margin-bottom: 1.5rem;
        }
        
        .ita-about-text p {
            margin-bottom: 1.5rem;
            color: var(--gray);
        }

         /* Responsive Design */
        @media (max-width: 992px) {
            .ita-about-content {
                padding: 2rem;
                gap: 2rem;
            }
            
            .ita-about-text h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
          
            .ita-about-content {
                flex-direction: column;
                padding: 1.5rem;
            }
            
            .ita-about-img {
                width: 100%;
                transform: translateY(50px);
            }
            
            .ita-about-img.visible {
                transform: translateY(0);
            }
            
            .ita-about-text {
                width: 100%;
                transform: translateY(50px);
            }
            
            .ita-about-text.visible {
                transform: translateY(0);
            }
            
            .features {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            header h1 {
                font-size: 2.2rem;
            }
            
            .ita-about-content {
                padding: 0.5rem;
            }
            
            .ita-about-text h2 {
                font-size: 1.6rem;
            }
        }



/* Stats Section */

.ita-stats {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('/images/ita-bg-1.jpg') fixed center/cover;
    color: white;
    position: relative;
}

.ita-stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.ita-stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.ita-stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.ita-stat-icon {
    width: 80px;
    height: 80px;
    background: var(--ita-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--ita-white);
}

.ita-stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--ita-white);
    font-family: 'Montserrat', sans-serif;
}

.ita-stat-text {
    font-size: 1.2rem;
    font-weight: 500;
}
        
 

/* Tablets (portrait & landscape) */
@media (max-width: 1024px) {
  .ita-stats {
    padding: 80px 0;
  }

  .ita-stats-container {
    gap: 30px;
    justify-content: center;
  }

  .ita-stat-item {
    flex: 1 1 45%;
    max-width: 45%;
    padding: 20px;
  }

  .ita-stat-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .ita-stat-number {
    font-size: 3rem;
  }

  .ita-stat-text {
    font-size: 1.1rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .ita-stats {
    padding: 60px 0;
  }

  .ita-stats-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0 1.5rem; /* ✅ 1.5rem left & right padding on mobile */
  }

  .ita-stat-item {
    width: 100%;
    max-width: 380px;
    padding: 25px 15px;
  }

  .ita-stat-icon {
    width: 60px;
    height: 60px;
   
    margin-bottom: 15px;
  }

}

/* Small phones */
@media (max-width: 480px) {
  .ita-stats {
    padding: 50px 0;
  }

  .ita-stats-container {
    gap: 20px;
    padding: 0 0.5rem; /* ✅ keep 1.5rem padding for smallest screens */
  }

  .ita-stat-item {
    padding: 20px 10px;
  }

 
}
     


/* Services Section */

         
  /* Services Section Styling */

        .kenny-services {
            background: #f9f9f9;
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 1200px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
             margin: 0 auto;
        }

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

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

        .kenny-section-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            color: #000;
            font-weight: 900;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .kenny-section-header h2 span {
            color: var(--ita-primary);
        }

        .kenny-section-header p {
            color: #555;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .kenny-service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            justify-content: center;
        }

        .kenny-service-card {
            background: #fff;
            padding: 40px 25px;
            border-radius: 18px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .kenny-service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, #BC141A, #ff4d4f);
            transition: all 0.5s ease;
            z-index: 0;
        }

        .kenny-service-card:hover::before {
            left: 0;
        }

        .kenny-service-card:hover {
            color: #fff;
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(188, 20, 26, 0.2);
        }

        .kenny-icon-container {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--ita-primary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .kenny-service-card:hover .kenny-icon-container {
            background: var(--ita-white);
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        

        .kenny-icon {
            font-size: 2.5rem;
            color: var(--ita-white);
            transition: all 0.4s ease;
        }

        .kenny-service-card:hover .kenny-icon {
            color: var(--ita-primary);
            transform: rotate(5deg);
        }

        .kenny-service-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .kenny-service-card p {
            color: #555;
            font-size: 1rem;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            line-height: 1.6;
        }

        .kenny-service-card:hover p {
            color: #fff;
        }


        .kenny-btn {
            display: inline-block;
            padding: 14px 28px;
            background: var(--ita-primary);
            color: white;
            text-decoration: none;
            font-weight: 500;
            border-radius: 4px;
            transition: var(--transition);
            border: 2px solid var(--ita-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .kenny-service-card:hover .kenny-btn {
            background: #fff;
            color: #BC141A;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Floating shapes for background */
        .kenny-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(221, 121, 124, 0.5);
            animation: float 15s infinite linear;
        }

        .kenny-shape-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .kenny-shape-2 {
            width: 80px;
            height: 80px;
            top: 95%;
            left: 85%;
            animation-delay: 5s;
        }

        .kenny-shape-3 {
            width: 150px;
            height: 150px;
            top: 20%;
            left: 90%;
            animation-delay: 10s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .kenny-service-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .kenny-services {
                padding: 70px 20px;
            }
            
            .kenny-section-header h2 {
                font-size: 2rem;
            }
            
            .kenny-section-header p {
                font-size: 1rem;
            }
            
            .kenny-service-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .kenny-services {
                padding: 50px 0.5rem;
            }
            
            .kenny-section-header h2 {
                font-size: 1.8rem;
            }
            
            .kenny-service-grid {
                grid-template-columns: 1fr;
            }
            
            .kenny-icon-container {
                width: 80px;
                height: 80px;
            }
            
            .kenny-icon {
                font-size: 2rem;
            }
        }




 /*** HOW WE WORK ***/

.kenny-process {
            width: 100%;
            max-width: 1400px;
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
            border-radius: 30px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .kenny-process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
            opacity: 0.03;
            z-index: 1;
        }

        .kenny-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .kenny-section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .kenny-section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--ita-dark);
            position: relative;
            display: inline-block;
        }

        .kenny-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--ita-primary);
            border-radius: 2px;
        }

        .kenny-section-subtitle {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 40px auto 0;
            color: var(--ita-gray);
            line-height: 1.7;
        }

        /* Process Steps with Enhanced Arrows */
        .kenny-process-steps {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            margin-bottom: 80px;
            gap: 20px;
        }

        .kenny-process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            position: relative;
            z-index: 2;
            min-width: 0;
        }

        .kenny-step-connector {
            position: absolute;
            top: 60px;
            left: 100%;
            width: calc(100% - 40px);
            height: 4px;
            background: linear-gradient(to right, var(--ita-primary), var(--ita-gold));
            z-index: 1;
            transform: translateX(-50%);
        }

        .kenny-step-connector::after {
            content: '';
            position: absolute;
            top: -8px;
            right: -8px;
            width: 20px;
            height: 20px;
            border-top: 4px solid var(--ita-primary);
            border-right: 4px solid var(--ita-primary);
            transform: rotate(45deg);
            background: var(--ita-white);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(188, 20, 26, 0.3);
        }

        .kenny-step-icon-container {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--ita-white);
            border-radius: 50%;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            margin-bottom: 25px;
            position: relative;
            z-index: 3;
            transition: all 0.4s ease;
            border: 4px solid var(--ita-primary);
        }

        .kenny-step-icon {
            font-size: 3rem;
            color: var(--ita-primary);
            transition: all 0.4s ease;
        }

        .kenny-process-step:hover .kenny-step-icon-container {
            transform: scale(1.15);
            background: var(--ita-primary);
            box-shadow: 0 20px 40px rgba(188, 20, 26, 0.4);
        }

        .kenny-process-step:hover .kenny-step-icon {
            color: var(--ita-white);
        }

        .kenny-step-number {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 50px;
            height: 50px;
            background: var(--ita-gold);
            color: var(--ita-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.5rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            z-index: 4;
        }

        .kenny-step-content {
            background: var(--ita-white);
            padding: 30px 25px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            width: 100%;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .kenny-process-step:hover .kenny-step-content {
            transform: translateY(-15px);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
            border-color: rgba(188, 20, 26, 0.2);
        }

        .kenny-step-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--ita-dark);
        }

        .kenny-step-description {
            color: var(--ita-gray);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Extraordinary Features */
        .kenny-step-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            box-shadow: 0 0 30px rgba(188, 20, 26, 0);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .kenny-process-step:hover .kenny-step-glow {
            box-shadow: 0 0 30px rgba(188, 20, 26, 0.3);
        }

        .kenny-step-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--ita-primary);
            opacity: 0;
            z-index: -1;
            animation: pulse 3s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.7;
            }
            70% {
                transform: scale(1.3);
                opacity: 0;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        /* Process Guarantee */
        .kenny-process-guarantee {
            text-align: center;
            padding: 50px 40px;
            background: linear-gradient(135deg, var(--ita-primary) 0%, #e6777b 100%);
            border-radius: 25px;
            color: var(--ita-white);
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(247, 112, 117, 0.3);
        }

        .kenny-process-guarantee::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/images/decks-and-wood-engineering-logo.png') center/cover no-repeat;
            opacity: 0.1;
            z-index: 1;
        }

        .kenny-guarantee-content {
            position: relative;
            z-index: 2;
        }

        .kenny-guarantee-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            color: var(--ita-gold);
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
        }

        .kenny-guarantee-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }

        .kenny-guarantee-text {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* Animated Elements */
        .kenny-floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
            pointer-events: none;
        }

        .kenny-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(188, 20, 26, 0.03);
            animation: float 20s infinite linear;
        }

        .kenny-shape-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .kenny-shape-2 {
            width: 80px;
            height: 80px;
            top: 70%;
            left: 85%;
            animation-delay: 5s;
        }

        .kenny-shape-3 {
            width: 150px;
            height: 150px;
            top: 20%;
            left: 90%;
            animation-delay: 10s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .kenny-step-icon-container {
                width: 100px;
                height: 100px;
            }
            
            .kenny-step-icon {
                font-size: 2.5rem;
            }
            
            .kenny-step-number {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .kenny-step-content {
                padding: 25px 20px;
            }
        }

        @media (max-width: 992px) {
            .kenny-process-steps {
                flex-direction: column;
                align-items: center;
                gap: 60px;
            }
            
            .kenny-process-step {
                width: 100%;
                max-width: 500px;
                flex-direction: row;
                text-align: left;
                gap: 25px;
            }
            
            .kenny-step-connector {
                display: none;
            }
            
            .kenny-step-content {
                flex: 1;
            }
            
            .kenny-step-number {
                top: -15px;
                right: auto;
                left: -15px;
            }
            
            /* Vertical connectors for mobile */
            .kenny-process-steps::before {
                content: '';
                position: absolute;
                top: 0;
                left: 60px;
                width: 4px;
                height: 100%;
                background: linear-gradient(to bottom, var(--ita-primary), var(--ita-gold));
                z-index: 1;
            }
            
            .kenny-process-step::after {
                content: '';
                position: absolute;
                top: 60px;
                left: 60px;
                width: 25px;
                height: 4px;
                background: var(--ita-primary);
                z-index: 2;
            }
        }

        @media (max-width: 768px) {
            .kenny-process {
                padding: 70px 0;
            }
            
            .kenny-section-header {
                margin-bottom: 50px;
            }
            
            .kenny-section-title {
                font-size: 2.2rem;
            }
            
            .kenny-section-subtitle {
                font-size: 1.1rem;
            }
            
            .kenny-process-step {
                gap: 20px;
            }
            
            .kenny-step-icon-container {
                width: 80px;
                height: 80px;
            }
            
            .kenny-step-icon {
                font-size: 2rem;
            }
            
            .kenny-step-number {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .kenny-guarantee-title {
                font-size: 1.8rem;
            }
            
            .kenny-guarantee-text {
                font-size: 1.1rem;
            }
            
            /* Adjust vertical line for mobile */
            .kenny-process-steps::before {
                left: 40px;
            }
            
            .kenny-process-step::after {
                left: 40px;
                top: 40px;
            }
        }

        @media (max-width: 480px) {
            .kenny-process {
                padding: 50px 0;
                border-radius: 20px;
            }
            
            .kenny-section-title {
                font-size: 1.8rem;
            }
            
            .kenny-section-subtitle {
                font-size: 1rem;
            }
            
            .kenny-process-step {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .kenny-step-number {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .kenny-guarantee-icon {
                font-size: 3rem;
            }
            
            .kenny-guarantee-title {
                font-size: 1.5rem;
            }
            
            .kenny-guarantee-text {
                font-size: 1rem;
            }
            
            /* Hide vertical line for very small screens */
            .kenny-process-steps::before,
            .kenny-process-step::after {
                display: none;
            }
            
            /* body {
                padding: 20px 10px;
            } */
        }

/* Why Us Section */
 .kenny-why-us {
            width: 100%;
            max-width: 1400px;
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
            border-radius: 30px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .kenny-why-us::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           background: url('/images/woodwork-and-pallet-projects-wooden-floor.jpg') center/cover no-repeat;
            z-index: 1;
        }

        .kenny-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .kenny-section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .kenny-section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--ita-dark);
            position: relative;
            display: inline-block;
        }

        .kenny-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--ita-primary);
            border-radius: 2px;
        }

        .kenny-section-subtitle {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 40px auto 0;
            color: var(--ita-gray);
            line-height: 1.7;
        }


        /* Why Grid Layout */
        .kenny-why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .kenny-why-item {
            background: var(--ita-white);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .kenny-why-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(188, 20, 26, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .kenny-why-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .kenny-why-item:hover::before {
            opacity: 1;
        }

        .kenny-why-icon-container {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--ita-white);
            border-radius: 50%;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
            border: 3px solid var(--ita-primary);
        }

        .kenny-why-icon {
            font-size: 2.5rem;
            color: var(--ita-primary);
            transition: all 0.4s ease;
        }

        .kenny-why-item:hover .kenny-why-icon-container {
            transform: scale(1.1);
            background: var(--ita-primary);
            box-shadow: 0 15px 30px rgba(188, 20, 26, 0.3);
        }

        .kenny-why-item:hover .kenny-why-icon {
            color: var(--ita-white);
        }

        .kenny-why-item h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--ita-dark);
            position: relative;
            z-index: 2;
        }

        .kenny-why-item p {
            color: var(--ita-gray);
            line-height: 1.7;
            font-size: 1rem;
            position: relative;
            z-index: 2;
        }

        /* Feature Badge */
        .kenny-feature-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--ita-gold);
            color: var(--ita-dark);
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transform: translateX(20px);
            opacity: 0;
            transition: all 0.4s ease 0.2s;
        }

        .kenny-why-item:hover .kenny-feature-badge {
            transform: translateX(0);
            opacity: 1;
        }

        /* Animated Elements */
        .kenny-floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
            pointer-events: none;
        }

        .kenny-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(188, 20, 26, 0.03);
            animation: float 20s infinite linear;
        }

        .kenny-shape-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .kenny-shape-2 {
            width: 80px;
            height: 80px;
            top: 70%;
            left: 85%;
            animation-delay: 5s;
        }

        .kenny-shape-3 {
            width: 150px;
            height: 150px;
            top: 20%;
            left: 90%;
            animation-delay: 10s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* Call to Action */
        .kenny-why-cta {
            text-align: center;
            margin-top: 80px;
            padding: 50px 40px;
            background: linear-gradient(135deg, rgba(185, 0, 0, 0.8) 0%, rgba(255, 60, 67, 0.8) 100%);
            border-radius: 25px;
            color: var(--ita-white);
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(188, 20, 26, 0.3);
        }

        .kenny-why-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/images/decks-and-wood-building-process-3.jpeg') center/cover no-repeat;
            opacity: 0.1;
            z-index: 1;
        }

        .kenny-why-cta-content {
            position: relative;
            z-index: 2;
        }

        .kenny-why-cta h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }

        .kenny-why-cta p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.7;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .kenny-cta-btn {
            display: inline-block;
            background: var(--ita-gold);
            color: var(--ita-dark);
            padding: 15px 35px;
            /* border-radius: 50px; */
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .kenny-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            background: #e6c235;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .kenny-why-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }
        }

        @media (max-width: 992px) {
            .kenny-why-grid {
                gap: 30px;
            }
            
            .kenny-section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .kenny-why-us {
                padding: 70px 0;
            }
            
            .kenny-section-header {
                margin-bottom: 50px;
            }
            
            .kenny-section-title {
                font-size: 2.2rem;
            }
            
            .kenny-section-subtitle {
                font-size: 1.1rem;
            }
            
            .kenny-why-grid {
                grid-template-columns: 1fr;
            }
            
            .kenny-why-item {
                padding: 30px 25px;
            }
            
            .kenny-why-icon-container {
                width: 80px;
                height: 80px;
            }
            
            .kenny-why-icon {
                font-size: 2rem;
            }
            
            .kenny-why-cta h3 {
                font-size: 1.8rem;
            }
            
            .kenny-why-cta p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .kenny-why-us {
                padding: 50px 0;
                border-radius: 20px;
            }
            
            .kenny-section-title {
                font-size: 1.8rem;
            }
            
            .kenny-section-subtitle {
                font-size: 1rem;
            }
            
            .kenny-why-item {
                padding: 25px 20px;
            }
            
            .kenny-why-cta {
                padding: 40px 25px;
            }
            
            .kenny-why-cta h3 {
                font-size: 1.5rem;
            }
            
            .kenny-why-cta p {
                font-size: 1rem;
            }
            
           /*  body {
                padding: 20px 10px;
            } */
        }



/* Contact Section */

        .ita-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;
        }
        
        .ita-contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            white-space: normal;
    word-break: break-word;
        }
        
        .ita-contact-col {
            padding: 30px;
        }
        
        .ita-contact-cta {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .ita-contact-title {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--ita-primary);
        }
        
        .ita-contact-text {
            line-height: 1.8;
            margin-bottom: 25px;
            opacity: 0.9;
        }
        
        .ita-contact-details {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
        }
        
        .ita-contact-info {
            display: flex;
            /* gap: 1px; */
        }
        .ita-contact-info  i{
         padding: 0;   
            gap: 1px;
        }
        
        .ita-contact-icon {
            color: var(--ita-primary);
            font-size: 1.2rem;
            min-width: 30px;
        }
        
         .ita-map {
            height: 500px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            border: solid 1px var(--ita-white);
            border-radius: 15px;
        }
        
        .ita-map iframe {
            width: 100%;
            height: 100%;
            border-radius: 15px;
           
        }

        
        /* Responsive Design */
        @media (max-width: 900px) {
            .ita-contact {
                padding: 60px 0;
            }
            
            .ita-contact-container {
                gap: 30px;
            }
            
            .ita-contact-title {
                font-size: 1.8rem;
            }
            
            .ita-contact-text {
                font-size: 1rem;
            }
            
            .ita-map {
                height: 350px;
            }
        }
        
        @media (max-width: 768px) {
            .ita-contact-container {
                grid-template-columns: 1fr;
            }
            
            .ita-contact-col {
                padding: 20px;
            }
            
            .ita-contact-title {
                font-size: 1.7rem;
            }
            
            .ita-contact-details {
                padding: 25px;
            }
            
            .ita-map {
                height: 300px;
            }
        }
        
        @media (max-width: 480px) {
            header h1 {
                font-size: 2.2rem;
            }
            
            .ita-contact {
                padding: 50px 0;
            }
            
            .ita-contact-container {
                gap: 25px;
            }
            
            .ita-contact-title {
                font-size: 1.6rem;
            }
            
            .ita-contact-info {
                flex-direction: column;
                margin-bottom: 20px;
            }
            
            .ita-contact-icon {
                margin-bottom: 10px;
            }
            
            .ita-contact-btn {
                padding: 12px 25px;
                font-size: 0.9rem;
                width: 100%;
                text-align: center;
            }
            
            .ita-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(--ita-primary);
            color: var(--ita-dark);
        }
        
        .device-btn.active {
            background: var(--ita-primary);
            color: var(--ita-dark);
        }

        .why-p{
            color:#fff;
        }

      /*   .ita-contact-info {

        } */




         /* Partners Section */
        .ita-partners {
            padding: 80px 0;
            background: var(--ita-light);
        }
        
        .ita-partners-container {
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }
        
        .ita-partners-slider {
            display: flex;
            animation: slide 20s linear infinite;
        }
        
        .ita-partner-logo {
            flex: 0 0 200px;
            height: 100px;
            margin: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .ita-partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.1);
        }
        
        .ita-partner-logo img {
            max-height: 60px;
            max-width: 150px;
        }
        
        @keyframes slide {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }



        
     /* CTA Section */
        .ita-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;
        }

        .ita-cta-section {
            background: linear-gradient(rgba(55, 122, 94, 0.4), rgba(81, 172, 134, 0.6)), url('/images/decks-and-wood-decks-work-2.jpeg');
            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%);
        }
        
        .ita-cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        
        .ita-cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .ita-cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .ita-cta-text {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .ita-cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }
        
        .ita-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(--ita-primary);
            color: var(--ita-dark);
        }
        
        .ita-cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            background: #d4bc7c;
        }
        
        .ita-cta-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .ita-cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .ita-cta-btn-whatsapp {
            background: #25D366;
            color: white;
        } 




         /* Our Work Section */
         .ita-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        } 
        .ita-our-work {
            background-color: #fff;
            padding: 5rem 0;
            position: relative;
        }
        
        .ita-our-work-content {
            text-align: center;
        }
        
        .ita-work-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
            place-content: center;
        }
        
        .ita-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;
        }
        
        .ita-work-item:hover {
            transform: translateY(-5px);
        }
        
        .ita-work-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .ita-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;
        }
        
        .ita-work-item:hover .ita-work-overlay {
            opacity: 1;
        }
        
        .ita-work-overlay i {
            color: white;
            font-size: 2rem;
        }
        
        /* Lightbox */
        .ita-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;
        }
        
        .ita-lightbox.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .ita-lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .ita-lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            margin: 0 auto;
        }
        
        .ita-lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 10;
        }
        
        .ita-lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }
        
        .ita-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;
        }
        
        .ita-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(--ita-accent);
            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(--ita-accent);
        }

        .accordion-header {
            padding: 18px 20px 18px 30px;
            background: hsl(0, 100%, 71%);
            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(--ita-accent);
        }

        .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(--ita-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ita-accent);
            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(--ita-accent);
            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);
            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;
        }




  /***** PAGES SECTIONS *****/

  /* Pages Hero Section */
        

     
        .p-ita-hero-0 {
            position: relative;
            height: 100vh;
            background: url('/images/decks-and-wood-deck-hero.jpeg') center/cover no-repeat;
            color: white;
            overflow: hidden;
        }
        .p-ita-hero-1 {
            position: relative;
            height: 100vh;
            background: url('/images/decks-and-wood-balustrade-service.jpg') center/cover no-repeat;
            color: white;
            overflow: hidden;
        }
        .p-ita-hero-2 {
            position: relative;
            height: 100vh;
            background: url('/images/decks-and-wood-carport-service.jpg') center/cover no-repeat;
            color: white;
            overflow: hidden;
        }
        .p-ita-hero-3 {
            position: relative;
            height: 100vh;
            background: url('/images/decks-and-wood-work-19.jpeg') center/cover no-repeat;
            color: white;
            overflow: hidden;
        }
        .p-ita-hero-4 {
            position: relative;
            height: 100vh;
            background: url('/images/decks-and-wood-pergolas-hero-2.jpeg') center/cover no-repeat;
            color: white;
            overflow: hidden;
        }
        .p-ita-hero-5 {
            position: relative;
            height: 100vh;
            background: url('/images/decks-and-wood-work-10.jpeg') center/cover no-repeat;
            color: white;
            overflow: hidden;
        }
        
        .p-ita-hero-6 {
            position: relative;
            height: 100vh;
            background: url('/images/decks-and-wood-main-hero.jpg') center/cover no-repeat;
            color: white;
            overflow: hidden;
        }
        
        .p-ita-hero-7 {
            position: relative;
            height: 100vh;
            background: url('/images/decks-and-wood-decks-hero-3.jpeg') center/cover no-repeat;
            color: white;
            overflow: hidden;
        }
        






        .p-ita-hero-overlay {
            position: absolute;
            top: 15px;
            left: 0;
            width: 70%;
            height: 95%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            z-index: 10;
        }
        

        .p-ita-overlay-shape-1 { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    clip-path: polygon(15% 15%, 85% 15%, 85% 70%, 15% 70%);
}

.p-ita-overlay-shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    clip-path: polygon(10% 10%, 90% 10%, 90% 75%, 10% 75%);
}

.p-ita-hero-content {
    position: absolute;
    top: 18%;
    left: 15%;
    max-width: 650px;
    color: white;
    padding: 20px;
    
}

        
        .p-ita-hero-title {
           font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1rem;
            text-transform: uppercase;
            color: white;
        }

        /* .p-ita-hero-title span {
          color: var(--wbd-primary);
        } */

        
        .p-ita-hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .ita-btn-group {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
    


        

        @media (max-width: 992px) {
            .p-ita-hero-title {
                font-size: 2.8rem;
            }
            
            
            .p-ita-hero-content {
                margin-left: 0 auto;
                text-align: center;
                padding: 0 20px;
            }
            
            .apt-btn-group {
                justify-content: center;
            }
            .p-ita-overlay-shape-1,
  .p-ita-overlay-shape-2 {
    clip-path: none;
    background: rgba(0, 0, 0, 0.1);
  }
            
           
        }
        
        @media (max-width: 768px) {

    .p-ita-hero-content {
    top: 18%;
    left: 0%;
    right: 0%;
    max-width: 100%;
    text-align: center;
            }
          
            .p-ita-hero-title {
                font-size: 2rem;
            }
            
            .p-ita-hero-subtitle {
                font-size: 1rem;
            }
            
            .ita-section-title {
                font-size: 2rem;
            }
          }

          .p-ita-overlay-shape-1,
  .p-ita-overlay-shape-2 {
    clip-path: none;
    background: rgba(0, 0, 0, 0.1);
  }

          @media (max-width: 576px) {

             .p-ita-hero-title {
                font-size: 1.8rem;
            }

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




/* Recurring Hero Section */

.recurring-hero {
  padding: 100px 0;
  /* background-color: var(--ita-light); */
}

.recurring-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.recurring-content {
  flex: 1;
}

.recurring-image {
  flex: 1;
  position: relative;
  border: 5px solid var(--ita-primary);
}

.recurring-image img {  
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  margin-left: 20px;
  margin-top: 20px;
}


h2 span {
  color: var(--ita-primary);
}

.recurring-content p {
  font-size: 1.2rem;
  color: var(--ita-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}


/* .recurring-cta-button {
  display: inline-block;
  background-color: var(--ita-primary);
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.recurring-cta-button:hover {
  background-color: var(--ita-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
} */

/* Responsive */
@media (max-width: 1024px) {
  .recurring-container {
      flex-direction: column;
      gap: 40px;
  }
  
  .recurring-content,
  .recurring-image {
      flex: none;
      width: 100%;
  }
  
  .recurring-image {
      order: -1;
  }
}

@media (max-width: 768px) {
  .recurring-hero {
      padding: 70px 0;
  }
  
  
  .recurring-content p {
      font-size: 1.1rem;
  }
}



.emergency-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.emergency-highlights li {
  flex: 1 1 30%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #f8dfe1;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.emergency-highlights li:hover {
  background: #eaf4ff;
  transform: translateY(-2px);
}

.emergency-highlights i {
  color: var(--ita-primary); /* Change to your brand color (e.g. orange for EK Plumbers) */
  font-size: 1.2rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .emergency-highlights li {
    flex: 1 1 100%;
    justify-content: flex-start;
  }
}


/** Pages Recurring Sections **/

/* Areas Served */
        .kenny-areas-served {
            padding: 0 0.5rem;
            background: var(--ita-white);
            margin-bottom: 1rem;
        }

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

        .kenny-section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--ita-dark);
            position: relative;
            display: inline-block;
        }

        .kenny-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--ita-primary);
            border-radius: 2px;
            margin-bottom:15px;
        }

        .kenny-section-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 40px auto 0;
            color: var(--ita-gray);
            line-height: 1.7;
        }

        .kenny-areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
            place-content:center;
        }

        .kenny-area-item {
            background: var(--ita-primary-light);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .kenny-area-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .kenny-area-item i {
            color: var(--ita-primary);
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .kenny-area-item h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        /* Service Process */
        .kenny-service-process {
            padding: 100px 0;
            background: var(--ita-white);
        }

        .kenny-process-steps {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            margin-bottom: 80px;
            gap: 20px;
        }

        .kenny-process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1;
            position: relative;
            z-index: 2;
            min-width: 0;
        }

        .kenny-step-connector {
            position: absolute;
            top: 60px;
            left: 100%;
            width: calc(100% - 40px);
            height: 4px;
            background: linear-gradient(to right, var(--ita-primary), var(--ita-gold));
            z-index: 1;
            transform: translateX(-50%);
        }

        .kenny-step-connector::after {
            content: '';
            position: absolute;
            top: -8px;
            right: -8px;
            width: 20px;
            height: 20px;
            border-top: 4px solid var(--ita-primary);
            border-right: 4px solid var(--ita-primary);
            transform: rotate(45deg);
            background: var(--ita-white);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(188, 20, 26, 0.3);
        }

        .kenny-step-icon-container {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--ita-white);
            border-radius: 50%;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            margin-bottom: 25px;
            position: relative;
            z-index: 3;
            transition: all 0.4s ease;
            border: 4px solid var(--ita-primary);
        }

        .kenny-step-icon {
            font-size: 2.5rem;
            color: var(--ita-primary);
            transition: all 0.4s ease;
        }

        .kenny-process-step:hover .kenny-step-icon-container {
            transform: scale(1.1);
            background: var(--ita-primary);
            box-shadow: 0 20px 40px rgba(188, 20, 26, 0.4);
        }

        .kenny-process-step:hover .kenny-step-icon {
            color: var(--ita-white);
        }

        .kenny-step-number {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 40px;
            height: 40px;
            background: var(--ita-gold);
            color: var(--ita-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.2rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            z-index: 4;
        }

        .kenny-step-content {
            background: var(--ita-white);
            padding: 25px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            width: 100%;
            position: relative;
        }

        .kenny-process-step:hover .kenny-step-content {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .kenny-step-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--ita-dark);
        }

        .kenny-step-description {
            color: var(--ita-gray);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Content Section */
        .kenny-content-section {
            padding: 100px 0;
            background: var(--ita-primary-light);
        }

        .kenny-content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            place-content: center;
        }

        .kenny-content-card {
            background: var(--ita-white);
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .kenny-content-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--ita-primary);
        }

        .kenny-content-card ul {
            list-style: none;
        }

        .kenny-content-card li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
        }

        .kenny-content-card li i {
            color: var(--ita-primary);
            margin-right: 10px;
            margin-top: 5px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .kenny-service-intro-content {
                flex-direction: column;
            }
            
            .kenny-process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .kenny-step-connector {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .kenny-service-intro h2 {
                font-size: 2rem;
            }
            
            .kenny-section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .kenny-service-intro h2 {
                font-size: 1.6rem;
            }
            
            .kenny-section-title {
                font-size: 1.8rem;
            }
        }
 






  /* Footer */


        
        .ita-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(--ita-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(--ita-accent);
        }
        
        .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(--ita-accent);
            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(--ita-accent);
            margin-right: 10px;
            font-size: 14px;
        }
        
        .footer-links li a:hover {
            color: var(--ita-accent);
            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, var(--ita-primary), var(--ita-accent));
            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: 60px;
                height: 60px;
                font-size: 18px;
            }
            
            .content-section {
                padding: 20px;
                margin: 20px auto;
            }
        }
        
        @media (max-width: 480px) {
            .scroll-to-top {
                left: 10px;
                bottom: 10px;
                width: 60px;
                height: 60px;
                font-size: 16px;
            }
        }

















































































































    

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

        /* CTA SECTION */
      
        .ctb-section {
          display: block;
          background-color: var(--ita-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(--ita-white);
            font-weight: bold;
          }

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

        
    
          } 








      @media (min-width: 1024px) { 

        /* CTB SECTION */

        .ctb-section {
        display: block;
        background-color: var(--ita-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(--ita-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);
  }

      
  }