/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.logo-section {
    margin: 0;
    text-align: center;
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
}

.main-logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.company-logo {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.area-text {
    color: #161616;
}

.number-text {
    color: #ed2224;
}

.area-text-white {
    color: #f3f3f3;
}

.number-text-red {
    color: #ed2224;
}

.tagline {
    font-size: 1.2rem;
    color: #6e6f71;
    font-weight: 300;
    letter-spacing: 3px;
    margin-top: -10px;
}

/* Geometric Structures */
.geometric-structures {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.structure-container {
    position: relative;
    width: 600px;
    height: 300px;
}

.structure {
    position: absolute;
    background: #f3f3f3;
    border: 2px solid #cccccc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.structure-1 {
    width: 120px;
    height: 180px;
    left: 50px;
    top: 50px;
    transform: perspective(500px) rotateY(-15deg) rotateX(5deg);
}

.structure-2 {
    width: 140px;
    height: 200px;
    left: 180px;
    top: 30px;
    transform: perspective(500px) rotateY(-10deg) rotateX(3deg);
}

.structure-3 {
    width: 160px;
    height: 220px;
    left: 320px;
    top: 20px;
    transform: perspective(500px) rotateY(5deg) rotateX(2deg);
}

.structure-4 {
    width: 100px;
    height: 160px;
    left: 480px;
    top: 60px;
    transform: perspective(500px) rotateY(15deg) rotateX(8deg);
}

.structure::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #f3f3f3;
    border: 1px solid #cccccc;
}

.structure::after {
    content: '65';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ed2224;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
}

/* Business Needs Section */
.business-needs-section {
    background: #ffffff;
    padding: 40px 0;
}

.section-title {
font-family: 'Conthrax', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #161616;
    text-align: center;
    letter-spacing: 1px;
}

.text-red {
    color: #ed2224 !important;
}

.business-text {
   font-family: 'Nunito', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #161616;
    text-align: justify;
    margin-bottom: 1rem;
    font-weight: 400;
}

.highlight-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    text-align: center;
    margin-top: 2.5rem;
}

/* Services Section */
.services-section {
    padding: 0;
}

.service-card {
    position: relative;
    overflow: hidden;
    width: 100%;
}


.service-bg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 250px;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    color: white;
    text-align: center;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.service-logo {
    text-align: center;
    margin-bottom: 20px;
}

.service-logo-img {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.service-description {
    margin: 15px 0;
    text-align: center;
}

.service-description p {
    font-family: 'Nunito', sans-serif;
    color: #f3f3f3;
    font-size: 1.1rem;
    margin: 3px 0;
    font-weight: 400;
    line-height: 1.3;
}

.btn-red {
    background: #ed2224;
    color: #f3f3f3;
    border: none;
    padding: 8px 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 15px;
}

.btn-red:hover {
    background: #d11e20;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    background: url('../images/contact-bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    position: relative;
    min-height: 600px;
}

@media (max-width: 768px) {
    .contact-section {
        background-size: cover;
        background-position: center center;
        padding: 40px 0;
        min-height: 500px;
    }
}

.contact-title {
font-family: 'Conthrax', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: #ed2224;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0;
    padding-top: 0;
    letter-spacing: 2px;
}

.contact-form {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6e6f71;
    z-index: 2;
    font-size: 1rem;
}

.message-icon {
    top: 20px;
    transform: none;
}

.contact-input {
    border: none;
    border-bottom: 2px solid #6e6f71;
    background: transparent;
    padding: 15px 15px 15px 45px;
    font-size: 1rem;
    width: 100%;
    font-family: 'Nunito', sans-serif;
    color: #161616;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-input:focus {
    border-bottom-color: #ed2224;
}

.contact-input::placeholder {
    color: #6e6f71;
    font-family: 'Nunito', sans-serif;
}

.contact-textarea {
    border: none;
    border-bottom: 2px solid #6e6f71;
    background: transparent;
    padding: 15px 15px 15px 45px;
    font-size: 1rem;
    width: 100%;
    font-family: 'Nunito', sans-serif;
    color: #161616;
    outline: none;
    resize: none;
    min-height: 120px;
    transition: border-color 0.3s ease;
}

.contact-textarea:focus {
    border-bottom-color: #ed2224;
}

.contact-textarea::placeholder {
    color: #6e6f71;
    font-family: 'Nunito', sans-serif;
}

.form-submit {
    text-align: right;
    margin-top: 30px;
}

.contact-send-btn {
    background: #ed2224;
    color: white;
    border: none;
    padding: 12px 30px;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-send-btn:hover {
    background: #d11e20;
}

/* Footer */
.footer-section {
    background-image: url('../images/footer_background_1754463879074.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #161616;
    color: #f3f3f3;
    position: relative;
    min-height: 300px;
}

.footer-content {
    padding: 60px 0 40px 0;
}

.footer-content .row {
    justify-content: space-between;
    align-items: flex-start;
}

.footer-content .col-lg-4 {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.footer-content .col-lg-4:first-child {
    padding-left: 0;
}

.footer-content .col-lg-4:last-child {
    padding-right: 0;
}

.footer-logo-img {
    max-width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-description p {
    color: #cccccc;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: transparent;
    border: 1px solid #ccc;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background: #ed2224;
    border-color: #ed2224;
    color: #f3f3f3;
}

.footer-contact {
    color: #f3f3f3;
    text-align: left;
}

.contact-phone {
    color: #f3f3f3;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-email {
    color: #f3f3f3;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-address {
    color: #cccccc;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 15px;
    margin-top: 5px;
    line-height: 1.1;
}

.contact-address span {
    display: block;
    margin-bottom: -2px;
}

.footer-map iframe {
    border-radius: 12px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
    width: 100%;
    height: 200px;
}

.footer-map iframe:hover {
    filter: grayscale(0%);
}

.footer-copyright {
    background: #0d0d0d;
    padding: 15px 0;
    border-top: 1px solid #333;
}

.footer-copyright p {
    color: #cccccc;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-content {
        padding: 40px 0 30px 0;
    }
    
    .footer-content .col-lg-4 {
        padding: 0 0px;
        margin-bottom: 30px;
    }
    
    .footer-logo-img {
        max-width: 320px;
        margin-bottom: 25px;
    }
    
    .footer-description p {
        margin-bottom: 20px;
    }
    
    .contact-address {
        margin-bottom: 20px !important;
    }
    
    .footer-map {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 25px 0;
    }
    
    .footer-content .row > div {
        margin-bottom: 30px;
    }
    
    .footer-content .row > div:last-child {
        margin-bottom: 0;
    }
    
    .footer-logo-img {
        max-width: 90%;
        width: 350px;
        margin-bottom: 20px;
    }
    
    .social-links {
        justify-content: flex-start;
        gap: 12px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .footer-map iframe {
        height: 200px;
    }
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Footer contact link styling */
.contact-phone a,
.contact-email a {
    color: #ccc;
    text-decoration: none;
}

.contact-phone a:hover,
.contact-email a:hover {
    color: #ed2224;
    text-decoration: underline;
}

.contact-address {
    font-style: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-logo {
        max-width: 250px;
	
    }
    
    .footer-logo-img {
        max-width: 200px;
			margin-top:60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .business-text {
        text-align: left;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .service-card {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .service-logo span {
        font-size: 2rem;
    }
    
    .logo-section {
        top: 1rem;
    }
    
    .main-logo {
        max-width: 220px;
    }
}

@media (max-width: 576px) {
    .main-logo {
        max-width: 200px;
    }
    
    .footer-logo-img {
        max-width: 120px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo-section {
        top: 0.5rem;
    }
    
    .main-logo {
        max-width: 150px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.message {
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    max-width: 400px;
    margin: 10px auto;
    text-align: center;
    transition: opacity 0.5s ease;
}

.message.success {
    background-color: #e6f9ed;
    color: #2b7a4b;
    border: 1px solid #2b7a4b;
}

.message.error {
    background-color: #fdecea;
    color: #b71c1c;
    border: 1px solid #b71c1c;
}









/* Hover overlay for .service-card */
.service-hover-overlay{
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.90); /* strong black overlay */
  color: #ffffff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.99);
  transition: opacity .34s ease, transform .34s ease, visibility .34s;
  z-index: 10;
  pointer-events: none;
}

/* Reveal overlay on hover / keyboard focus */
.service-card:hover .service-hover-overlay,
.service-card:focus-within .service-hover-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Slightly dim underlying overlay/content when hovered (optional) */
.service-card:hover .service-overlay {
  opacity: 0.08; /* keep background visible but dim content */
  transition: opacity .34s ease;
}

/* Logo + text styling */
.coming-soon-logo{
  max-width: 200px;
  width: 28%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(1.1);
}

/* Adjust size on small screens */
@media (max-width: 576px){
  .coming-soon-logo{ max-width: 200px; width: 34%; }
}

/* COMING SOON text */
.coming-soon-text{
  margin: 0;
    font-family: 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Optional: small subtle scale/shine on hover to feel interactive */
.service-card:hover .coming-soon-logo{
  transform: translateY(-4px);
  transition: transform .36s cubic-bezier(.2,.9,.3,1);
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #ed2224; /* Same red as theme */
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}

#backToTop:hover {
    background: #c71c1e; /* Darker red on hover */
    transform: translateY(-3px);
}

/* CSS */
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
#whatsapp-button img {
  width: 60px;
}


 #page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* background color while loading */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  /* Loader image */
  #page-loader img {
    width: 120px; /* adjust image size */
    height: auto;
    animation: pulse 1.5s infinite;
  }

  /* Fade-out animation */
  #page-loader.hidden {
    opacity: 0;
    visibility: hidden;
  }

  /* Optional animation for logo */
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.7;
    }
  }



.margin-bottom
{
	margin-bottom:0.4rem!important;
}
	
.red
{
 color:#ed2224!important;   
    
}






.email-section{background: #000; padding:20px 0;color:white;text-align:center;font-size:1.2rem;position:relative;}
@media (max-width: 767px){
.email-section{background: #000;}
}
.email-section::before{content:'';position:absolute;top:0;right:0;bottom:0;left:0;background:rgba(0, 0, 0, 0.5);}
.email-content{position:relative;z-index:2;}
.email-icon{font-size:1.5rem;margin-right:10px;}

