* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Define the custom font using @font-face */
@font-face {
    font-family: 'PoetsenOne';
    src: url('/include/fonts/PoetsenOne-Regular.ttf') format('truetype');
    font-weight: 400; /* Normal weight (regular) */
    font-style: normal; /* Normal style (not italic) */
}
/* Define the custom Roboto font using @font-face */
@font-face {
    font-family: 'RobotoCustom';
    src: url('/include/fonts/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900; /* Variable weight range (100 to 900 for wght) */
    font-style: italic; /* Italic style */
    font-stretch: 25% 100%; /* Variable width range (25% to 100% for wdth), if needed */
}
/* Define the custom Lato-Light font using @font-face */
@font-face {
    font-family: 'LatoCustomLight';
    src: url('/include/fonts/Lato-Light.ttf') format('truetype');
    font-weight: 300; /* Light weight (typically 300) */
    font-style: normal; /* Normal style (not italic) */
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff; /* Default background for body */
}

header {
    background-color: #ffffff; /* White header background */
    padding: 20px;
    border-bottom: 1px solid #ddd;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    color: #ffffff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
}

.logo-img {
    height: 75px;
}

.top-header {
    height: 50px;
    background: #172884; /* Blue header background */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #000000; /* Black text for navigation links */
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 10px;
}

.get-quote-btn {
    background-color: #ff4d4d; /* Red button background */
    color: #ffffff; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}

.social-links img {
    height: 20px;
    margin-left: 10px;
}

.hero {
    background-color: #F5F7FF; /* Light gray background */
    padding: 50px 20px; /* Reduced padding for better fit */
    text-align: left; /* Align text to left */
    position: relative;
}

.hero-content {
    display: flex; /* Use flexbox for side-by-side layout */
    justify-content: space-between; /* Space between text and image */
    align-items: center; /* Vertically center content */
    max-width: 1200px; /* Match other sections */
    margin: 0 auto; /* Center the content */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.hero-text {
    width: 45%; /* Half of the container for text */
    padding-right: 20px; /* Add some spacing between text and image */
}

.hero-text h1 {
    font-size: 2.5em;
    color: #102989; /* Blue text */
    margin-bottom: 20px;
    font-family: PoetsenOne;
    font-weight: 400;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0%;

}

.hero-text p {
    font-size: 1.2em;
    color: #333333; /* Gray text */
    margin-bottom: 20px;
    font-family: Lato;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
}

.start-project-btn {
    background-color: #ff4d4d; /* Red button background */
    color: #ffffff; /* White text */
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}

.hero-image {
    width: 50%; /* Half of the container for image */
    padding-left: 20px; /* Add some spacing between image and text */
}

.hero-image img {
    width: 100%; /* Ensure the image fills its container */
    max-width: 100%; /* Prevent image overflow */
    height: auto; /* Maintain aspect ratio */
}

div#services {
  display:none;
}

/* Optional responsiveness for mobile */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column; /* Stack items vertically */
    }

    .hero-text, .hero-image {
        width: 100%; /* Full width on mobile */
        padding: 0; /* Remove padding for mobile */
    }

    .hero-text {
        margin-bottom: 20px; /* Add spacing below text on mobile */
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff; /* White background for grid */
}

.service-card {
    text-align: center;
    padding: 20px;
    background-color: #ffffff; /* White card background */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-card img {
    height: 50px;
    margin-bottom: 10px;
}

.service-card h3 {
    color: #2c3e50; /* Dark blue for headings */
    margin-bottom: 10px;
}

.service-card p {
    color: #666666; /* Gray text */
}

.about-us {
    background-color: #FFFFFF; /* White background */
    color: #FFFFFF; /* White text */
    padding: 50px 20px;
    text-align: center;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-content img {
    width: 40%;
    max-width: 400px;
}

.about-text {
    text-align: left;
    width: 50%;
}

.about-text h2 {
    font-size: 2em;
    color: #102989; /* Blue text for heading */
    margin-bottom: 20px;
    font-family: PoetsenOne;
    font-weight: 400;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0%;

}

.about-text p {
    color: #585858; /* Grey text for paragraph */
    font-family: Lato;
    font-weight: 500;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0%;

}
.about-text span {
  font-family: Roboto;
  font-weight: 800;
  font-size: 20px;
  line-height: 16.8px;
  letter-spacing: 3px;
  text-transform:uppercase;
  color:#FF4934; /* Red text for span */
}
.about-text hr {
  color:#B7B7B7;
  width:350px;
  margin:10px 0px;
}
.read-more-btn {
    background-color: #ff4d4d; /* Red button background */
    color: #ffffff; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px 0px;
}

.custom-plan {
    margin-top: 20px;
    color: #ffffff; /* White text */
    background:#102989;
    width: 250px;
    padding:20px;
}

.request-proposal-btn {
    background-color: #ff4d4d; /* Red button background */
    color: #ffffff; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top:50px;
}

.our-services {
    padding: 100px 200px;
    text-align: center;
    background-color: #102989; /* Blue background */
    margin: 0 auto;
    clip-path: ellipse(130% 100% at 50% 0%);
}

.our-services h2 {
    color: #ff4d4d;
    margin-bottom: 10px;
    text-align: left;
    text-transform: uppercase;
}

.our-services h1 {
    font-size: 2em;
    color: #FFFFFF; /* White text */
    margin-bottom: 30px;
    font-family: PoetsenOne;
    font-weight: 400;
    font-size: 48px;
    line-height: 52.8px;
    letter-spacing: 0%;
    text-align:left;
}

.our-services hr {
    color: #B7B7B7;
    max-width:1200px;
    margin:20px 0px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    text-align: center;
    padding: 20px;
    background-color: #102989; /* Blue background */
    border-radius: 5px;
}

.service-item img {
    height: 50px;
    margin-bottom: 10px;
}

.service-item h3 {
    color: #FFFFFF; /* White for headings */
    margin-bottom: 10px;
}

.service-item p {
    color: #FFFFFF; /* White text */
}

.why-choose-us {
    background-color: #FFFFFF; /* White background */
    color: #ffffff; /* White text */
    padding: 50px 20px;
    text-align: center;
}

.why-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.why-content img {
    width: 40%;
    max-width: 400px;
}

.why-text {
    text-align: left;
    width: 50%;
}

.why-text h2 {
    color: #ff4d4d; /* Red text */
    margin-bottom: 10px;
}

.why-text h1 {
    font-size: 2em;
    color: #102989; /* Blue text */
    margin-bottom: 20px;
}

.why-text p {
    color: #212D31; /* Grey text */
}

.why-text hr {
  background:#ff4d4d;
  max-width:500px;
  margin:20px 0px;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    color: #ffffff; /* White text for stats */
}
.stats p {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0%;
  text-align: center;
  color:#102989;

}
.stats p span {
    color:#FF4934;
    font-family: Roboto;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0%;

}

.clients {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    background: #F5F7FF;
    height: 100px;
    padding: 25px;
}

.clients img {
    height: 50px;
}

.testimonials-pricing {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff; /* White background for the section */
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.testimonial {
    background-color: #102989; /* Blue background */
    color: #ffffff; /* White text */
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.testimonial p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.5px;
    letter-spacing: 0%;
}

.testimonial-author {
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 15px;
}

.testimonial-author img.testimonial-photo-1 {
    width: 148px;
    object-fit: cover;
    position: absolute;
    margin-left: 208px;
    margin-top: -70px;
}

.testimonial-author img.testimonial-photo-2 {
    width: 168px;
    object-fit: cover;
    position: absolute;
    margin-left: 187px;
    margin-top: -126px;
}

.testimonial-author img.testimonial-photo-3 {
    width: 91px;
    object-fit: cover;
    position: absolute;
    margin-left: 259px;
    margin-top: -36px;
}

h3.mark {
    color: #ffffff;
}

.testimonial-author h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #ff4d4d; /* Red text for names */
    text-align:left;
}

.testimonial-author p {
    font-size: 0.9em;
    color: #ffffff; /* White text for stats */
    text-align:left;
}

.pricing {
    text-align: center;
    padding: 20px;
}

.pricing h2 {
    color: #ff4d4d; /* Red text */
    margin-bottom: 10px;
    font-size: 1.5em;
}

.pricing h1 {
    font-size: 2.5em;
    color: #102989; /* Blue text */
    margin-bottom: 20px;
    font-family: PoetsenOne;
    font-weight: 400;
    font-size: 48px;
    line-height: 52.8px;
    letter-spacing: 0%;
    text-align: center;
}

.pricing p {
    font-size: 1.1em;
    color: #666666; /* Gray text */
    margin-bottom: 30px;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.plan {
    background-color: #ffffff; /* White background for plans */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.basic {
    border: 2px solid #ff4d4d; /* Red border for Basic plan */
}

.standard {
    background-color: #102989; /* Blue background for Standard plan */
    color: #ffffff; /* White text for Standard plan */
}

.premium {
    border: 2px solid #ff4d4d; /* Red border for Premium plan */
}

.plan h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: inherit; /* Inherits color from parent (white for Standard, default for others) */
}

.plan h2 {
    font-size: 2.5em;
    color: #ff4d4d; /* Red text for prices */
    margin-bottom: 20px;
}

.plan h2 span {
    font-size: 0.5em;
    color: #666666; /* Gray text for "MONTHLY" */
    display: block;
    margin-top: 5px;
}

.plan ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 20px;
}

.plan ul li {
    font-size: 1em;
    color: inherit; /* Inherits color from parent (white for Standard, default for others) */
    margin-bottom: 10px;
}

.get-started-btn {
    background-color: #ff4d4d; /* Red button background */
    color: #ffffff; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}

/* Responsiveness for mobile */
@media (max-width: 768px) {
    .testimonials {
        grid-template-columns: 1fr; /* Stack testimonials vertically */
    }

    .pricing-plans {
        grid-template-columns: 1fr; /* Stack pricing plans vertically */
    }
}

.client-testimonial {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff; /* White background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background:url('https://backlinkbros.com/include/images/laptop-photo.png');
    background-size:cover;
}

.testimonial-card {
    background-color: #102989;
    color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    width: 35%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-left: 50px;
    margin-top: -75px;
}

.testimonial-card h2 {
    font-size: 2em;
    color: #ffffff; /* White text */
    margin-bottom: 20px;
    font-family: PoetsenOne;
    font-weight: 400;
    font-size: 60px;
    line-height: 65px;
    letter-spacing: 0%;
}

.testimonial-card p {
    font-size: 1.2em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.testimonial-card .author {
    font-size: 1em;
    color: #ff4d4d; /* Red text for author */
    font-style: italic;
}

.testimonial-image {
    width: 50%;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Responsiveness for mobile */
@media (max-width: 768px) {
    .testimonial-card, .testimonial-image {
        width: 100%;
    }
}

.blog-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff; /* White background */
    text-align: center;
    margin-bottom:50px;
}

.blog-section h2 {
    color: #ff4d4d; /* Red text */
    margin-bottom: 10px;
    text-align:left;
}

.blog-section h1 {
    font-size: 2em;
    color: #102989; /* Blue text */
    margin-bottom: 30px;
    font-family: PoetsenOne;
    font-weight: 400;
    font-size: 48px;
    line-height: 52.8px;
    letter-spacing: 0%;
    text-align:left;
}
.blog-section hr {
  margin:20px 0px;
  max-width:900px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-post {
    background-color: #ffffff; /* White background */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.blog-post h3 {
    font-size: 1.2em;
    color: #2c3e50; /* Dark blue text */
    margin-bottom: 10px;
}

.blog-post p {
    font-size: 0.9em;
    color: #666666; /* Gray text */
}

.curved-wrapper {
    background-color: black; /* Background behind the curved section */
    padding-bottom: 50px; /* Adjust to prevent content from being cut off */
}
.consultation-form {
    background-color: #102989; /* Blue background */
    color: #ffffff; /* White text */
    padding: 50px 20px;
    margin: 0 auto;
    text-align: center;
    clip-path: ellipse(130% 100% at 50% 0%);
}

.consultation-form h2 {
    color: #ffffff; /* White text */
    margin-bottom: 10px;
    font-size: 1.5em;
    font-family: Roboto;
    font-weight: 800;
    font-size: 16px;
    line-height: 16.8px;
    letter-spacing: 3px;
}

.consultation-form h1 {
    font-size: 2.5em;
    color: #ffffff; /* White text */
    margin-bottom: 20px;
    font-family: PoetsenOne;
    font-weight: 400;
    font-size: 48px;
    line-height: 52.8px;
    letter-spacing: 0%;
}

.consultation-form p {
    font-size: 1.1em;
    color: #ffffff; /* White text */
    margin-bottom: 30px;
}

.consultation-form form {
    display: grid;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.consultation-form input, .consultation-form textarea {
    padding: 10px;
    border: 1px solid #ffffff; /* White border */
    border-radius: 5px;
    background-color: #ffffff; /* White background */
    color: #333;
    font-size: 1em;
    width: 100%;
}

.consultation-form textarea {
    height: 100px;
    resize: vertical;
}

.get-report-btn {
    background-color: #ff4d4d; /* Red button background */
    color: #ffffff; /* White text */
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    width: 100%;
}

/* Responsiveness for mobile */
@media (max-width: 768px) {
    .consultation-form form {
        grid-template-columns: 1fr; /* Single column for mobile */
    }
    .blog-grid {
        grid-template-columns: 1fr; /* Stack blog posts vertically */
    }
}

.site-footer {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    padding: 50px 20px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: start;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    height: 75px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.9em;
    color: #ffffff; /* White text */
}

.footer-subscribe {
    text-align: center;
}

.footer-subscribe p {
    margin-bottom: 10px;
    font-size: 1em;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.subscribe-form input {
    padding: 10px;
    border: 1px solid #ffffff; /* White border */
    border-radius: 5px;
    background-color: #ffffff; /* White background */
    color: #333;
    font-size: 1em;
    width: 200px;
}

.subscribe-btn {
    background-color: #ff4d4d; /* Red button background */
    color: #ffffff; /* White text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.footer-links, .footer-menu {
    text-align: center;
}

.footer-links h3, .footer-menu h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #ffffff; /* White text */
}

.footer-links img {
    height: 30px;
    margin: 0 5px;
}

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

.footer-menu ul li {
    font-size: 0.9em;
    margin-bottom: 10px;
    color: #ffffff; /* White text */
}

.footer-menu ul li a {
    color: #ffffff; /* White text for links */
    text-decoration: none;
}

/* Responsiveness for mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Stack footer columns vertically */
        text-align: center;
    }

    .subscribe-form {
        flex-direction: column; /* Stack subscribe form vertically */
    }

    .subscribe-form input, .subscribe-btn {
        width: 100%; /* Full width on mobile */
    }
}

p.left {
    float: left;
    margin-left: 75px;
    margin-top:-10px;
}
p.right {
    float: right;
    margin-left: 300px;
    margin-top:-10px;
}
.right a {
    color: #ffff;
    text-decoration: none;
    margin-right: 10px;
}
footer {
    background-color: #FF4934; /* Red background */
    color: #ffffff; /* White text */
    text-align: center;
    padding: 20px;©
    margin-top: 20px;
}
