 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .contact-page-container{
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        
        /* Hero Section */
        /* .contact-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1579546929662-711aa81148cf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
         */
        /* .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .contact-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        } */

        
        /* Main Content */
        .contact-content {
            padding: 10px 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            
        }
        
        .contact-info h2 {
            color: #2c3e50;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f34a4a;
            display: inline-block;
        }
        
        .info-item {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }
        
        .info-icon {
            width: 40px;
            height: 40px;
            background: #f1f6fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .info-details h3 {
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .info-details p {
            color: #7f8c8d;
        }
        
        .info-details p a{
            text-decoration: none;
            color: #7f8c8d;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #f1f6fa;
            border-radius: 50%;
            color: #2c3e50;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            color: white;
            transform: translateY(-3px);
        }

        .social-links .con-facebook:hover{
            background-color: rgb(55, 55, 235);
        }
        .social-links .con-twitter:hover{
            background-color: skyblue;
        }

        .social-links .con-linked-in:hover{
      background-color: rgb(76, 76, 242);
        }
  
         .social-links .con-instagram:hover{
      background-color: #d51d6a;
        }


                /* Contact Form */
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .contact-form h2 {
            color: #2c3e50;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f34a4a;
            display: inline-block;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .contact-btn {
            display: inline-block;
            padding: 14px 30px;
            background-color:  #43c553;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        
        .contact-btn:hover {
            background-color: #30943c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        
        /* Map Section */
        .map-section {
            padding: 0 0 80px;
        }
        
        .map-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }


          
        /* FAQ Section */
        .contact-faq-section {
            /* background: #f1f6fa; */
            padding: 80px 0;
            background-image: url('../img/background-img/banner.jpg');
        }
        
        .faq-section h2 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 50px;
        }
        
        .contact-faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .contact-faq-item {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .contact-faq-item:hover{
            transform: translateY(-5px);
        }
        
        .contact-faq-item h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.5rem;
        }
        
        .contact-faq-item h3 i {
            color: #43c553;
            margin-right: 10px;
        }


        /* Animation keyframes */
@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Initial state */
.animate-left,
.animate-right {
  opacity: 0;
}

/* Trigger animation when active */
.animate-left.active {
  animation: slideInLeft 1s ease forwards;
}

.animate-right.active {
  animation: slideInRight 1s ease forwards;
}

        
         /* Responsive Design */
        @media (max-width: 768px) {
          
            /* .contact-hero h1 {
                font-size: 2.3rem;
            } */
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .contact-info, .contact-form {
                padding: 25px;
            }

            .contact-grid{
                gap: 30px;
            margin-top: 30px;
            }

            .contact-faq-section {
                 padding: 40px 0;
            }
        }