body,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
body, html {
  font-family: 'Poppins', sans-serif;
}

/* Ensure all text elements use Poppins */
body, h1, h2, h3, h4, h5, h6, p, span, div {
  font-family: 'Poppins', sans-serif;
}
/* Contact Us Section Styling */
.contact-us-hero {
    height: auto;
    background-image: url('assets/Contact-us/contact-us.jpg'); 
    background-size: cover;  
    background-position: top;   
    background-repeat: no-repeat;   
    background-color: #000033;      
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    margin-top: -10vh;
    position: relative;
}

/* Overlay for better readability */
.contact-us-hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 51, 0.2); /* Dark overlay */
    z-index: 1;
}

/* Content Styling */
.contact-us-hero-content {
    position: relative;
    text-align: left;
    max-width: 1200px;
    margin: 15vh auto;
    z-index: 2; 
}

/* Title Styling */
.contact-us-hero-title {
    font-size: 3rem;
    padding-top: 7vh;

}

/* Buttons Wrapper */
.contact-us-hero-buttons {
    display: flex;
    justify-content: start;
    gap: 1rem;
}

/* Button Styling */
.contact-us-hero-button {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

/* Primary Button */
.contact-us-hero-button-primary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.contact-us-hero-button-primary:hover {
    background-color: white;
    color: #000033;
}

/* Secondary Button (optional) */
.contact-us-hero-button-secondary {
    background-color: white;
    color: #000033;
    border: 2px solid white;
}

.contact-us-hero-button-secondary:hover {
    background-color: #f0f0f0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .contact-us-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-us-hero-title {
        font-size: 2rem;
    }

    .contact-us-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-us-hero-button {
        width: 80%;
    }

    .contact-us-hero {
        margin-top: -15vh;
    }

    .contact-us-hero-content {
        margin-top: 20vh;
    }
}


/*---------------------------Map------------------------------*/


.contact-map-container {
    position: relative;
    width: 100%;
    opacity: 0.9;
    margin: 0 auto;
}

.contact-map-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-map-controls {
    position: absolute;
    right: 10px;
    bottom: 20px;
    display: flex;
    gap: 8px;
    z-index: 1;
}

.contact-map-button {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color 0.3s;
}

.contact-map-button:hover {
    background-color: #f5f5f5;
}

@media (max-width: 768px) {
    .contact-map-wrapper {
        height: 300px;
    }
    
    .contact-map-button {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .contact-map-wrapper {
        height: 250px;
    }
}


/*-----------------------------FAQ Section----------------------------------*/




.contact-us-faq-section {
    background-color: #000033;
    color: white;
    padding: 4rem 2rem;
}
.contact-us-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}
.contact-us-faq-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}
.contact-us-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.contact-us-faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}
.contact-us-faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.contact-us-faq-answer {
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-us-faq-section {
        padding: 3rem 1rem;
    }
    .contact-us-faq-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .contact-us-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-us-faq-section {
        padding: 2rem 1rem;
    }
    .contact-us-faq-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    .contact-us-faq-question {
        font-size: 1.1rem;
    }
    .contact-us-faq-answer {
        font-size: 0.9rem;
    }
}

/*------------------Contact Information Cards Section---------------------*/

    
.contact-us-info-cards-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-us-info-cards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-us-info-cards-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000033;
    position: relative;
}

.contact-us-info-cards-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(0,0,51,1) 0%, rgba(0,0,0,1) 100%);
}

/* Cards Layout */
.contact-us-info-cards-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Individual Card Styling */
.contact-us-info-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 51, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-us-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 51, 0.15);
}

/* Card Icon */
.contact-us-info-card-icon {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(0,0,51,1) 0%, rgba(0,12,45,1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

/* Card Title */
.contact-us-info-card-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #000033;
    position: relative;
}

.contact-us-info-card-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #000033;
}

/* Card Content */
.contact-us-info-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-us-info-card-content p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.contact-us-info-card-content a {
    color: #000033;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-us-info-card-content a:hover {
    color: #0000cc;
}

/* Location Card Specific */
.contact-us-info-card-location {
    border-top: 4px solid #000033;
}

/* Department Card Specific */
.contact-us-info-card-department {
    border-top: 4px solid #003399;
}

/* Card Button */
.contact-us-info-card-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #000033;
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-us-info-card-button:hover {
    background-color: #0000cc;
    transform: translateY(-2px);
}

/* Grievance Button */
.contact-us-info-grievance {
    text-align: center;
    margin-top: 2rem;
}

.contact-us-info-grievance-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, rgba(0,0,51,1) 0%, rgba(0,12,45,1) 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 51, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-us-info-grievance-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 51, 0.25);
    background: white;
    color: #000033;
    border: 2px solid #000033;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .contact-us-info-cards-group {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-us-info-cards-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-us-info-cards-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-us-info-cards-group {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-us-info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-us-info-cards-section {
        padding: 2rem 1rem;
    }
    
    .contact-us-info-cards-title {
        font-size: 1.75rem;
    }
    
    .contact-us-info-cards-group {
        grid-template-columns: 1fr;
    }
    
    .contact-us-info-card-title {
        font-size: 1.3rem;
    }
    
    .contact-us-info-grievance-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}



/*------------------contact-us-form ---------------------*/

.cloud-compute-form-container-main {
    width: 100%;
    padding-top: 30px;
    margin-bottom: 50px;
    background-color: #ffffff;
  }
  
  .cloud-compute-form-container {
    background: rgb(0,12,45);
    background: linear-gradient(90deg, rgba(0,12,45,1) 0%, rgba(0,0,0,1) 100%);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
    margin: 5vh auto;
    border-radius: 15px;
  }
  
  .cloud-compute-form-left {
    flex: 1;
    padding-right: 2rem;
  }
  
  .cloud-compute-form-right {
    flex: 1;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
  }
  
  .cloud-compute-form-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cloud-compute-form-subtitle {
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .cloud-compute-form-contact-info {
    margin-bottom: 1rem;
  }
  
  .cloud-compute-form-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .cloud-compute-form-social-icon {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .cloud-compute-form-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .cloud-compute-form-input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .cloud-compute-form-submit {
    background-color: black;
    font-weight: 600;
    border: 2px solid black;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
  }
  
  @media screen and (max-width: 1024px) {
    .cloud-compute-form-container {
      max-width: 90%;
    }
  }
  
  @media screen and (max-width: 768px) {
    .cloud-compute-form-container {
      flex-direction: column;
      padding: 1.5rem;
    }
  
    .cloud-compute-form-left,
    .cloud-compute-form-right {
      flex: none;
      width: 100%;
      padding: 1rem;
    }
  
    .cloud-compute-form-left {
      padding-right: 1rem;
      margin-bottom: 1.5rem;
    }
  
    .cloud-compute-form-title {
      font-size: 1.75rem;
    }
  
    .cloud-compute-form-subtitle {
      font-size: 0.9rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .cloud-compute-form-container-main {
      padding-top: 30px;
      padding-bottom: 30px;
    }
  
    .cloud-compute-form-container {
      padding: 1rem;
    }
  
    .cloud-compute-form-left,
    .cloud-compute-form-right {
      padding: 0.5rem;
    }
  
    .cloud-compute-form-title {
      font-size: 1.5rem;
    }
  
    .cloud-compute-form-subtitle {
      font-size: 0.8rem;
    }
  
    .cloud-compute-form-social-icons {
      justify-content: center;
    }
  
    .cloud-compute-form-submit {
      padding: 0.5rem;
    }
  }
  