* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 80px;
}

/* Navbar Start */
/* Default black icon */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* White icon after scroll */
.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-custom {
    transition: background-color 0.4s ease, box-shadow 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: #212431 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo-img {
    height: 60px;
    transition: filter 0.3s;
}


.shadow-white {
    filter: drop-shadow(0 0 6px white) drop-shadow(0 0 10px white);
}

.navbar.scrolled .shadow-white {
    filter: drop-shadow(0 0 6px white);
}

/* Default state (before scroll) */
.nav-link {
    position: relative;
    display: inline-block;
    color: #212431 !important;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}


/* Hover underline effect */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #ea5c1f;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #ea5c1f !important;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* After scroll — white text */
.navbar.scrolled .nav-link {
    color: #f5f5f5 !important;
}

.navbar.scrolled .nav-link:hover {
    color: #ea5c1f !important;
}



.btn-cta {
    border: 2px solid #ea5c1f !important;
    color: #ea5c1f !important;
    font-weight: bold;
    padding: 0.4rem 1rem;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #ea5c1f;
    color: #ffffff !important;
}

/* Center nav items */
.navbar-nav {
    margin: 0 auto;
}

/* Navbar Ends */
/* ------------------------- Home Page Start ------------------------- */
/* Hero Section Start */
.hero {
    min-height: 100vh;
    background: #f8f9fa url('https://www.transparenttextures.com/patterns/white-wall.png') repeat;
    color: #212431;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.25rem;
    margin: 20px 0;
}

.hero .btn-quote {
    background-color: #212431;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.hero .btn-quote:hover {
    background-color: #ea5c1f;
}

.hero-img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
     .navbar-custom {
        transition: background-color 0.4s ease, box-shadow 0.3s ease;
        background-color: #f5f5f5;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero .btn-quote {
        margin-top: 20px;
    }
}

/* Hero Section Ends */
/* About Section Start */

.about-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
    color: #212431;
}

.section-title {
    text-transform: uppercase;
    font-weight: bold;
    color: #ea5c1f;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.about-heading {
    font-size: 2rem;
    margin: 15px 0;
    font-weight: 600;
}

.about-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-img {
    border-radius: 10px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.btn-learn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #212431;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.btn-learn:hover {
    background-color: #ea5c1f;
}


/* About Section Ends */
/* Services Section Start */
.services-section {
    background-color: #f9f9f9;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    text-align: center;
}

.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #ea5c1f;
}

.service-icon {
    font-size: 2.5rem;
    color: #4f5d75;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: #ea5c1f;
}

.service-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212431;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Services Section Ends */

/* Why Choose Us Section Start */

.why-choose-us {
    background-color: #212431;
    color: #f5f5f5;
}

.feature-box {
    background: none;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: #ea5c1f;
    margin-bottom: 15px;
}

.feature-box h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.5;
}


/* Why Choose Us Section Ends */

/* Portfolio Section Start */




/* Portfolio Section */
.portfolio-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(79, 93, 117, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 15px;
    text-align: center;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.portfolio-overlay .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ea5c1f;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.portfolio-overlay .btn:hover {
    background-color: #212431;
}

/* Filter Buttons */


.filter-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* center align buttons */
    margin-bottom: 20px;
}

.filter-btns button {
    padding: 8px 20px;
    border: none;
    background-color: #f1f1f1;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-btns button:hover,
.filter-btns button.active {
    background-color: #ea5c1f;
    color: white;
}

/* Responsive adjustments for smaller buttons on mobile */
@media (max-width: 576px) {
    .filter-btns button {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}





/* Portfolio Ends */

/* Pricing Section Start */
/* General Styles */
.pricing-card {
    border: 1px solid #d6d7d7;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #212431;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #ea5c1f;
}

.price span.text-muted {
    font-size: 1rem;
    color: #4f5d75;
}

/* Unique Card Names */
.pricing-card .pricing-title:nth-child(1) {
    background-color: #f5f5f5;
}

.pricing-card .pricing-title:nth-child(2) {
    background-color: #ea5c1f;
    color: #fff;
}

.pricing-card .pricing-title:nth-child(3) {
    background-color: #4f5d75;
    color: #fff;
}

.btn-primary {
    background-color: #ea5c1f;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d44e1c;
}

/* Pricing Section Ends */
/* Testimonial Start */
.testimonials-section {
    background-color: #f5f5f5;
    color: #212431;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.stars {
    color: #ea5c1f;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Testimonial Ends */

/* Blog Section Start */
.blog-section {
    background-color: #ffffff;
    color: #212431;
}


.blog-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212431;
}

.blog-content small {
    color: #888;
}

.btn-blog {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ea5c1f;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-blog:hover {
    background-color: #212431;
}

/* Blog Section Ends */
/* Call To Action Start */
.cta-banner {
    background-color: #212431;
    color: #f5f5f5;
}

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #f5f5f5;
    color: #f5f5f5;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #ea5c1f;
    border-color: #ea5c1f;
    color: #fff;
}

/* Call To Action Ends */


/* ------------------------- Home Page Ends ------------------------- */

/* ------------------------- About Page Start ------------------------- */

.about-section {
    background-color: #ffffff;
    color: #212431;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212431;
}

.about-section p {
    font-size: 1rem;
    color: #555;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.about-section ul li i {
    margin-right: 10px;
}

/* Development Process Start */
.step-number {
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
    color: rgba(234, 92, 31, 0.15);
    /* Faded orange */
    min-width: 100px;
    text-align: center;
}

.process-box {
    transition: all 0.3s ease-in-out;
}

.process-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* Development Process Ends */
/* Why Choose Digrow World Start */
.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Why Choose Digrow World Ends */
/* Counter Section Start */
.live-data-classic {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.section-title {
    font-size: 2.5rem;
    color: #212431;
    font-weight: 700;
    text-transform: uppercase;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.stat-card {
    padding: 30px 20px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 48px;
    color: #ea5c1f;
    font-weight: bold;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.stat-card .label {
    font-size: 1rem;
    color: #212431;
    font-weight: 500;
}




/* Counter Seciton Ends */
/* Team Section Start */

.team-section {
    background-color: #f5f5f5;
}

.team-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #212431;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #ea5c1f;
    margin-bottom: 15px;
}

.team-member h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212431;
}

.team-member p {
    font-size: 1rem;
    color: #888;
}

/* Team Section Ends */
/* ------------------------- About Page Ends ------------------------- */





















/*-------------------------  Services Page Start -------------------------*/

/* Banner */
.services-banner {
    background: url('../Images/Gallery/website-developer.jpg') center/cover no-repeat;
    position: relative;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.services-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.services-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: bold;
}

/* Service Section */
.service-block {
    padding: 60px 0;
}

.service-icon {
    font-size: 2rem;
    color: #4f5d75;
    transition: color 0.3s;
}

.service-icon:hover {
    color: #ea5c1f;
}

/* Callouts */
.callout {
    background-color: #f8f9fa;
    border-left: 5px solid #ea5c1f;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.callout h5 {
    color: #ea5c1f;
}

/*------------------------- Services Page Ends -------------------------*/



/*------------------------- Portfolio Page Start -------------------------*/
/* General Portfolio Layout */
.portfolio-container {
    margin-top: 60px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-card img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect on Image */
.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(79, 93, 117, 0.7);
    /* #4f5d75 with 70% opacity */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
}

/* Pagination/Load More */
.pagination {
    justify-content: center;
    margin-top: 30px;
}

.load-more {
    text-align: center;
    margin-top: 30px;
}

.filter-btns {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-btns button {
    margin: 0 10px;
    padding: 10px 20px;
    border: none;
    background-color: #4f5d75;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.filter-btns button:hover {
    background-color: #ea5c1f;
}

/*------------------------- Portfolio Ends -------------------------*/

/*------------------------- Blog Page Start -------------------------*/
.blog-hero {
    background-color: #f5f5f5;
    color: #212431;
}

.blog-card {
    border: 1px solid #eee;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 6px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.blog-title {
    font-size: 1.25rem;
    transition: color 0.3s;
}

.blog-title:hover {
    color: #ea5c1f;
    text-decoration: underline;
}

.read-more {
    color: #ea5c1f;
    font-weight: 500;
    text-decoration: none;
}

.sidebar a {
    color: #212431;
    text-decoration: none;
}

.tags .tag {
    display: inline-block;
    background: #eee;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 4px;
}

.pagination .page-link {
    color: #212431;
}

.pagination .active .page-link {
    background-color: #ea5c1f;
    border-color: #ea5c1f;
    color: white;
}

.subscribe-banner {
    background-color: #212431;
    color: #f5f5f5;
}

.btn-subscribe {
    background-color: #ea5c1f;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #d14d15;
}

/*------------------------- Blog Page Ends -------------------------*/




/*------------------------- Careers Page Start -------------------------*/
.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #212431;
}

.section-subtitle {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.info-card .icon {
    font-size: 40px;
    color: #4f5d75;
    margin-bottom: 20px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.job-listing {
    background: #f8f9fa;
    border-left: 4px solid #ea5c1f;
    padding: 25px 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
}

.job-listing h5 {
    color: #212431;
    font-weight: 600;
}

.job-listing .location {
    font-size: 14px;
    color: #6c757d;
}

.btn-apply {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    color: #ea5c1f;
    border: 1px solid #ea5c1f;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
}

.btn-apply:hover {
    background-color: #ea5c1f;
    color: #fff;
}

/*------------------------- Careers Page Ends -------------------------*/





/*------------------------- Contact Page Start -------------------------*/
.contact-section {
    background-color: #f5f5f5;
}

.contact-input {
    border: 1px solid #d6d7d7;
    border-radius: 6px;
    padding: 10px;
    color: #212431;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.contact-input:focus {
    border-color: #ea5c1f;
    outline: none;
    box-shadow: none;
}

.btn-submit {
    background-color: #ea5c1f;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #cf4f18;
}

.contact-card {
    background-color: #ffffff;
    border: 1px solid #d6d7d7;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 1.2rem;
    color: #4f5d75;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-icon {
    color: #ea5c1f;
}

/*------------------------- Contact Page Ends -------------------------*/



/*------------------------- Footer Start -------------------------*/
footer.footer {
    background-color: #212431;
    color: #f5f5f5;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer h5 {
    color: #ea5c1f;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.footer a {
    color: #f5f5f5;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Underline on hover with animation */
.footer a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ea5c1f;
    transition: width 0.3s ease;
}

.footer a:hover::after {
    width: 100%;
}

.footer a:hover {
    color: #ea5c1f;
}

/* Social icons */
.footer .fab {
    font-size: 1.1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer .fab:hover {
    color: #ea5c1f;
    transform: scale(1.2);
}

/* Divider */
.footer hr {
    border-top: 1px solid #d6d7d7;
}

/* Responsive padding */
@media (max-width: 768px) {
    .footer .text-md-left {
        text-align: center !important;
    }

    .footer .text-md-right {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/*------------------------- Footer Ends -------------------------*/