/* General Section Styling */
.our-work {
    background-color: #f9f9f9;
    padding: 8rem 2rem;
    /* 40px 20px */
    max-width: 120rem;
    /* 1200px */
    margin: 0 auto;
    border-radius: 1rem;
    /* 10px */
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
    /* Shadow of 4px and blur of 8px */
}

.section-title {
    font-size: 3.2rem;
    /* 32px */
    text-align: center;
    color: #414A7C;
    /* Medium Blue */
    margin-bottom: 2rem;
    /* 20px */
}

/* Intro Paragraph Styling */
.intro p {
    font-size: 1.8rem;
    /* 18px */
    color: #555;
    text-align: center;
    margin-bottom: 4rem;
    /* 40px */
}

/* Portfolio Section Styling */
.portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    /* min-width of 300px */
    gap: 2rem;
    /* Gap between grid items (20px) */
}

.project {
    /* background-color: #fff; */
    border-radius: 1rem;
    /* Rounded corners (10px) */
    overflow: hidden;
    box-shadow: 0 .4rem .8rem rgba(0, 0, 0, .1);
    /* Shadow (4px and blur of (8px)) */
}

.project-image {
    width: 100%;
    height: auto;
}

.project-details {
    padding: 2rem;
    /* Padding of (20px) */
}

.project-details h3 {
    font-size: 2.4rem;
    /* Font size of (24px) */
    color: #414A7C;
    /* Medium Blue */
}

.project-details p {
    font-size: 1.8rem;
    /* Font size of (16px) */
    color: #555;
    margin-bottom: 1rem;
    /* Margin bottom (10px) */
}

.project-details ul {
    list-style-type: none;
    padding-left: 2rem;
    /* Padding left of (20px) */
}

.project-details ul li {
    font-size: 1.6rem;
    /* Font size of (14px) */
    color: #555;
}

.project-details ul li::before {
    content: "\25B8";
    /* Arrow symbol */
    color: #E0AE81;
    /* Medium Orange */
    font-size: 2rem;
    /* Font size of arrow symbol (12px) */
    margin-right: .5rem;
    /* Margin right of arrow (5px) */
}

/* Testimonials Section Styling */
.testimonials {
    background-color: #f9f9f9;
    padding: 3rem;
    /* 30px */
    margin-top: 4rem;
    /* 40px */
    border-radius: 1rem;
    /* 10px */
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
    /* Shadow of 4px and blur of 8px */
}

.testimonials h2 {
    font-size: 2.4rem;
    /* 24px */
    text-align: center;
    color: #414A7C;
    /* Medium Blue */
}

blockquote {
    font-style: italic;
    color: #555555;
    /* Medium gray */
    margin-top: 2rem;
    /* 20px */
    padding-left: 2rem;
    /* 20px */
    border-left: 0.5rem solid #DB9F6B;
    /* Dark Orange (5px) */
}

blockquote p {
    margin-bottom: 1rem;
    /* 10px */
    font-size: 1.8rem;
}

blockquote cite {
    display: block;
    text-align: right;
    font-size: 1.5rem;
    /* 14px */
}

/* Call-to-Action Section Styling */
.cta {
    background-color: #414A7C;
    /* Medium Blue */
    color: white;
    text-align: center;
    padding: 3rem;
    /* 30px */
    margin-top: 4rem;
    /* 40px */
    border-radius: 1rem;
    /* Rounded corners (10px) */
}

.cta h2 {
    font-size: 2.8rem;
    /* Font size of (28px) */
}

.cta p {
    font-size: 1.8rem;
    /* Font size of (18px) */
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    /* Padding of (10px x-axis, 20px y-axis) */
    background-color: #E0AE81;
    /* Medium Orange */
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    /* Rounded corners (5px) */
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #DB9F6B;
    /* Dark Orange on hover */
}


/**********************/
/* What We Do Section */
/**********************/

.what-we-do {
    background-color: #f9f9f9;
    padding: 8rem 2rem;
    /* 40px 20px */
    max-width: 120rem;
    /* 1200px */
    margin: 0 auto;
    border-radius: 1rem;
    /* Rounded corners (10px) */
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.what-we-do h1 {
    font-size: 3.2rem;
    /* Font size of (32px) */
    text-align: center;
    color: #414A7C;
    /* Medium Blue */
    margin-bottom: 2rem;
    /* Spacing below the heading (20px) */
}

/* Services Section Styling */
.services {
    padding: 2rem;
    margin-bottom: 4rem;
    background: #EBF3FF;
    border-radius: 1rem;
}

.services h2 {
    font-size: 2.8rem;
    /* Font size of (28px) */
    text-align: center;
    color: #414A7C;
    /* Medium Blue */
    margin-bottom: 3rem;
    /* Spacing below the section title (30px) */
}

.service-item {
    background-color: #fff;
    padding: 3rem;
    /* Padding inside each service item (30px) */
    border-radius: 1rem;
    /* Rounded corners (10px) */
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    margin: 3rem;
    /* Spacing between service items (20px) */
}

.service-item h3 {
    font-size: 2.4rem;
    /* Font size of (24px) */
    color: #414A7C;
    /* Medium Blue */
    margin-bottom: 1.5rem;
    /* Spacing below the service title (15px) */
}

.service-item p {
    font-size: 1.6rem;
    /* Font size of (16px) */
    color: #555;
}

/* Approach Section Styling */
.approach {
    margin-bottom: 4rem;
    /* Spacing below approach section (40px) */
}

.approach h2 {
    font-size: 2.8rem;
    /* Font size of (28px) */
    text-align: center;
    color: #414A7C;
    /* Medium Blue */
    margin-bottom: 3rem;
    /* Spacing below the section title (30px) */
}

.approach p {
    font-size: 1.8rem;
    /* Font size of (18px) */
    color: #555;
    text-align: center;
}


/***********/
/* SAMPLES */
/***********/

/* General Section Styling */
.samples {
    background-color: #f9f9f9;
    padding: 8rem 2rem;
    /* 40px 20px */
    max-width: 120rem;
    /* 1200px */
    margin: 0 auto;
    border-radius: 1rem;
    /* Rounded corners (10px) */
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

/* Intro Paragraph Styling */
.intro p {
    font-size: 1.8rem;
    /* Font size of (18px) */
    color: #555;
    text-align: center;
    margin-bottom: 4rem;
    /* Spacing below the intro paragraph (40px) */
}

/* Sample Grid Styling */
.sample-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    /* Responsive grid layout with min-width of 300px */
    gap: 2rem;
    /* Gap between grid items (20px) */
}

.sample-item {
    background-color: #fff;
    border-radius: 1rem;
    /* Rounded corners (10px) */
    overflow: hidden;
    box-shadow: 0 .4rem .8rem rgba(0, 0, 0, .1);
    /* Subtle shadow */
}

.sample-image {
    width: 100%;
    height: auto;
}

.sample-details {
    padding: 2rem;
    /* Padding inside each sample item (20px) */
    text-align: center;
}

.sample-details h3 {
    font-size: 2.4rem;
    /* Font size of (24px) */
    color: #414A7C;
    /* Medium Blue */
    margin-bottom: 1.5rem;
    /* Spacing below the sample title (15px) */
}

.sample-details p {
    font-size: 1.6rem;
    /* Font size of (16px) */
    color: #555;
}

.view-demo {
    display: inline-block;
    margin-top: 1.5rem;
    /* Margin above the button (15px) */
    padding: 1rem 2rem;
    /* Padding inside button (10px x-axis, 20px y-axis) */
    background-color: #E0AE81;
    /* Medium Orange button background color */
    color: white;
    text-decoration: none;
    border-radius: .5rem;
    /* Rounded corners for button (5px) */
    font-size: 1.75rem;
    transition: background-color .3s ease-in-out;
}

.view-demo:hover {
    background-color: #DB9F6B;
    /* Dark Orange on hover effect for button */
}

/* Custom Solutions Section Styling */
.custom-solutions {
    margin-top: 4rem;
    /* Spacing above section */
    text-align: center;
    /* Center inline/inline-block children horizontally */
}

.custom-solutions h2 {
    font-size: 2.8rem;
    color: #414A7C;
    margin-bottom: 1rem;
    /* Optional spacing below heading */
}

.custom-solutions p {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 2rem;
    /* Optional spacing below paragraph */
}

.cta-button {
    display: inline-block;
    /* Enable text-align centering */
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #E0AE81;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1.75rem;
    transition: background-color 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #DB9F6B;
}


/* Technologies Section Styling */
.technologies {
    margin-top: 4rem;
    /* Spacing above technologies section (40px) */
    text-align: center;
}

.technologies h2 {
    font-size: 2.8rem;
    /* Font size of section heading (28px) */
    color: #414A7C;
    /* Medium Blue */
    margin-bottom: 3rem;
    /* Spacing below the heading (30px) */
}

/* Carousel Container */
.carousel {
    overflow: hidden;
    /* Hide overflow to create a clean carousel effect */
    position: relative;
    padding: 0.75rem 0;
}

/* Carousel List */
.tech-list {
    list-style: none;
    /* Remove default bullet points */
    padding: 0;
    /* Remove default padding */
    display: flex;
    /* Arrange items in a row */
    gap: 2rem;
    /* Space between items */
    will-change: transform;
    /* Optimize for smooth animations */
}

/* Carousel List Items */
.tech-list li {
    flex: 0 0 auto;
    /* Prevent items from shrinking or growing */
    background-color: #fff;
    border-radius: 1rem;
    /* Rounded corners (10px) */
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    padding: 2rem;
    /* Padding inside each list item (20px) */
    font-size: 1.6rem;
    /* Font size of list items (16px) */
    color: #555;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* Spacing between icon and text (15px) */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-list li:hover {
    transform: translateY(-0.5rem);
    /* Slight lift on hover (5px) */
    box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.2);
    /* Enhanced shadow on hover */
}

.tech-list li::before {
    content: "✔";
    /* Checkmark icon for each item */
    font-size: 2rem;
    /* Icon size (20px) */
    color: #E0AE81;
    /* Medium Orange for the icon */
}

/*********/
/* ABOUT */
/*********/

/* General Section Styling */
.about {
    background-color: #f9f9f9;
    padding: 8rem 2rem;
    /* 40px 20px */
    max-width: 120rem;
    /* 1200px */
    margin: 0 auto;
    border-radius: 1rem;
    /* Rounded corners (10px) */
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

/* Company Intro Styling */
.company-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    /* Space between image and text (20px) */
    margin-bottom: 4rem;
    /* Spacing below company intro (40px) */
}

.company-logo {
    width: 12rem;
    /* Logo size (120px) */
    height: auto;
    border-radius: 1rem;
    /* Rounded corners for logo (10px) */
}

.company-intro p {
    font-size: 1.8rem;
    /* Font size of (18px) */
    color: #555;
}

/* Unified section spacing */
.our-story,
.our-mission,
.our-team,
.our-values {
    margin-bottom: 4rem;
    /* Maintain good vertical rhythm */
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Karla", sans-serif;
    color: #555;
    line-height: 1.6;
    font-size: clamp(1.6rem, 1.2vw, 1.9rem);
    /* Fluid font size */
    text-align: left;
    /* Left align for readability */
}

/* Section headings unified style */
.our-story h2,
.our-mission h2,
.our-team h2,
.our-values h2 {
    font-size: clamp(2.6rem, 2vw, 3.2rem);
    /* Fluid scaling */
    color: #414A7C;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Paragraph and list inside these sections */
.our-story p,
.our-mission p,
.our-team ul,
.our-values ul {
    font-size: clamp(1.8rem, 1vw, 1.8rem);
    color: #555;
    margin-bottom: 1.4rem;
    line-height: 1.6;
    text-align: left;
}

/* Optional: enhanced ul styling */
.our-team ul,
.our-values ul {
    list-style: none;
    padding-left: 1.8rem;
    margin-left: 0;
    display: grid;
    gap: 0.9rem;
}

.our-team ul li::before,
.our-values ul li::before {
    content: none;
    /* Elegant checkmark */
    color: #DB9F6B;
    font-weight: bold;
    margin-right: 0.8rem;
}

/* Mobile-friendly margin tweaks */
@media (max-width: 600px) {

    .our-story,
    .our-mission,
    .our-team,
    .our-values {
        padding: 0 1rem;
        font-size: clamp(1.3rem, 2vw, 1.7rem);
    }

    .our-story h2,
    .our-mission h2,
    .our-team h2,
    .our-values h2 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
}


/* Team Section Styling */
.our-team {
    margin-bottom: 4rem;
    /* Spacing below team section (40px) */
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    /* Responsive grid layout with min-width of 250px */
    gap: 2rem;
    /* Gap between team members (20px) */
}

.team-member {
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    /* Padding inside each team member card (20px) */
    border-radius: 1rem;
    /* Rounded corners (10px) */
    box-shadow: 0 .4rem .8rem rgba(0, 0, 0, .1);
    /* Subtle shadow for cards */
}

.team-member img {
    width: 10rem;
    /* Image size (100px) */
    height: auto;
    border-radius: 50%;
    /* Circular image style for team members */
    margin-bottom: 1.5rem;
    /* Spacing below image (15px) */
}

.team-member h3 {
    font-size: 2.4rem;
    /* Font size of team member names (24px) */
    color: #414A7C;
    /* Medium Blue */
}

.team-member p {
    font-size: 1.6rem;
    /* Font size of team member roles (16px) */
    color: #555;
}

/* Approach List Styling */
.our-team ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
}

.our-team ul li {
    font-size: 1.8rem;
    /* Font size of list items (18px) */
    color: #555;
    margin-bottom: 1.5rem;
    /* Spacing between list items (15px) */
}

.our-team ul li strong {
    color: #414A7C;
    /* Highlighted text in Medium Blue */
}

/* Values List Styling */


.our-values ul li {
    font-size: 1.8rem;
    /* Font size of list items (18px) */
}

/* Call-to-Action Section Styling */
.cta {
    background-color: #414A7C;
    /* Medium Blue background for CTA section */
    color: white;
    text-align: center;
    padding: 3rem;
    /* Padding inside CTA section (30px) */
    border-radius: 1rem;
    /* Rounded corners for CTA section (10px) */
}

.cta h2 {
    font-size: 2.8rem;
    /* Font size of CTA heading (28px) */
}

.cta p {
    font-size: 1.8rem;
    /* Font size of CTA paragraph text (18px) */
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    /* Margin above the button (20px) */
    padding: 1rem 2rem;
    /* Padding inside button (10px x-axis, 20px y-axis) */
    background-color: #E0AE81;
    /* Medium Orange button background color */
    color: white;
    text-decoration: none;
    border-radius: .5rem;
    /* Rounded corners for button (5px) */
}

.cta-button:hover {
    background-color: #DB9F6B;
    /* Dark Orange on hover effect for button */
}


/***************/
/* OUR PROCESS */
/***************/

/* General Section Styling */
.our-process {
    background-color: #f9f9f9;
    padding: 8rem 2rem;
    /* 40px 20px */
    max-width: 120rem;
    /* 1200px */
    margin: 0 auto;
    border-radius: 1rem;
    /* Rounded corners (10px) */
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

/* Process Intro Styling */
.process-intro p {
    font-size: 1.8rem;
    /* Font size of (18px) */
    color: #555;
    text-align: center;
    margin-bottom: 4rem;
    /* Spacing below the intro paragraph (40px) */
}

/* Process Steps Styling */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    /* Responsive grid layout with min-width of 300px */
    gap: 2rem;
    /* Gap between steps (20px) */
}

.step {
    background-color: #fff;
    border-radius: 1rem;
    /* Rounded corners (10px) */
    padding: 3rem;
    /* Padding inside each step (30px) */
    box-shadow: 0 .4rem .8rem rgba(0, 0, 0, .1);
    /* Subtle shadow for cards */
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    font-size: 3.6rem;
    color: #E0AE81;
    font-weight: bold;
    margin-bottom: 0;
    /* remove bottom margin */
    width: 4.5rem;
    text-align: center;
}

.step-header h2 {
    margin: 0;
    /* remove top and bottom margin */
    font-size: 2.8rem;
    color: #414A7C;
}


.step h2 {
    font-size: 2.8rem;
    /* Font size of step title (28px) */
    color: #414A7C;
    /* Medium Blue for titles */
    /* margin-bottom: 1.5rem; */
    /* Spacing below the title (15px) */
}

.step p {
    font-size: 1.8rem;
    /* Font size of step description (16px) */
    color: #555;
}

.step ul {
    list-style-type: disc;
    padding-left: 3rem;
    /* Indentation for bullet points (30px) */
}

.step ul li {
    font-size: 1.6rem;
    /* Font size of list items (16px) */
    color: #555;
}

/* Process Benefits Section Styling */
.process-benefits {
    margin-top: 7rem;
    /* Spacing above benefits section (40px) */
}

.process-benefits h2 {
    font-size: 2.8rem;
    /* Font size of section heading (28px) */
    text-align: center;
    color: #414A7C;
    /* Medium Blue for titles */
    padding-bottom: 2rem;
}

.process-benefits ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
}

.process-benefits ul li {
    font-size: 1.8rem;
    /* Font size of list items (18px) */
    color: #555;
    margin-bottom: 1.5rem;
    /* Spacing between list items (15px) */
}

.process-benefits ul li strong {
    color: #414A7C;
    /* Highlighted text in Medium Blue */
}

/* Call-to-Action Section Styling */
.cta {
    background-color: #414A7C;
    /* Medium Blue background for CTA section */
    color: white;
    text-align: center;
    padding: 3rem;
    /* Padding inside CTA section (30px) */
    border-radius: 1rem;
    /* Rounded corners for CTA section (10px) */
}

.cta h2 {
    font-size: 2.8rem;
    /* Font size of CTA heading (28px) */
}

.cta p {
    font-size: 1.8rem;
    /* Font size of CTA paragraph text (18px) */
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    /* Margin above the button (20px) */
    padding: 1rem 2rem;
    /* Padding inside button (10px x-axis, 20px y-axis) */
    background-color: #E0AE81;
    /* Medium Orange button background color */
    color: white;
    text-decoration: none;
    border-radius: .5rem;
    /* Rounded corners for button (5px) */
}

.cta-button:hover {
    background-color: #DB9F6B;
    /* Dark Orange on hover effect for button */
}


/********/
/* BLOG */
/********/

/* General Section Styling */
.blog {
    background-color: #f9f9f9;
    padding: 8rem 2rem;
    /* 40px 20px */
    max-width: 120rem;
    /* 1200px */
    margin: 0 auto;
    border-radius: 1rem;
    /* Rounded corners (10px) */
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

/* Blog Intro Styling */
.blog-intro p {
    font-size: 1.8rem;
    /* Font size of (18px) */
    color: #555;
    text-align: center;
    margin-bottom: 4rem;
    /* Spacing below the intro paragraph (40px) */
}

/* Blog Grid Styling */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    /* Responsive grid layout with min-width of 300px */
    gap: 2rem;
    /* Gap between blog posts (20px) */
}

.blog-post {
    background-color: #fff;
    border-radius: 1rem;
    /* Rounded corners (10px) */
    overflow: hidden;
    box-shadow: 0 .4rem .8rem rgba(0, 0, 0, .1);
    /* Subtle shadow for cards */
}

.post-image {
    width: 100%;
    height: auto;
}

.post-content {
    padding: 2rem;
    /* Padding inside each blog post (20px) */
}

.post-title {
    font-size: 2.4rem;
    /* Font size of post title (24px) */
    color: #414A7C;
    /* Medium Blue for titles */
    margin-bottom: 1.5rem;
    /* Spacing below the title (15px) */
}

.post-meta {
    font-size: 1.4rem;
    /* Font size of metadata (14px) */
    color: #888;
    margin-bottom: 1.5rem;
    /* Spacing below metadata (15px) */
}

.post-excerpt {
    font-size: 1.6rem;
    /* Font size of excerpt text (16px) */
    color: #555;
}

.read-more {
    display: inline-block;
    margin-top: 2rem;
    /* Margin above the button (20px) */
    padding: 1rem 2rem;
    /* Padding inside button (10px x-axis, 20px y-axis) */
    background-color: #E0AE81;
    /* Medium Orange button background color */
    color: white;
    text-decoration: none;
    border-radius: .5rem;
    /* Rounded corners for button (5px) */
}

.read-more:hover {
    background-color: #DB9F6B;
    /* Dark Orange on hover effect for button */
}

/* Pagination Styling */
.pagination {
    text-align: center;
    margin-top: 3rem;
    /* Spacing above pagination (30px) */
}

.pagination .step-links a {
    font-size: 1.6rem;
    /* Font size of pagination links (16px) */
    color: #414A7C;
    /* Medium Blue links */
    text-decoration: none;
}

.pagination .step-links a:hover {
    text-decoration: underline;
}

.pagination .current {
    font-size: 1.6rem;
    /* Font size of current page text (16px) */
    color: #555;
}

/* Blog Categories Styling */
.blog-categories {
    margin-top: 4rem;
    /* Spacing above categories section (40px) */
}

.blog-categories h2 {
    font-size: 2.8rem;
    /* Font size of section heading (28px) */
    color: #414A7C;
    /* Medium Blue for titles */
}

.blog-categories ul {
    list-style-type: disc;
    padding-left: 3rem;
    /* Indentation for bullet points (30px) */
}

.blog-categories ul li {
    font-size: 1.6rem;
    /* Font size of list items (16px) */
}

/* Blog Search Styling */
.blog-search {
    margin-top: 4rem;
    /* Spacing above search section (40px) */
    text-align: center;
    /* Center-align the search section */
}

.blog-search h2 {
    font-size: 2.8rem;
    /* Font size of section heading (28px) */
    color: #414A7C;
    /* Medium Blue for titles */
    margin-bottom: 2rem;
    /* Spacing below the heading (20px) */
}

.blog-search form {
    display: flex;
    justify-content: center;
    /* Center-align the form horizontally */
    align-items: center;
    /* Align items vertically within the form */
    gap: 1rem;
    /* Space between input field and button (10px) */
}

.blog-search input[type="text"] {
    font-size: 1.6rem;
    /* Font size of input text (16px) */
    padding: .8rem 1.5rem;
    /* Padding inside input field (8px x-axis, 15px y-axis) */
    border-radius: .5rem;
    /* Rounded corners for input field (5px) */
    border: .1rem solid #ccc;
    /* Light gray border for input field (1px) */
    width: 30rem;
    /* Width of input field (300px) */
}

.blog-search button[type="submit"] {
    font-size: 1.6rem;
    /* Font size of button text (16px) */
    padding: .8rem 2rem;
    /* Padding inside button (8px x-axis, 20px y-axis) */
    background-color: #E0AE81;
    /* Medium Orange button background color */
    color: white;
    border: none;
    border-radius: .5rem;
    /* Rounded corners for button (5px) */
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

.blog-search button[type="submit"]:hover {
    background-color: #DB9F6B;
    /* Dark Orange on hover effect for button */
}

/****************/
/* CONFIRM PLAN */
/****************/

/* Confirm Plan Section Styling */
.confirm-plan {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
    /* 40px 20px */
    max-width: 60rem;
    /* 600px */
    margin: 0 auto;
    border-radius: 1rem;
    /* Rounded corners (10px) */
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    text-align: center;
    /* Center-align content */
}

.plan-name {
    font-size: 2.4rem;
    /* Font size of plan name (24px) */
    color: #E0AE81;
    /* Medium Orange */
    margin-bottom: 1.5rem;
    /* Spacing below the plan name (15px) */
}

.plan-price,
.plan-description {
    font-size: 1.8rem;
    /* Font size of description and price (18px) */
    color: #555;
    margin-bottom: 2rem;
    /* Spacing below each paragraph (20px) */
}

.plan-features {
    list-style-type: disc;
    padding-left: 3rem;
    /* Indentation for bullet points (30px) */
    text-align: left;
    /* Align list items to the left */
}

.plan-features li {
    font-size: 1.6rem;
    /* Font size of list items (16px) */
    color: #555;
    margin-bottom: 1rem;
    /* Spacing between list items (10px) */
}

/* Button Styling */
.btn-primary {
    display: inline-block;
    margin-top: 3rem;
    /* Margin above the button (30px) */
    padding: 1rem 2rem;
    /* Padding inside button (10px x-axis, 20px y-axis) */
    background-color: #E0AE81;
    /* Medium Orange button background color */
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    /* Font size of button text (16px) */
    border-radius: .5rem;
    /* Rounded corners for button (5px) */
    transition: background-color .3s ease-in-out;
}

.btn-primary:hover {
    background-color: #DB9F6B;
    /* Dark Orange on hover effect for button */
}

/*******************/
/* PROJECT DETAILS */
/*******************/

/* Form Styling */
.details-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* Space between form elements (20px) */
}

.details-form p {
    font-size: 1.6rem;
    /* Font size of form labels and inputs (16px) */
}

/* Error Message Styling */
.form-errors {
    background-color: #ffe6e6;
    /* Light red background for errors */
    border-left: .5rem solid #414A7C;
    /* Red accent border for errors */
    padding: 1.5rem;
    /* Padding inside the error container (15px) */
    border-radius: .5rem;
    /* Rounded corners (5px) */
    margin-bottom: 2rem;
    /* Spacing below the error container (20px) */
}

.form-errors ul {
    list-style-type: none;
    padding-left: 0;
}

.form-errors li {
    font-size: 1.6rem;
    /* Font size of error messages (16px) */
    color: #414A7C;
    /* Red text for errors */
}

/* Button Styling */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    /* Padding inside button (10px x-axis, 20px y-axis) */
    background-color: #E0AE81;
    /* Medium Orange button background color */
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    /* Font size of button text (16px) */
    border-radius: .5rem;
    /* Rounded corners for button (5px) */
    border: none;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

.btn-primary:hover {
    background-color: #DB9F6B;
    /* Dark Orange on hover effect for button */
}

/* PAYMENT */
/* Payment Section Styling */
.payment-section {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
    /* 40px 20px */
    max-width: 60rem;
    /* 600px */
    margin: 0 auto;
    border-radius: 1rem;
    /* Rounded corners (10px) */
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

/* Form Styling */
.payment-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* Space between form elements (20px) */
}

.payment-form p {
    font-size: 1.6rem;
    /* Font size of form labels and inputs (16px) */
}

/* Button Styling */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    /* Padding inside button (10px x-axis, 20px y-axis) */
    background-color: #E0AE81;
    /* Medium Orange button background color */
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    /* Font size of button text (16px) */
    border-radius: .5rem;
    /* Rounded corners for button (5px) */
    border: none;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

.btn-primary:hover {
    background-color: #DB9F6B;
    /* Dark Orange on hover effect for button */
}

/* PAYMENT FAILURE */
/* Payment Failed Section Styling */
.payment-failed {
    background-color: #ffe6e6;
    /* Light red background to indicate error */
    padding: 4rem 2rem;
    /* 40px 20px */
    max-width: 60rem;
    /* 600px */
    margin: 0 auto;
    border-radius: 1rem;
    /* Rounded corners (10px) */
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    text-align: center;
    /* Center-align content */
}

.error-message {
    font-size: 1.8rem;
    /* Font size of error message (18px) */
    color: #555;
    margin-bottom: 3rem;
    /* Spacing below the error message (30px) */
}

/* Button Styling */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    /* Padding inside button (10px x-axis, 20px y-axis) */
    background-color: #E0AE81;
    /* Medium Orange button background color */
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    /* Font size of button text (16px) */
    border-radius: .5rem;
    /* Rounded corners for button (5px) */
    border: none;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

.btn-primary:hover {
    background-color: #DB9F6B;
    /* Dark Orange on hover effect for button */
}