:root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #0f172a;
            --accent: #06b6d4;
            --light: #f8fafc;
            --gray: #bbc4d1;
            --dark: #1e293b;
            --gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background-color: #ffffff;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .btn {
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
            color: white;
        }
        
        /* Header Styles */
        .header-top {
            background: var(--secondary);
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .header-top a {
            color: white;
        }
        
        .header-top a:hover {
            color: var(--accent);
        }
        
        .social-icons-header a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            margin-right: 8px;
            transition: all 0.3s ease;
        }
        
        .social-icons-header a:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }
        
        .call-phone {
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }
        
        .call-phone i {
            margin-right: 8px;
            color: var(--accent);
        }
        
        .main-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .main-header.scrolled {
            padding: 5px 0;
            background: rgba(255, 255, 255, 0.98);
        }
        
        .navbar-brand img {
            height: 45px;
            transition: all 0.3s ease;
        }
        
        .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            padding: 10px 15px !important;
            position: relative;
            margin: 0 5px;
        }
        
        .nav-link:before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--gradient);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: all 0.3s ease;
            border-radius: 1px;
        }
        
        .nav-link:hover:before,
        .nav-link.active:before {
            width: 80%;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--primary) !important;
        }
        
        /* Mega Menu Styles */
        .nav-item.dropdown.mega-menu {
            position: static !important;
        }
        
        .nav-item.dropdown.mega-menu .dropdown-menu {
            width: 100%;
            left: 0 !important;
            right: 0 !important;
            margin-top: 0;
            padding: 30px;
            border: none;
            border-radius: 0 0 15px 15px;
            box-shadow: var(--shadow-lg);
            background: white;
        }
        
        .mega-menu-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .mega-menu-column h6 {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e2e8f0;
            font-size: 1.1rem;
        }
        
        .mega-menu-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mega-menu-links li {
            margin-bottom: 10px;
        }
        
        .mega-menu-links a {
            color: var(--dark);
            display: flex;
            align-items: center;
            padding: 8px 0;
            transition: all 0.2s ease;
            font-weight: 500;
        }
        
        .mega-menu-links a i {
            margin-right: 10px;
            color: var(--accent);
            font-size: 14px;
            transition: all 0.2s ease;
        }
        
        .mega-menu-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .mega-menu-links a:hover i {
            transform: translateX(3px);
        }
        
        .mega-menu-highlight {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 10px;
            padding: 20px;
            height: 100%;
        }
        
        .mega-menu-highlight h6 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .mega-menu-highlight p {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 15px;
        }
        
        .navbar-toggler {
            border: none;
            padding: 5px 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Hero Section */
        .hero-section-home {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 60px 0 60px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content-home h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero-content-home h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-content-home p {
            font-size: 1.2rem;
            color: #383b3f;
            margin-bottom: 2.5rem;
            max-width: 600px;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        /* Footer Styles */
        .footer-main {
            background: var(--secondary);
            color: white;
            padding: 60px 0 0;
        }
        
        .footer-widget h4 {
            color: white;
            font-weight: 600;
            margin-bottom: 25px;
            padding-bottom: 10px;
            position: relative;
        }
        
        .footer-widget h4:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--accent);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .footer-about p {
            color: #cbd5e0;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 12px;
        }
        
        .footer-widget ul li a {
            color: #cbd5e0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-widget ul li a i {
            margin-right: 10px;
            font-size: 12px;
            color: var(--accent);
        }
        
        .footer-widget ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        
        .footer-bottom {
            background: #0f172a;
            padding: 10px 0;
            margin-top: 10px;
        }
        
        .footer-bottom p {
            margin: 0;
            color: #94a3b8;
        }
        .footer-main a{
         color:#fff !important;    
        }
        .footer-logo{
            width:60%;
        }
        /* Responsive Styles */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .nav-item.dropdown.mega-menu .dropdown-menu {
                position: static !important;
                transform: none !important;
                width: 100%;
            }
            
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: var(--shadow-lg);
                margin-top: 15px;
            }
        }
        
        @media (max-width: 767px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
            .header-top .text-md-end {
                text-align: left !important;
                margin-top: 10px;
            }
        }
.section-padding {
    padding: 40px 0;
}

.section-title {
    letter-spacing: 0.8px;
    margin-bottom: 80px;
    text-align: center;
}

.section-title h2 {
    color: #fab702;
    font-size: 43px;
    margin-bottom: 20px;
	margin-top: 0px;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.section-title h2 span {
    color: #323232;
}

.section-title h2::after {
    background-color: #fab702;
    border-radius: 50px;
    bottom: -5px;
    content: "";
    height: 5px;
    left: 50%;
    margin-left: -35px;
    position: absolute;
    width: 70px;
}

.section-title p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
}

#about-area {
    margin-top: 1px;
}

#service-area.section-padding {
    padding-bottom: 40px;
}

.about-text{
    line-height: 2em;
	
}

.color-text {
    background: var(--gradient);
    font-weight: 600;
    padding-top: 20px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-video-area {
    background-image: url("/assets/img/nimg/marg-working.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    height: 100%;
    position: relative;
    z-index: 1;
}

.about-video-area:after {
    background-color: #222;
    content: "";
    left: 0;
    height: 100%;
    top: 0;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: -1;
}
.choose-area{
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	padding-top:40px;
	padding-bottom: 40px;
}
.choose-area h2{
	color:#fff !important;
}
.choose-thumbg-1 {
    background-image: url(/assets/img/news/news-thum-1.jpg);
}

.choose-thumbg-2 {
    background-image: url(/assets/img/news/news-thum-2.jpg);
}

.choose-thumbg-3 {
    background-image: url(/assets/img/news/news-thum-3.jpg);
}

.single-choose-content {
    border-radius: 5px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
	background: #202a44;
	padding:10px;
	margin: 10px;
}



.single-choose-content:hover .choose-thum {
    opacity: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-choose-content:hover {
    -webkit-box-shadow: 0 0 60px rgba(116, 116, 116, 0.25);
    box-shadow: 0 0 60px rgba(116, 116, 116, 0.25);
}

.single-choose-content:hover .choose-contant {
    background-color: #fdfdfd;
    border-radius: 0px 0px 5px 5px;
}

.choose-meta a:hover,
.single-choose-content:hover h4 a {
    color: #fab702;
}

.choose-thum {
	 
    background-size: cover;
    border-radius: 50%;
    display: block;
    height: 265px;
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: white;
	width:150px;
  height:150px;
  border: 5px solid #fab702;
  padding: 10px;
  margin: 10px;
}
.choose-contant {
    background-color: #f8f8f8;
   /*  border-radius:50%; */
    font-size: 13px;
    line-height: 1.9em;
    padding: 25px 20px 35px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
	min-height:200px;
	max-height:360px;
}

.choose-contant h4 {
    font-size: 20px;
    font-weight: 600;
}

.choose-contant,
.choose-contant h4,
.choose-contant a {
    color: #616161;
    letter-spacing: 0.6px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.choose-meta {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 10px 0 8px;
}

.choose-meta a {
    font-size: 15px;
    font-weight: 400;
}

.single-service {
    font-size: 13px;
    letter-spacing: 0.6px;
    line-height: 25px;
    margin-bottom: 10px;
    padding: 20px 20px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 1px solid #333;
}

.single-service:hover {
    border-radius: 5px;
    -webkit-box-shadow: 0 0 60px rgba(116, 116, 116, 0.20);
    box-shadow: 0 0 60px rgba(116, 116, 116, 0.20);
    margin-top: -5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#service-area .section-title {
    margin-bottom: 45px;
}

#service-area .col-lg-4:nth-child(1n + 4) .single-service {
    margin-bottom: 0;
}

.single-service h3 {
    color: #616161;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 24px;
    margin-bottom: 15px;
    padding-left: 50px;
    position: relative;
    text-transform: uppercase;
}

.single-service .service-icon {
    bottom: 2px;
    left: 0;
    position: absolute;
    color: #fab702;
}

#service-area .col-lg-4:nth-child(2) .service-icon {
    bottom: -2px;
}

#service-area .col-lg-4:nth-child(3) .service-icon,
#service-area .col-lg-4:nth-child(5) .service-icon,
#service-area .col-lg-4:nth-child(6) .service-icon {
    bottom: 4px;
}

#service-area .col-lg-4:nth-child(4) .service-icon {
    bottom: 7px;
}

.service-icon.flaticon-building:before,
.service-icon.flaticon-concrete-mixer:before,
.service-icon.flaticon-window:before,
.service-icon.flaticon-crane:before,
.service-icon.flaticon-driller:before,
.service-icon.flaticon-padlock:before {
    font-size: 40px;
}
.news-thumbg-1 {
    background-image: url(/assets/img/why-choose/award.png);
}

.news-thumbg-2 {
    background-image: url(/assets/img/why-choose/target.png);
}

.news-thumbg-3 {
    background-image: url(/assets/img/why-choose/time.png);
}

.single-news-content {
    border-radius: 5px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.single-news-content:hover .news-thum {
    opacity: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-news-content:hover {
    -webkit-box-shadow: 0 0 60px rgba(116, 116, 116, 0.25);
    box-shadow: 0 0 60px rgba(116, 116, 116, 0.25);
}

.single-news-content:hover .news-contant {
    background-color: #fdfdfd;
    border-radius: 0px 0px 5px 5px;
}

.news-meta a:hover,
.single-news-content:hover h4 a {
    color: #fab702;
}

.news-thum {
    background-color: #ddd;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px 5px 0 0;
    display: block;
    height: 265px;
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.news-contant {
    background-color: #f8f8f8;
    border-radius: 0 0 5px 5px;
    font-size: 13px;
    line-height: 1.9em;
    padding: 25px 20px 35px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.news-contant h4 {
    font-size: 20px;
    font-weight: 600;
}

.news-contant,
.news-contant h4,
.news-contant a {
    color: #616161;
    letter-spacing: 0.6px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.news-meta {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 10px 0 8px;
}

.news-meta a {
    font-size: 15px;
    font-weight: 400;
}
.clients-section {
            padding: 40px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .clients-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.05);
            top: -150px;
            right: -100px;
        }
        
        .clients-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(6, 182, 212, 0.05);
            bottom: -100px;
            left: -50px;
        }
        
        .section-title {
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .client-card {
            background: white;
            border-radius: 12px;
            padding: 25px 20px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #f1f5f9;
            position: relative;
            overflow: hidden;
        }
        
        .client-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 0;
            background: var(--gradient);
            bottom: 0;
            left: 0;
            transition: all 0.4s ease;
            z-index: 0;
            border-radius: 12px;
        }
        
        .client-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .client-card:hover::before {
            height: 100%;
        }
        
        .client-logo {
            max-width: 150px;
            max-height: 60px;
            /*filter: grayscale(1);*/
            opacity: 0.7;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }
        
        .client-card:hover .client-logo {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.1);
        }
        
        .view-more-btn {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            margin-top: 40px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
            text-decoration: none;
        }
        
        .view-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
            color: white;
        }
        
        /* Animation classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .stagger-animation > div:nth-child(1) { animation-delay: 0.1s; }
        .stagger-animation > div:nth-child(2) { animation-delay: 0.2s; }
        .stagger-animation > div:nth-child(3) { animation-delay: 0.3s; }
        .stagger-animation > div:nth-child(4) { animation-delay: 0.4s; }
        .stagger-animation > div:nth-child(5) { animation-delay: 0.5s; }
        .stagger-animation > div:nth-child(6) { animation-delay: 0.6s; }
        .stagger-animation > div:nth-child(7) { animation-delay: 0.7s; }
        .stagger-animation > div:nth-child(8) { animation-delay: 0.8s; }
        .stagger-animation > div:nth-child(9) { animation-delay: 0.9s; }
        .stagger-animation > div:nth-child(10) { animation-delay: 1.0s; }
        .stagger-animation > div:nth-child(11) { animation-delay: 1.1s; }
        .stagger-animation > div:nth-child(12) { animation-delay: 1.2s; }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .clients-section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 767px) {
            .clients-section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .client-card {
                padding: 20px 15px;
            }
            
            .client-logo {
                max-width: 120px;
            }
        }
        
.testimonials-section {
            padding: 40px 0;
            background: linear-gradient(135deg,var(--primary) 0%, var(--secondary));

            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .testimonials-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(37, 99, 235, 0.05);
            top: -150px;
            right: -100px;
        }
        
        .testimonials-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(6, 182, 212, 0.05);
            bottom: -100px;
            left: -50px;
        }
        
        .section-header {
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        /* Testimonial Cards */
        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            height: 380px; /* Fixed height */
            border: 1px solid #f1f5f9;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-card::before {
            content: '';
            position: absolute;
            width: 0;
            height: 4px;
            background: var(--gradient);
            top: 0;
            left: 0;
            transition: all 0.4s ease;
            border-radius: 4px 4px 0 0;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .testimonial-card:hover::before {
            width: 100%;
        }
        
        .testimonial-content {
            flex: 1;
            overflow: hidden;
            position: relative;
        }
        
        .testimonial-text {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 25px;
            position: relative;
            padding-left: 20px;
            max-height: 180px; /* Limit text height */
            overflow: hidden;
        }
        
        .testimonial-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: var(--accent);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-text.expanded {
            max-height: none;
            overflow: visible;
        }
        
        .read-more-btn {
            background: transparent;
            border: none;
            color: var(--primary);
            font-weight: 600;
            padding: 5px 0;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            margin-top: 10px;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            color: var(--primary-dark);
        }
        
        .read-more-btn i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more-btn.expanded i {
            transform: rotate(180deg);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: auto; /* Push to bottom */
            padding-top: 15px;
            border-top: 1px solid #f1f5f9;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover .client-avatar {
            border-color: var(--accent);
            transform: scale(1.05);
        }
        
        .client-details h5 {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        
        .client-details p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 8px;
        }
        
        .star-rating {
            color: #fbbf24;
        }
        
        .star-rating .fa-star {
            margin-right: 2px;
        }
        
        /* Carousel Controls */
        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }
        
        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: var(--shadow);
        }
        
        .carousel-btn:hover {
            background: var(--gradient);
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
        }
        
        .carousel-indicators {
            position: static;
            margin: 30px 0 0;
            gap: 10px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
            border: none;
            transition: all 0.3s ease;
        }
        
        .carousel-indicators button.active {
            background: var(--primary);
            transform: scale(1.2);
        }
        
        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .stagger-animation > div:nth-child(1) { animation-delay: 0.1s; }
        .stagger-animation > div:nth-child(2) { animation-delay: 0.2s; }
        
        /* Responsive */
        @media (max-width: 991px) {
            .testimonials-section {
                padding: 80px 0;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .testimonial-card {
                padding: 25px;
                height: 360px;
            }
        }
        
        @media (max-width: 767px) {
            .testimonials-section {
                padding: 60px 0;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .testimonial-card {
                padding: 20px;
                margin-bottom: 20px;
                height: 340px;
            }
            
            .client-info {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .testimonial-text {
                max-height: 150px;
            }
        }
        
        @media (max-width: 575px) {
            .testimonial-card {
                height: 320px;
            }
            
            .testimonial-text {
                max-height: 120px;
            }
        }        
        
        @media (min-width: 1200px) {
    .h1, h1 {
        font-size: 2rem;
    }
}

 .angled-photo {
            position: relative;
            width: 100%;
            height: 250px;
            transform: rotate(-2deg);
            margin-bottom: 15px;
        }
        
        .angled-photo::before,
        .angled-photo::after {
            content: '';
            position: absolute;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            z-index: -1;
        }
        
        .angled-photo::before {
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            transform: rotate(1deg);
        }
        
        .angled-photo::after {
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            background:var(--gradient);
            transform: rotate(-1deg);
        }
        
        .angled-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: 8px solid #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        