* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}
/* Nav Section Starts */

    /* Nav Menu */
    header {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        line-height: 1.5;
        position: sticky;
        top: 0;
        z-index: 50;
        width: 100%;
        background-color: white;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .header-container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
    }
    
    .logoo {
        flex-shrink: 0;
    }
    
    .logoo img {
        height: 60px;
    }
    
    /* Desktop navigation */
    .desktop-nav {
        display: none;
    }
    
    @media (min-width: 768px) {
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-button {
        all: unset; /* Removes default button styles */
        display: flex;
        align-items: center;
        color: #374151;
        padding: 0.5rem 0.25rem;
        font-size: 0.875rem;
        font-weight: 500;
    }
    
    .nav-button:hover {
        color: #111827;
    }
    
    .nav-link {
        color: #374151;
        padding: 0.5rem 0.25rem;
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
    }
    
    .nav-link:hover {
        color: #111827;
    }
    
    .chevron-icon {
        margin-left: 0.25rem;
        width: 16px;
        height: 16px;
        transition: transform 0.2s;
    }
    
    .rotate {
        transform: rotate(180deg);
    }
    
    .dropdown {
        position: absolute;
        left: 0;
        top: 100%;
        margin-top: 0.5rem;
        width: 12rem;
        border-radius: 0.375rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 10;
        display: none;
    }
    
    .dropdown.active {
        display: block;
    }
    
    .dropdown-item {
        display: block;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        color: #000;
    }
    
    .dropdown-item:hover {
        background-color: #214150;
        color: #fff;
        border-radius: 0.375rem;
    }
    
    /* CTA buttons */
    .cta-buttons {
        display: none;
    }
    
    @media (min-width: 768px) {
        .cta-buttons {
            display: flex;
            gap: 1rem;
        }
    }
    
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        font-weight: 500;
        border-radius: 0.375rem;
        transition: all 0.2s;
        text-decoration: none;
    }
    
    .btn-outline {
        border: 1px solid #821928;
        color: #000;
        background-color: white;
    }
    
    .btn-outline:hover {
        background-color: #eff6ff;
    }
    
    .btn-primary {
        border: 1px solid transparent;
        color: white;
        background-color: #821928;
    }
    
    .btn-primary:hover {
        background-color: #214150;
    }
    
    /* Mobile menu button */
    .mobile-menu-button {
        all: unset; /* Removes default button styles */
        display: flex;
        padding: 0.5rem;
        color: #374151;
    }
    
    @media (min-width: 768px) {
        .mobile-menu-button {
            display: none;
        }
    }
    
    .mobile-menu-button:hover {
        color: #111827;
        background-color: #f3f4f6;
        border-radius: 0.375rem;
    }
    
    .mobile-menu-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Mobile menu */
    .mobile-menu {
        display: none;
        padding: 0.5rem;
        background-color: white;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-nav-item {
        margin-bottom: 0.25rem;
    }
    
    .mobile-nav-button {
        all: unset; /* Removes default button styles */
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        color: #374151;
        border-radius: 0.375rem;
    }
    
    .mobile-nav-button:hover {
        background-color: #f3f4f6;
        color: #111827;
    }
    
    .mobile-nav-link {
        display: block;
        width: 100%;
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
        font-weight: 500;
        color: #374151;
        border-radius: 0.375rem;
        text-decoration: none;
    }
    
    .mobile-nav-link:hover {
        background-color: #f3f4f6;
        color: #111827;
    }
    
    .mobile-dropdown {
        padding-left: 1rem;
        margin-top: 0.25rem;
        display: none;
    }
    
    .mobile-dropdown.active {
        display: block;
    }
    
    .mobile-dropdown-item {
        display: block;
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        color: #4b5563;
        border-radius: 0.375rem;
    }
    
    .mobile-dropdown-item:hover {
        background-color: #f3f4f6;
        color: #111827;
    }
    
    .mobile-cta {
        padding: 1rem 0.75rem;
        margin-top: 1rem;
        border-top: 1px solid #e5e7eb;
    }
    
    .mobile-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }
  
    /*Nav Section Ends */
  




/* Bricks Image Slide Section Starts */

.slider {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

.active {
    display: block;
}

@media (max-width: 768px) {
    .slide img {
        max-height: 300px;
    }
}


/* Bricks Image Slide Section Ends */

/* Welcome Section Starts */

.welcome-section {
    width: 100%;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.9) 0%, rgba(228, 231, 235, 0.9) 100%);
    text-align: center;
}

.brick-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 90px;
}

.payments-label {
    font-size: 1rem;
    font-weight: 700;
    color: #821928;
    margin-bottom: 1rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.main-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #214150;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    max-width: 90%;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #821928;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    line-height: 1.2;
}

.cta-button:hover {
    background-color: #a12c3b;
}

@media (max-width: 767px) {
    .welcome-section {
        min-height: 70vh;
        max-height: 600px;
        padding: 1.5rem 1rem;
        background: linear-gradient(135deg, rgba(245, 247, 250, 0.95) 0%, rgba(228, 231, 235, 0.95) 100%);
    }

    .main-heading {
        font-size: 1.8rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.65rem 1.3rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        min-height: 60vh;
        max-height: 500px;
        padding: 1rem 0.75rem;
    }

    .main-heading {
        font-size: 1.6rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Welcome Section Ends */

/* info brick Section Starts */
.infobrick-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    overflow: hidden;
}

.brick-image-container {
    width: 100%;
    max-width: 500px;
    margin-bottom: 2rem;
}

.brick-image {
    width: 100%;
    height: auto;
}

.brick-content {
    text-align: center;
    padding: 0 1rem;
}

.brick-heading {
    font-size: 2rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.brick-description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.brick-tagline {
    font-style: italic;
    color: #666;
    font-size: 1rem;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 2rem 0;
}

.floating-brick {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
    animation: float 15s infinite ease-in-out;
}

.brick-1 {
    width: 60px;
    height: 30px;
    background-color: #c45a28;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.brick-2 {
    width: 50px;
    height: 25px;
    background-color: #8b4513;
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
    transform: rotate(-10deg);
}

.brick-3 {
    width: 55px;
    height: 28px;
    background-color: #d2691e;
    top: 60%;
    left: 15%;
    animation-delay: 4s;
    transform: rotate(25deg);
}

.brick-4 {
    width: 45px;
    height: 22px;
    background-color: #a0522d;
    top: 30%;
    right: 10%;
    animation-delay: 6s;
    transform: rotate(-20deg);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-15px) rotate(var(--rotation, 0deg));
    }
}

@media (min-width: 768px) {
    .infobrick-section {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 4rem 8%;
    }

    .brick-image-container {
        flex: 1;
        margin-bottom: 0;
    }

    .brick-content {
        flex: 1;
        padding-left: 5%;
        text-align: left;
    }

    .brick-heading {
        font-size: 2.5rem;
    }
}

/* info brick Section Ends */

/* imperssion Section Starts */
.imperssion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.brick {
    position: absolute;
    background-color: rgba(165, 42, 42, 0.05);
    border-radius: 4px;
    transform: rotate(45deg);
}

.brick1 {
    width: 150px;
    height: 75px;
    top: 10%;
    left: 5%;
    animation: float 15s infinite ease-in-out;
}

.brick2 {
    width: 120px;
    height: 60px;
    top: 70%;
    left: 80%;
    animation: float 18s infinite ease-in-out reverse;
}

.brick3 {
    width: 140px;
    height: 70px;
    top: 40%;
    left: 30%;
    animation: float 20s infinite ease-in-out 2s;
}

.brick4 {
    width: 100px;
    height: 50px;
    top: 20%;
    left: 70%;
    animation: float 17s infinite ease-in-out 1s;
}

.brick5 {
    width: 180px;
    height: 90px;
    top: 80%;
    left: 10%;
    animation: float 22s infinite ease-in-out 3s;
}

.impressions-section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    color: #4a3c30;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #4a3c30;
}

.section-description {
    font-size: 1rem;
    max-width: 900px;
    margin: 1.5rem auto;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-image {
        height: 250px;
    }
}

@media (min-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* imperssion Section Ends */

/* Contact Section Starts */
.contact-section {
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ccontainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.left-content {
    width: 100%;
    text-align: center;
}

.heading {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.button-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.button-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.demo-button .button-overlay {
    background-color: #821928;
    color: white;
}

.demo-button .button-overlay:hover {
    background-color: #1f2937;
}

.free-button .button-overlay {
    background-color: transparent;
    color: #1f2937;
    border: 1px solid #821928;
}

.free-button .button-overlay:hover {
    background-color: #fff8f7;
}

.right-content {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.circle-bg {
    width: 240px;
    height: 240px;
    background-color: #1f2937;
    border-radius: 50%;
    overflow: hidden;
}

.person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.teal-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #00bfa5;
    border-radius: 50%;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.dots-grid {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ff5c35;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 4rem 1rem;
    }

    .ccontainer {
        flex-direction: row;
        justify-content: space-between;
    }

    .left-content, .right-content {
        width: 50%;
    }

    .left-content {
        text-align: left;
        padding-right: 2rem;
    }

    .heading {
        font-size: 2.5rem;
    }

    .buttons-container {
        flex-direction: row;
    }

    .button-wrapper {
        width: 180px;
    }

    .circle-bg {
        width: 320px;
        height: 320px;
    }
}

/* Contact Section Ends */



/* Footer Section Starts */

.footer {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
  }
  
  .footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 70px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  .footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #821928;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 12px;
    position: relative;
  }
  
  .footer-column ul li a {
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
  }
  
  .footer-column ul li a:hover {
    color: #214150;
  }
  
  /* Dropdown Styles */
  .ddropdown {
    position: relative;
  }
  
  .ddropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    color: #222;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .ddropdown-toggle .fa {
    font-size: 10px;
    color: #555;
    transition: transform 0.3s ease, color 0.2s ease;
  }
  
  .ddropdown:hover .ddropdown-toggle {
    color: #214150;
  }
  
  .ddropdown:hover .ddropdown-toggle .fa {
    transform: rotate(180deg);
    color: #214150;
  }
  
  .ddropdown-menu {
    display: none;
    position: relative;
    left: 0;
    background-color: #fff;
    min-width: 100%;
    border-radius: 6px;
    z-index: 10;
    padding: 8px 0;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .ddropdown:hover .ddropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .ddropdown-menu li {
    margin-bottom: 0;
    padding: 0;
  }
  
  .ddropdown-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  .ddropdown-menu li a:hover {
    background-color: #f5f9ff;
    color: #214150;
  }
  
  .newsletter {
    max-width: 400px;
  }
  
  .newsletter h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .newsletter-form {
    display: flex;
    position: relative;
    margin-bottom: 30px;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background-color: #f5f9ff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 20px rgba(0, 0, 0, 0.05);
  }
  
  .newsletter-input:focus {
    outline: none;
  }
  
  .newsletter-button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0 24px;
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .newsletter-button:hover {
    background-color: #333;
  }
  
  .contact-info {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .contact-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .contact-column p {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    margin-right: 50px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  
  .copyright {
    color: #555;
    font-size: 14px;
  }
  
  .social-icons {
    display: flex;
    gap: 20px;
  }
  
  .social-icons a {
    color: #111;
    font-size: 18px;
    transition: color 0.2s ease;
  }
  
  .social-icons a:hover {
    color: #555;
  }
  
  @media (max-width: 992px) {
    .footer-content {
        gap: 40px;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
    
    .newsletter {
        flex: 0 0 100%;
        max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
  
    .ddropdown-menu {
        position: static;
        background-color: #fafafa;
        min-width: 100%;
        border-radius: 4px;
        margin-top: 0;
        padding: 8px 0;
        opacity: 1;
        transform: none;
    }
  
    .ddropdown:hover .ddropdown-menu {
        display: block;
    }
  }
  
  /* Footer Section End's */