/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Make page use full height */
html, body {
  height: 100%;
}

/* Layout wrapper */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* full height */
  font-family: Arial, sans-serif;
}

/* ===== Header ===== */
header {
  background-color: #171818;
  color: rgb(210, 112, 112);
  display: flex;
  justify-content: space-between; /* logo left, nav right */
  align-items: center;
  padding: 10px 10%;
}

header .logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

header .logo img {
  width: 200px; /* adjust as needed */
  height: 80px;
  margin-right: 10px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #00bcd4;
}
 /* -----------------Section-----------------*/
    
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #248f9b;
    border: 1px solid #333;
    padding: 12px 34px;
    font-size: 20px;
    background-color:transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid cornsilk;
    background: cornsilk;
}

/*------first-------*/
/* Section Wrapper */
.first {
    padding: 50px 10%;
    background: #dbdb98; /* light background */
}

/* Flexbox Layout */
.first-container {
    display: flex;
    align-items: center;   /* vertically center */
    justify-content: space-between; /* space between text & image */
    gap: 30px;  /* spacing between text and image */
}

/* Left Side Text */
.first-left {
    flex: 1;   /* take equal space */
}

.first-left h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.first-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Right Side Image */
.first-right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* optional styling */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}






/*-------------section2..........*/

.section {
    padding: 80px 10%;
    background: url("photos/comin.png") no-repeat center center/cover; 

}

/* Grid for 3 columns: left, middle, right */
.s-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

/* Left & Right columns stack items vertically */
.section-left,
.section-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Service cards */
.section-col {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.section-col img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.section-col h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.section-col p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Middle image */
.section-middle img {
    max-width: 250px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .s-row {
        grid-template-columns: 1fr; /* stack everything */
    }
    .section-middle {
        text-align: center;
        margin: 30px 0;
    }
}


/*------services-------*/
.service { 
    width: 80;
    margin: auto;
    text-align: center;
    padding: 10px;
    position: relative;

}

.row {
    margin: 5%;
    display: flex;
    justify-content: space-between;
}


.service-col {
    flex-basis: 33%;
    background-color: #cdaeae;
    border-radius: 10px;
    margin: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;

}

.service-col:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}




/*why*/
.why{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;

}


.why {
    padding: 80px 10%;
    background: #f9f9f9;
    text-align: center;
}

.why h1 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
}

/* Grid layout - 2 rows, 3 columns */
.why-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Each column (logo + text) */
.why-col {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    text-align: left;  /* text stays right of image */
}

.why-col img {
    width: 60px;
    height: 60px;
    margin-right: 15px;  /* space between logo & text */
}

.why-col p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

/* Responsive for mobile */
@media (max-width: 900px) {
    .why-row {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 600px) {
    .why-row {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* ===== Company ===== */
/* Company Section */
.company {
    background: url("photos/ourCom.jpg") no-repeat center center/cover; 
    position: relative;
    padding: 100px 10%;
    color: #2e0601; /* White text for contrast */
    text-align: center;
}

/* Add a dark overlay for readability */
.company::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(1, 103, 61, 0.5); /* semi-transparent overlay */
    z-index: 0;
}

/* Content styling */
.company-content {
    position: relative;
    z-index: 1; /* keep text above overlay */
    max-width: 800px;
    margin: auto;
}

.company-content h3 {
    color: #f00606;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.company-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Optional: Fancy underline effect under heading */
.company-content h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #00c3ff;
    margin: 15px auto 0;
    border-radius: 2px;
}

    



/* ===== Main Content ===== */
main {
  flex: 1; /* push footer to bottom */
  padding: 50px 10%;
  background: #f9f9f9;
}



/* ===== Footer ===== */
/* ===== Footer ===== */
footer {
    background-color: #333;
    color: white;
    padding: 50px 10%;
    flex-shrink: 0; /* keep footer at bottom */
    font-family: Arial, sans-serif;
}

/* Footer Columns */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* responsive */
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #555;
    padding-top: 20px;
    font-size: 14px;
    color: #bbb;
}

.footer-bottom a {
    color: #bbb;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        text-align: center;
    }
}




/*........... service PAge CSS...............*/



















/*........... contact PAge CSS...............*/
/* Banner */
.contact-banner {
    position: relative;
    text-align: center;
    color: white;
}

.contact-banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: brightness(0.6);
}

.contact-banner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: bold;
}

/* Contact Form Section */
.contact-section {
    background: #f9f9f9;
    padding: 60px 10%;
    display: flex;
    justify-content: center;
}

.contact-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.contact-container p {
    color: #666;
    margin-bottom: 30px;
}

.contact-container input,
.contact-container textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
}

.contact-container input:focus,
.contact-container textarea:focus {
    border-color: #00b894;
    box-shadow: 0px 0px 8px rgba(0,184,148,0.5);
}

.contact-container textarea {
    resize: none;
    height: 120px;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5b;
}





/*-----------Career page............*/

/* Career Banner */
.career-banner {
    position: relative;
    text-align: center;
    color: white;
}

.career-banner img {
    width: 150%;
    height: 350px;
    object-fit: cover;
    filter: brightness(0.6);
}

.career-banner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: bold;
}

/* Career Section */
.career-section {
    background: #f9f9f9;
    padding: 60px 10%;
    display: flex;
    justify-content: center;
}

.career-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.career-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.career-container p {
    color: #666;
    margin-bottom: 30px;
}

/* Input Fields */
.career-container input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input {
    flex: 1;
}

/* Upload File */
.upload-label {
    display: block;
    padding: 15px;
    border: 2px dashed #aaa;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    background: #fafafa;
    transition: 0.3s;
}

.upload-label:hover {
    border-color: #00b894;
    background: #f1fff8;
}

.upload-label input {
    display: none;
}

/* Submit Button */
.submit-btn {
    background: #007BFF;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #0056b3;
}

/* Hyderabad Offices Section */
.hyderabad-offices {
    padding: 50px 10%;
    background: #f1f1f1;
    text-align: center;
}

.hyderabad-offices h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
}

.office-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.office {
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    max-width: 400px;
}

.office h3 {
    color: #00c3ff;
    margin-bottom: 10px;
}

.office p {
    font-size: 16px;
    color: #444;
}

.office a {
    color: #444;
    text-decoration: none;
    transition: 0.3s;
}

.office a:hover {
    color: #00c3ff;
}


/* Contact Info Section */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 50px 10%;
  background: #f9f9f9;
  text-align: center;
}
.info-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}
.info-box h2 {
  color: #00c3ff;
  margin-bottom: 10px;
}
.info-box a {
  text-decoration: none;
  color: #333;
}
.info-box a:hover {
  color: #00c3ff;
}



/*About us*/

