/* Mobile dropdown fix for navbar */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        background: #fff;
        box-shadow: none;
        border-radius: 0.5rem;
        display: none;
    }
    .navbar-nav .dropdown-menu.show {
        display: block;
    }
    .navbar-nav .dropdown-item {
        padding-left: 2rem;
    }
    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 0.5rem;
    }
}
/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}
#preloader.preloader-hide {
    opacity: 0;
    pointer-events: none;
}
#preloader .spinner-border {
    width: 3rem;
    height: 3rem;
}
@media (max-width: 600px) {
    .zoom-modal-content-athistam {
        max-width: 98vw;
        max-height: 80vh;
    }
    #zoomedImgAthistam {
        max-width: 98vw;
        max-height: 60vh;
    }
    #customZoomCloseAthistam {
        font-size: 2.2rem;
        top: 6px;
        right: 6px;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 600px) {
    .zoom-modal-content-athistam {
        max-width: 98vw;
        max-height: 80vh;
    }
    #zoomedImgAthistam {
        max-width: 98vw;
        max-height: 60vh;
    }
    #customZoomCloseAthistam {
        font-size: 2.2rem;
        top: 6px;
        right: 6px;
        width: 36px;
        height: 36px;
    }
}
/* Athistam & co Logo Zoom Modal Styles */
#customZoomModalAthistam {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}
#customZoomModalAthistam.active {
    display: flex;
}
.zoom-modal-content-athistam {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#zoomedImgAthistam {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
#customZoomCloseAthistam {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 2rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
#customZoomCloseAthistam:hover {
    background: #d32f2f;
}
/* Custom Zoom Modal Styles */
#customZoomModal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow: auto;
}
#customZoomModal .zoom-modal-content {
    position: relative;
    display: inline-block;
    max-width: 96vw;
    max-height: 90vh;
    margin: 2vw auto;
}
#customZoomModal img {
    max-width: 96vw;
    max-height: 80vh;
    border-radius: 12px;
    display: block;
    margin: auto;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
#customZoomClose {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 2;
    padding: 0 0.5rem;
    line-height: 1;
}
@media (max-width: 600px) {
    #customZoomModal .zoom-modal-content {
        max-width: 98vw;
        max-height: 80vh;
    }
    #customZoomModal img {
        max-width: 98vw;
        max-height: 60vh;
    }
    #customZoomClose {
        font-size: 2.2rem;
        top: 6px;
        right: 6px;
    }
}
/* Custom CSS for Hooks Tech */

:root {
    --primary-color: #FF6D00;
    --secondary-color: #FF8C33;
    --dark-text: #1A1A1A;
    --light-bg: #FFFFFF;
    --soft-gray: #F5F5F7;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --border-radius: 16px;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add to your assets/css/styles.css */
#preloader {
    transition: opacity 0.5s;
}
#preloader.preloader-hide {
    opacity: 0;
    pointer-events: none;
}

/* Typography */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 109, 0, 0.1);
}

.navbar.scrolled {
    background: var(--light-bg);
    box-shadow: var(--shadow-soft);
}

.navbar-brand {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255, 109, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 109, 0, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 109, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-card p {
    color: #666;
    margin-bottom: 0;
}

/* Service Detail Cards */
.service-detail-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 109, 0, 0.1);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-detail-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

/* Area Cards */
.area-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(255, 109, 0, 0.1);
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.area-card h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.area-card p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 109, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-info h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.team-info p {
    color: #666;
    margin-bottom: 1rem;
}

.team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--soft-gray);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    color: var(--dark-text);
    margin: 0 0.25rem;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: var(--transition);
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 109, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 109, 0, 0.2), 0 8px 32px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 109, 0, 0.3);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    perspective: 100px;
}

.stars i {
    animation: starTwinkle 2.5s ease-in-out infinite, starFloat 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.15s);
    transform-origin: center center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes starTwinkle {
    0%, 100% {
        transform: scale(1) rotateZ(0deg);
        opacity: 1;
        filter: brightness(1);
    }
    25% {
        transform: scale(1.3) rotateZ(5deg);
        opacity: 0.9;
        filter: brightness(1.2);
    }
    50% {
        transform: scale(1.4) rotateZ(0deg);
        opacity: 0.8;
        filter: brightness(1.4);
    }
    75% {
        transform: scale(1.2) rotateZ(-5deg);
        opacity: 0.9;
        filter: brightness(1.1);
    }
}

@keyframes starFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin: 1.5rem 0;
    color: #555;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    animation: textReveal 1s ease-out 0.5s both;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 109, 0, 0.3);
    font-family: serif;
    position: absolute;
    opacity: 0.4;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: quoteFloat 6s ease-in-out infinite;
}

.testimonial-content p::before {
    top: -1.5rem;
    left: -1.5rem;
    animation-delay: 0s;
}

.testimonial-content p::after {
    bottom: -2.5rem;
    right: -1.5rem;
    transform: rotate(180deg);
    animation-delay: 3s;
}

@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-5px) scale(1.1);
        opacity: 0.6;
    }
}

.testimonial-author {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    animation: authorSlideUp 1s ease-out 0.8s both;
}

@keyframes authorSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-author strong {
    color: var(--dark-text);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
}

.testimonial-author strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.testimonial-slide.active .testimonial-author strong::after {
    width: 60%;
    animation: underlineExpand 1s ease-out 1.2s both;
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 60%;
        opacity: 1;
    }
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-controls {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    position: relative;
}

.testimonial-controls button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 109, 0, 0.3);
    backdrop-filter: blur(10px);
}

.testimonial-controls button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.testimonial-controls button i {
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-controls button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 109, 0, 0.4);
}

.testimonial-controls button:hover i {
    transform: scale(1.1);
}

.testimonial-controls button:hover::before {
    width: 120%;
    height: 120%;
}

.testimonial-controls button:active {
    transform: scale(1.05) translateY(0px);
    transition: all 0.1s ease;
}

.testimonial-dots {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
    position: relative;
}

.dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 109, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.dot.active,
.dot:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.4);
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.4);
}

.dot.active::before,
.dot:hover::before {
    width: 120%;
    height: 120%;
}

.dot.active {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 109, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 109, 0, 0.6), 0 0 20px rgba(255, 109, 0, 0.3);
    }
}

/* Mobile Testimonial Enhancements */
@media (max-width: 768px) {
    .testimonial-track {
        height: 350px;
    }
    
    .testimonial-slide {
        max-width: 90%;
        transform: translate(-50%, -50%) translateX(100%) scale(0.85) rotateY(30deg);
    }
    
    .testimonial-slide.active {
        transform: translate(-50%, -50%) translateX(0) scale(1) rotateY(0deg);
    }
    
    .testimonial-slide.prev {
        transform: translate(-50%, -50%) translateX(-100%) scale(0.75) rotateY(-30deg);
    }
    
    .testimonial-slide.next {
        transform: translate(-50%, -50%) translateX(100%) scale(0.75) rotateY(30deg);
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonial-content p::before,
    .testimonial-content p::after {
        font-size: 2.5rem;
    }
    
    .testimonial-content p::before {
        top: -1rem;
        left: -1rem;
    }
    
    .testimonial-content p::after {
        bottom: -2rem;
        right: -1rem;
    }
    
    .testimonial-controls {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }
    
    .testimonial-controls button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .stars {
        font-size: 1rem;
        gap: 0.2rem;
    }
    
    .testimonial-author strong {
        font-size: 1rem;
    }
    
    .testimonial-author span {
        font-size: 0.85rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .testimonial-track {
        height: 320px;
    }
    
    .testimonial-slide {
        max-width: 95%;
        transform: translate(-50%, -50%) translateX(100%) scale(0.9) rotateY(20deg);
    }
    
    .testimonial-slide.prev,
    .testimonial-slide.next {
        transform: translate(-50%, -50%) translateX(-100%) scale(0.8) rotateY(-20deg);
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .testimonial-controls button {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-dots {
        gap: 0.5rem;
    }
    
    .testimonial-content p::before,
    .testimonial-content p::after {
        font-size: 2rem;
    }
    
    .testimonial-content p::before {
        top: -0.8rem;
        left: -0.8rem;
    }
    
    .testimonial-content p::after {
        bottom: -1.8rem;
        right: -0.8rem;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .testimonial-controls button:hover {
        transform: scale(1.1);
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    }
    
    .testimonial-controls button:active {
        transform: scale(1.05);
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    }
    
    .dot:hover {
        transform: scale(1.2);
    }
    
    .dot:active {
        transform: scale(1.3);
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }
}

/* Accessibility improvements */
.testimonial-controls button:focus,
.dot:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(255, 109, 0, 0.2);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .testimonial-slide {
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .testimonial-slide.active {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .testimonial-slide.prev,
    .testimonial-slide.next {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.3;
    }
    
    .testimonial-card::before {
        display: none;
    }
    
    .stars i {
        animation: none;
    }
    
    .testimonial-content p::before,
    .testimonial-content p::after {
        animation: none;
    }
    
    .dot.active {
        animation: none;
    }
    
    .testimonial-author strong::after {
        animation: none;
        width: 60%;
        opacity: 1;
    }
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 109, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pricing-featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h4 {
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 109, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-content h3 a {
    color: var(--dark-text);
    text-decoration: none;
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 109, 0, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 109, 0, 0.25);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.contact-info-section {
    background: var(--soft-gray);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.contact-details p {
    color: #666;
    margin: 0;
}

/* Map */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin: 2rem 0;
}

/* Newsletter */
.newsletter-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 109, 0, 0.1);
}

.newsletter-form .form-control {
    border-radius: 12px 0 0 12px;
    border: 2px solid #e9ecef;
    border-right: none;
}

.newsletter-form .btn {
    border-radius: 0 12px 12px 0;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-banner .btn {
  animation: flash 1.2s linear infinite;
}

/* Flash animation for CTA button */
@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 2rem;
    }
    .cta-banner p {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5,
.footer h6 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    color: white;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-info p {
    color: #ccc;
    margin-bottom: 0.75rem;
}

.contact-info i {
    color: var(--primary-color);
}

/* Accordion */
.accordion-item {
    border: 1px solid rgba(255, 109, 0, 0.1);
    border-radius: var(--border-radius) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--dark-text);
    font-weight: 600;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--soft-gray);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 109, 0, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    background: white;
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Counter Animation */
.stat-number,
.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label,
.stat-item .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-stats .stat-number {
    color: white;
}

.hero-stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .service-card,
    .service-detail-card,
    .value-card {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .pricing-featured {
        transform: none;
        margin-top: 1rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 2rem;
    }
    
    .cta-banner {
        padding: 3rem 0;
    }
    
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .service-card,
    .contact-form-section,
    .contact-info-section,
    .newsletter-section {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.bg-light {
    background-color: var(--soft-gray) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Form Validation */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: var(--error-color);
}

.invalid-feedback {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Success Messages */
.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: var(--success-color);
    color: var(--success-color);
    border-radius: var(--border-radius);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: var(--error-color);
    color: var(--error-color);
    border-radius: var(--border-radius);
}


/* landing page  */

/* WhatsApp Floating Icon Styles */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 9999;
  background: #ff6d00; /* Hooks Tech brand orange */
  color: #fff; /* WhatsApp icon in white */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  text-decoration: none; /* remove underline */
  box-shadow: 0 0 24px 8px #ff6d0099, 0 0 8px 2px #ff6d00cc;
  animation: whatsappFloat 2s infinite ease-in-out,
             whatsappGlow 2.5s infinite alternate ease-in-out;
  transition: box-shadow 0.3s, background 0.3s;
}

.whatsapp-float:hover {
  box-shadow: 0 0 32px 12px #ff6d00cc, 0 0 16px 4px #ff6d00ee;
  background: #e65c00; /* darker orange on hover */
}

@keyframes whatsappFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.05); }
}

@keyframes whatsappGlow {
  0% { box-shadow: 0 0 24px 8px #ff6d0099, 0 0 8px 2px #ff6d00cc; }
  100% { box-shadow: 0 0 40px 16px #ff6d00cc, 0 0 24px 8px #ff6d00ee; }
}


/* athistam and co zoom  */
