 /* architectural css */
 
 .aga-section {
            padding: 80px 0;
            position: relative;
        }
        
        .aga-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .aga-hero-services {
            background: linear-gradient(135deg, rgba(255, 202, 3, 0.7) 0%, rgba(255, 166, 0, 0.75) 100%), url('../images/architectural.avif') center/cover no-repeat;
            color: white;
            padding: 90px 0 100px;
            position: relative;
            overflow: hidden;
            height : 300px;
        }
        
       
        
        .aga-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .aga-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            animation: fadeInDown 1s ease;
        }
        
        .aga-hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }
        
        /* About Section */
        .aga-about {
            position: relative;
            overflow: hidden;
        }
        
     
        
        .aga-about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .aga-about-text {
            flex: 1;
            min-width: 300px;
        }
        
       
        .aga-section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .aga-section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .aga-about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
      
        /* Innovation Section */
        .aga-innovation {
            background: linear-gradient(135deg, rgba(26, 107, 60, 0.05) 0%, rgba(44, 140, 90, 0.05) 100%);
            position: relative;
        }
        
        .aga-innovation-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .aga-innovation-text {
            flex: 1;
            min-width: 300px;
        }
        
        .aga-innovation-features {
            flex: 1;
            min-width: 300px;
        }
        
        .aga-innovation-item {
            display: flex;
            align-items: center;
            padding: 20px;
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .aga-innovation-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .aga-innovation-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .aga-innovation-text-content h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        /* Sustainability Section */
        .aga-sustainability {
            background: linear-gradient(to bottom, #ffffff 0%, #f0f7f4 100%);
            position: relative;
            overflow: hidden;
        }
        
        .aga-sustainability-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .aga-sustainability-text {
            flex: 1;
            min-width: 300px;
        }
        
        .aga-sustainability-image {
            flex: 1;
            min-width: 300px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: var(--transition);
            height: 400px;
            background: url('../images/sustainablity.jpg') center/cover no-repeat;
        }
        
        .aga-sustainability-image:hover {
            transform: scale(1.02);
        }
        
      
        
        /* CTA Section */
        .aga-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
       
        
        .aga-cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .aga-cta h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
        }
        
        .aga-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
       
      
      
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .aga-animate {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .aga-animate.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .aga-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .aga-section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 768px) {
            .aga-hero-services {
                padding: 80px 0;
            }
            
            .aga-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .aga-section-title {
                font-size: 2rem;
            }
            
            .aga-cta h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .aga-hero-services {
                padding: 60px 0;
            }
            
            .aga-hero-content h1 {
                font-size: 1.8rem;
            }
            
         
        }


        /* Floating Icons */
    .arch-floating-icons {
      position: fixed;
      right: 20px;
      bottom: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 999;
    }

    .arch-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      color: white;
      text-decoration: none;
      transition: transform 0.3s ease;
    }

    .arch-icon:hover {
      transform: scale(1.1);
    }

    .arch-whatsapp {
      background: #25d366;
    }

    .arch-call {
      background: #1a73e8;
    }

        /* interior css */



        


