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

body {
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background-color: #000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.logo img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1011;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #f0e64a;
}

.header-contact-details {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: #f0e64a;
}

.contact-btn {
    background-color: white;
    color: black;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #f0e64a;
}

/* Hero Section Styles */
.hero {
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 20, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.hero-tag span {
    margin-left: 10px;
}

.hero h1 {
    font-size: 70px;
    margin-bottom: 40px;
    line-height: 1.1;
}

.hero h1 span {
    color: #f0e64a;
}

.cta-btn {
    background-color: white;
    color: black;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #f0e64a;
}

/* Tagline Banner Styles */
.tagline-banner {
    background-color: #f0e64a;
    padding: 15px 0;
    overflow: hidden;
}

.tagline-content {
    display: flex;
    align-items: center;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.tagline-item {
    display: flex;
    align-items: center;
    margin-right: 50px;
    font-weight: bold;
}

.tagline-item::before {
    content: '•';
    margin-right: 10px;
    font-size: 20px;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About Section Styles */
.about-section {
    padding: 60px 40px;
}

.about-tag {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-heading {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 1000px;
    color: #001524;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-image {
    flex: 1;
    max-width: 40%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #001524;
}

.about-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.more-btn {
    background-color: #f0e64a;
    color: black;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.more-btn:hover {
    background-color: #ddd843;
}

/* Stats Section Styles */
.stats-section {
    display: flex;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
}

.stat-box {
    flex: 1;
    padding: 40px;
    text-align: center;
    border-right: 1px solid #eee;
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #001524;
}

.stat-text {
    color: #666;
    font-size: 16px;
}

/* Solutions Section Styles */
.solutions-section {
    background-color: #001524;
    color: white;
    padding: 60px 40px;
    text-align: center;
}

.solutions-tag {
    margin-bottom: 20px;
    font-size: 16px;
}

.solutions-heading {
    font-size: 48px;
    margin-bottom: 60px;
}

.solutions-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.solution-card {
    flex: 1 1 300px;
    min-width: 280px;
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-card:hover img {
    transform: scale(1.05);
}

.solution-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #f0e64a;
    color: black;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 60px 40px;
    background-color: #f9f9f9;
}

.testimonials-heading {
    font-size: 54px;
    text-align: center;
    margin-bottom: 40px;
    color: #001524;
}

.testimonials-container {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 300px;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-mark {
    font-size: 70px;
    position: absolute;
    top: 15px;
    left: 20px;
    color: #f0e64a;
    font-family: Georgia, serif;
    line-height: 0;
}

.testimonial-text {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
    color: #001524;
}

.author-location {
    color: #777;
    margin-bottom: 5px;
    font-size: 14px;
}

.author-rating {
    color: #ffc107;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Section Styles */
.blog-section {
    padding: 60px 40px;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.blog-header .arrow-btn {
    background-color: #001524;
    color: white;
}

.blog-heading {
    font-size: 48px;
    line-height: 1.2;
    color: #001524;
}

.blog-buttons {
    display: flex;
    align-items: center;
}

.explore-btn {
    background-color: #001524;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.explore-btn:hover {
    background-color: #f0e64a;
    color: black;
}

.blog-grid {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.blog-card {
    flex: 1 1 300px;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-meta {
    padding: 20px 20px 10px;
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 14px;
}

.blog-title {
    padding: 0 20px 20px;
    font-size: 18px;
    margin: 0;
    font-weight: bold;
    color: #001524;
    line-height: 1.4;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
}

.blog-title a:hover {
    color: #f0e64a;
}

/* Quote Section Styles */
.quote-section {
    padding: 60px 40px;
    background-color: #f0f0f0;
    text-align: center;
}

.quote-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #001524;
}

.quote-section form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
    text-align: left;
}

.quote-section form div {
    display: flex;
    flex-direction: column;
}

.quote-section label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.quote-section input[type="text"],
.quote-section input[type="email"],
.quote-section input[type="tel"],
.quote-section select,
.quote-section textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.quote-section input:focus, 
.quote-section select:focus, 
.quote-section textarea:focus {
    border-color: #f0e64a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(240, 230, 74, 0.5);
}

.quote-section textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-section button[type="submit"] {
    background-color: #001524;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    justify-self: center;
    width: auto;
}

.quote-section button[type="submit"]:hover {
    background-color: #f0e64a;
    color: black;
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #aaa;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-nav {
    margin-top: 15px;
}

.footer-nav a {
    color: #f0e64a;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: text-decoration 0.3s ease;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* "More Templates" Button */
.templates-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff3366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.templates-btn:hover {
    background-color: #e6003d;
}

.templates-btn span {
    margin-right: 5px;
    font-weight: bold;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .header {
        padding: 20px;
    }
    .nav {
        gap: 20px;
    }
    .hero h1 {
        font-size: 56px;
    }
    .about-image {
        max-width: 50%;
    }
    .solutions-grid {
        justify-content: center;
    }
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-nav-container {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: calc(100vh - 70px);
        background: #000;
        flex-direction: column;
        padding: 30px 20px;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 1000;
        gap: 0;
    }

    .header-nav-container.active {
        right: 0;
    }

    .nav {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
        width: 100%;
    }

    .nav a {
        font-size: 18px;
        padding: 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav a:hover {
        background: rgba(255,255,255,0.1);
    }

    .header-contact-details {
        flex-direction: column;
        margin-top: auto;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        padding: 0 20px;
        height: auto;
        min-height: 450px;
        text-align: center;
    }

    .hero-tag {
        justify-content: center;
    }

    .hero h1 {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .arrow-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .tagline-content {
        animation-duration: 45s;
    }

    .tagline-item {
        margin-right: 30px;
        font-size: 14px;
    }

    .about-section {
        padding: 40px 20px;
    }

    .about-heading {
        font-size: 32px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .about-text h3 {
        font-size: 20px;
    }

    .stats-section {
        flex-direction: column;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 30px 20px;
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 36px;
    }

    .solutions-section {
        padding: 40px 20px;
    }

    .solutions-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .solutions-grid {
        flex-direction: column;
        gap: 20px;
    }

    .solution-card {
        min-width: 100%;
        height: 180px;
    }

    .testimonials-section {
        padding: 40px 20px;
    }

    .testimonials-heading {
        font-size: 32px;
    }

    .testimonials-container {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        min-width: unset;
        padding: 25px;
    }

    .quote-mark {
        font-size: 50px;
        top: 10px;
        left: 15px;
    }

    .blog-section {
        padding: 40px 20px;
    }

    .blog-header {
        align-items: center;
    }

    .blog-header .arrow-btn {
        display: none;
    }

    .blog-heading {
        font-size: 32px;
        text-align: center;
        width: 100%;
    }

    .blog-grid {
        flex-direction: column;
        gap: 20px;
    }

    .blog-card {
        min-width: unset;
    }

    .quote-section {
        padding: 40px 20px;
    }

    .quote-section h2 {
        font-size: 32px;
    }

    .quote-section form {
        gap: 15px;
    }

    .quote-section input[type="text"],
    .quote-section input[type="email"],
    .quote-section input[type="tel"],
    .quote-section select,
    .quote-section textarea {
        padding: 10px;
        font-size: 15px;
    }

    .quote-section button[type="submit"] {
        padding: 12px 25px;
        width: 100%;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer-nav a {
        margin: 0 5px;
        display: inline-block;
        margin-bottom: 5px;
    }

    .templates-btn {
        padding: 8px 12px;
        font-size: 13px;
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .logo img {
        width: 25px;
        height: 25px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-tag span {
        font-size: 14px;
    }

    .about-heading, 
    .solutions-heading, 
    .testimonials-heading, 
    .blog-heading, 
    .quote-section h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 30px;
    }

    .tagline-item::before {
        font-size: 16px;
    }
}