/* ========================================= */
/* navbar section logo  */
/* ========================================= */

/* Base styles for logo */
.logo-res {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-res img {
    height: 60px;
    width: auto;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Mobile landscape and below (up to 576px) */
@media (max-width: 576px) {
    .logo-res img {
        height: 50px;
        border-radius: 6px;
    }
}

/* Tablets (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .logo-res img {
        height: 70px;
        border-radius: 8px;
    }
}

/* Small desktops (769px to 1199px) */
@media (min-width: 769px) and (max-width: 1199px) {
    .logo-res img {
        height: 80px;
        border-radius: 12px;
    }
}

/* Large desktops (1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .logo-res img {
        height: 90px;
        border-radius: 12px;
    }
}

/* Extra large desktops (1400px and up) */
@media (min-width: 1400px) {
    .logo-res img {
        height: 100px;
        border-radius: 14px;
    }
}


/* ========================================= */
/* navbar section logo (END) */
/* ========================================= */



        /* ========================================= */
        /* HERO section SLIDER  */
        /* ========================================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-slider {
            position: absolute;
            inset: 0;
        }

        /* Full width background - displays the -back images */
        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3%;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            width: 100%;
            height: 100%;
        }

        .hero-card {
            background: rgba(255, 255, 255, .96);
            backdrop-filter: blur(10px);
            padding: 2.8rem;
            border-radius: 20px;
            max-width: 500px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
            margin-right: 3%;
        }

        .hero-card h1 {
            font-weight: 700;
            font-size: 2.6rem;
            color: #333;
            line-height: 1.2;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .hero-card h1 span{
            font-weight: 300;
        }

        .hero-card p {
            color: #666;
            font-size: 1.1rem;
            margin: 1rem 0 1.6rem;
            font-style: italic;
        }

        .hero-image {
            width: 300px;
            height: 160px;
            border-radius: 20px;
            object-fit: cover;
            display: block;
            margin: 1rem auto;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
            transition: all .3s ease;
        }

        .cta-btn {
            background: #000;
            color: #fff;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: .9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all .25s ease;
        }

        .cta-btn:hover {
            background: #C4904E;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, .3);
        }

        .hero-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .55);
            cursor: pointer;
            transition: .25s;
        }

        .indicator.active {
            background: #C4904E;
            transform: scale(1.15);
        }

        /* ===== HERO MOBILE RESPONSIVE ===== */
        @media (max-width:768px) {
            .hero-content {
                justify-content: center;
                padding: 0 3%;
            }

            .hero-card {
                max-width: 92%;
                padding: 2rem;
                margin-right: 0;
            }

            .hero-card h1 {
                font-size: 2rem;
            }

            .hero-card p {
                font-size: 1rem;
            }

            .hero-image {
                width: 180px;
                height: 180px;
            }
        }

        @media (max-width:480px) {
            .hero-card {
                padding: 1.5rem;
            }

            .hero-card h1 {
                font-size: 1.75rem;
            }

            .cta-btn {
                padding: .85rem 1.5rem;
                font-size: .82rem;
            }

            .hero-image {
                width: 150px;
                height: 150px;
            }
        }

        /* ========================================= */
        /* HERO section SLIDER (END)  */
        /* ========================================= */



/* ========================================= */
/* Azura Modal Specific Styles   */
/* ========================================= */

/* Azura Modal Specific Styles - No conflicts with existing CSS */
/* AZURA Modal Base Styles */
.azura-modal-dialog {
  max-width: 800px;
  margin: 1rem auto;
}

.azura-modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  margin-top: 5rem;
}

/* AZURA Split Layout Container */
.azura-modal-body {
  padding: 0;
  display: flex;
  min-height: 350px;
}

/* AZURA Left Image Section */
.azura-image-section {
  flex: 1;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.azura-image-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(196, 144, 78, 0.1) 0%, rgba(196, 144, 78, 0.05) 100%);
  z-index: 1;
}

/* AZURA 3D Logo Animation */
.azura-logo-container {
  position: relative;
  z-index: 2;
  animation: azura-float 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

.azura-logo-3d {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 8px 15px rgba(196, 144, 78, 0.3));
  transition: all 0.3s ease;
  animation: azura-rotate3d 20s linear infinite;
  border-radius: 15px;
}

.azura-logo-3d:hover {
  transform: scale(1.05) rotateY(15deg);
  filter: drop-shadow(0 12px 25px rgba(196, 144, 78, 0.5));
}

/* AZURA Floating Particles */
.azura-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.azura-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #C4904E;
  border-radius: 50%;
  opacity: 0.6;
  animation: azura-particle-float 15s linear infinite;
}

.azura-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.azura-particle:nth-child(2) { left: 30%; animation-delay: -3s; }
.azura-particle:nth-child(3) { left: 50%; animation-delay: -6s; }
.azura-particle:nth-child(4) { left: 70%; animation-delay: -9s; }
.azura-particle:nth-child(5) { left: 90%; animation-delay: -12s; }

/* AZURA Right Form Section */
.azura-form-section {
  flex: 1;
  background: white;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* AZURA Modal Header - GOLDEN BACKGROUND */
.azura-modal-header {
  background: #C4904E;
  border-bottom: 2px solid #C4904E;
  padding: 12px 25px;
  position: relative;
}

.azura-modal-title {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.azura-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: white;
  opacity: 0.9;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.azura-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) rotate(90deg);
}

/* AZURA Form Styles */
.azura-form-group {
  margin-bottom: 15px;
}

.azura-form-group label {
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.azura-form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  background: white;
  color: #000000;
  transition: all 0.3s ease;
  font-family: 'Arial', sans-serif;
}

.azura-form-control:focus {
  outline: none;
  border-color: #C4904E;
  box-shadow: 0 0 0 3px rgba(196, 144, 78, 0.1);
  background: rgba(196, 144, 78, 0.02);
}

.azura-form-control::placeholder {
  color: #999;
  font-style: italic;
}

/* AZURA Modal Footer - GOLDEN BACKGROUND */
.azura-modal-footer {
  background: #C4904E;
  border-top: 2px solid #C4904E;
  padding: 12px 25px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* AZURA Button Styles */
.azura-btn {
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Arial', sans-serif;
}

.azura-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.azura-btn-secondary:hover {
  background: white;
  border-color: white;
  color: #C4904E;
}

.azura-btn-primary {
  background: #000000;
  color: white;
  border: 2px solid #000000;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.azura-btn-primary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* AZURA Animations */
@keyframes azura-float {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-15px) rotateY(180deg); }
}

@keyframes azura-rotate3d {
  0% { transform: rotateY(0deg) rotateX(0deg); }
  25% { transform: rotateY(90deg) rotateX(5deg); }
  50% { transform: rotateY(180deg) rotateX(0deg); }
  75% { transform: rotateY(270deg) rotateX(-5deg); }
  100% { transform: rotateY(360deg) rotateX(0deg); }
}

@keyframes azura-particle-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* AZURA Responsive Design */
@media (max-width: 768px) {
  .azura-modal-dialog {
    margin: 0.5rem;
    max-width: none;
  }
  
  .azura-modal-body {
    flex-direction: column;
    min-height: auto;
  }
  
  .azura-image-section {
    min-height: 150px;
  }
  
  .azura-form-section,
  .azura-modal-header,
  .azura-modal-footer {
    padding: 15px 20px;
  }
  
  .azura-modal-title {
    font-size: 20px;
  }
  
  .azura-logo-3d {
    width: 80px;
  }
}

/* AZURA Additional Effects */
.modal.fade .azura-modal-dialog {
  transform: scale(0.8) rotateY(45deg);
  transition: all 0.3s ease-out;
}

.modal.show .azura-modal-dialog {
  transform: scale(1) rotateY(0deg);
}


/* ========================================= */
/* Azura Modal Specific Styles  */
/* ========================================= */


/* ========================================= */
/* Azura Projects Broader view  */
/* ========================================= */


/* AZURA Eye Icon Styles */
.az-eye-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #C4904E;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(0.8);
    opacity: 0.9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    outline: none;
}

.az-eye-icon:hover {
    background: #C4904E;
    color: white;
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(196, 144, 78, 0.4);
}

.az-eye-icon:active {
    transform: scale(0.95);
}

/* AZURA Image Modal Styles */
.az-image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    backdrop-filter: blur(10px);
    animation: az-modalFadeIn 0.4s ease;
}

.az-image-modal.az-active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.az-modal-content {
    position: relative;
    max-width: 65%;      /* increased width */
    max-height: 90%;
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.5) rotateY(45deg);
    animation: az-modalSlideIn 0.5s ease forwards;
}

.az-modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.az-modal-info {
    padding: 20px;
    background: linear-gradient(135deg, #C4904E 0%, #b8834a 100%);
    color: white;
}

.az-modal-info h3 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 700;
}

.az-modal-info span {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.az-close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;              /* larger for usability */
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: #C4904E;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;           /* always on top */
}

.az-close-modal:hover {
    background: #C4904E;
    color: white;
    transform: rotate(90deg);
}

/* AZURA Animations */
@keyframes az-modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes az-modalSlideIn {
    from {
        transform: scale(0.5) rotateY(45deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .az-modal-content {
        max-width: 95%;
        max-height: 95%;
        width: 90%;
    }

    .az-modal-info {
        padding: 15px;
    }

    .az-modal-info h3 {
        font-size: 18px;
    }

    .az-close-modal {
        top: 10px;      /* adjust position for small screens */
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}


/* ============================ */
/* testimonilas */
/* =============================== */


.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #C4904E; /* default color */
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    text-transform: uppercase;
}



 /* ===== ABOUT HERO ===== */
        .ot-hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .ot-hero-background {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .ot-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3%;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            width: 100%;
            height: 100%;
        }

        .ot-hero-card {
            background: rgba(255, 255, 255, .96);
            backdrop-filter: blur(10px);
            padding: 2.8rem;
            border-radius: 20px;
            max-width: 500px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
            margin-right: 3%;
        }

        .ot-hero-card h1 {
            font-weight: 700;
            font-size: 2.6rem;
            color: #333;
            line-height: 1.2;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .ot-hero-card h1 span {
            font-weight: 300;
        }

        .ot-hero-card p {
            color: #666;
            font-size: 1.1rem;
            margin: 1rem 0 1.6rem;
            font-style: italic;
        }

        .ot-hero-image {
            width: 300px;
            height: 160px;
            border-radius: 20px;
            object-fit: cover;
            display: block;
            margin: 1rem auto;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
            transition: all .3s ease;
        }

        .ot-cta-btn {
            background: #000;
            color: #fff;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: .9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all .25s ease;
        }

        .ot-cta-btn:hover {
            background: #C4904E;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, .3);
        }

        /* ===== ABOUT HERO MOBILE RESPONSIVE ===== */
        @media (max-width:768px) {
            .ot-hero-content {
                justify-content: center;
                padding: 0 3%;
            }

            .ot-hero-card {
                max-width: 92%;
                padding: 2rem;
                margin-right: 0;
            }

            .ot-hero-card h1 {
                font-size: 2rem;
            }

            .ot-hero-card p {
                font-size: 1rem;
            }

            .ot-hero-image {
                width: 180px;
                height: 180px;
            }
        }

        @media (max-width:480px) {
            .ot-hero-card {
                padding: 1.5rem;
            }

            .ot-hero-card h1 {
                font-size: 1.75rem;
            }

            .ot-cta-btn {
                padding: .85rem 1.5rem;
                font-size: .82rem;
            }

            .ot-hero-image {
                width: 150px;
                height: 150px;
            }
        }

        /* ========================================= */
        /* ABOUT HERO SECTION (END)  */
        /* ========================================= */

.cta-btn {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    padding: 15px 30px;
    font-size: 16px;
    white-space: nowrap;
    background-color: #C4904E;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 2;
    transition: color 0.4s ease, box-shadow 0.4s ease;
    display: inline-block;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-btn:hover {
    color: #C4904E;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%);
}

.cta-btn:hover::before {
    left: 0;
}

/* Responsive - Bottom Center for smaller screens */
@media (max-width: 768px) {
    .cta-btn {
        top: auto;
        bottom: 10%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cta-btn:hover {
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .cta-btn {
        bottom: 8%;
        padding: 10px 20px;
        font-size: 13px;
    }
}