:root {
    --primary-color: #f39c12;
    /* Golden Orange */
    --primary-dark: #d35400;
    --secondary-color: #2c3e50;
    /* Dark Blue/Gray */
    --light-bg: #f8f9fa;
    --text-color: #333;
    --border-radius: 8px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--secondary-color) !important;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin-left: 15px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-color) !important;
}

.btn-call {
    background: var(--primary-color);
    color: white !important;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-call:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Slider */
.hero-slider .carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.service-card {
    border: none;
    transition: 0.3s;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    height: 250px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 25px;
}

.service-title {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.btn-custom {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-custom:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Feature Section */
.feature-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: #ecf0f1;
    padding: 60px 0 20px;
}

footer h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 10px;
}

footer a:hover {
    color: white;
    padding-left: 5px;
}

.social-icon {
    display: inline-block !important;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
}

.float-btn {
    display: block;
    width: 60px;
    height: 60px;
    background: #25d366;
    /* WhatsApp Green */
    color: white;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-top: 15px;
    transition: 0.3s;
}

.float-btn.phone {
    background: var(--primary-color);
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Process Section */
.process-section {
    background-color: #fff;
    padding: 30px 0 80px;
}

.process-left-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.process-left-grid .grid-item {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.process-left-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.process-left-grid .grid-item:hover img {
    transform: scale(1.1);
}

/* Make the 2nd item span 2 rows */
.process-left-grid .grid-item:nth-child(2) {
    grid-row: span 2;
    height: 315px;
    /* 150 + 150 + 15 gap */
}

/* Right Content */
.process-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0);
    /* Transparent fill */
    -webkit-text-stroke: 2px #f39c12;
    /* Thicker golden outline, adjusted color */
    margin-right: 25px;
    line-height: 0.8;
    font-family: 'Poppins', sans-serif;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.process-content {
    padding-top: 5px;
}

.process-content h5 {
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.process-content p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* SEO Content Section */
.seo-content h3,
.seo-content h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
}

.seo-content a {
    color: #3498db;
    font-weight: 500;
}

.seo-content strong {
    color: #333;
    font-weight: 700;
}

/* Refined & Animated Pricing Icons */
.pricing-icon-circle {
    width: 60px;
    height: 60px;
    border: 6px solid #f1c40f;
    border-radius: 50%;
    position: relative;
    background: transparent;
    transition: transform 0.3s ease;
    animation: pulse-border 2s infinite;
}

/* Inner small circle */
.pricing-icon-circle::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 25px;
    height: 25px;
    background: transparent;
    border: 4px solid #f1c40f;
    border-radius: 50%;
    animation: bounce-small 3s infinite ease-in-out;
}

/* Inner filled circle */
.pricing-icon-circle::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: #f1c40f;
    border-radius: 50%;
    border: none;
    animation: bounce-fill 2.5s infinite ease-in-out alternate;
}

/* Hover Effect */
.pricing-icon-circle:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(241, 196, 15, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(241, 196, 15, 0);
    }
}

@keyframes bounce-small {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes bounce-fill {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}/ *   R e v i e w s   S e c t i o n   * /  
 . c a r d   {  
         t r a n s i t i o n :   t r a n s f o r m   0 . 2 s ;  
 }  
  
 . c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
 }  
  
 . p r o g r e s s   {  
         b a c k g r o u n d - c o l o r :   # f 1 f 2 f 6 ;  
         b o r d e r - r a d i u s :   1 0 p x ;  
 }  
  
 . p r o g r e s s - b a r   {  
         b o r d e r - r a d i u s :   1 0 p x ;  
 }  
 